







/* ============================
   General Reset and Layout
============================ */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a23;
  color: #f0f0f0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================
   Particle Background
============================ */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

/* ============================
   Header Styles
============================ */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #111;
  border-bottom: 1px solid #444;
  z-index: 10;
  position: relative;
}

.logo {
  height: 80px;
  transition: transform 0.3s ease-in-out;
}

.logo-container:hover .logo {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px #00f0ff);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00f0ff;
}

/* ============================
   Hero Section
============================ */
.hero {
  text-align: center;
  padding: 6rem 2rem 3rem;
  background: radial-gradient(circle at top, #1f1f3b, #0a0a23);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.5rem;
  color: #00f0ff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #00f0ff;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #00c0cc;
  box-shadow: 0 0 15px #00f0ff, 0 0 30px #ff00f7;
  transform: scale(1.05);
}

/* ============================
   Intro Section
============================ */
.intro {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 2rem;
  text-align: center;
  font-size: 1.1rem;
  color: #ccc;
}

/* ============================
   Solutions Section
   - Carousel with animation scoped only here
============================ */
.content {
  padding: 4rem 2rem;
  background-color: #13132a;
}

.content h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00f0ff;
}

/* Carousel container */
.carousel-container {
  width: 2000px; /* 3 cards * 320px each */
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

/* Carousel track with animation */
.carousel-container .carousel-track {
  display: flex;
  width: max-content;
  animation: carousel-scroll-left 20s linear infinite;
}

/* Individual cards inside carousel */
.carousel-container .card {
  flex: 0 0 320px; /* fixed width */
  margin-right: 10px;
  box-sizing: border-box;
  background: #1f1f3b;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-container .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.carousel-container .card h3 {
  color: #ff00f7;
  margin-bottom: 1rem;
}

/* Carousel animation keyframes */
@keyframes carousel-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-330px * 9)); /* 9 cards * (320 + 10 margin) */
  }
}

/* ============================
   Trusted & Certified Badges Section
   - Static, no animation or transform applied here
============================ */
.badges {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #1b1b35;
}

.badges h2 {
  color: #00f0ff;
  margin-bottom: 2rem;
}

.badge-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.badge {
  background-color: #222;
  padding: 1rem;
  border-radius: 10px;
  width: 120px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.badge img {
  width: 100%;
  max-width: 80px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 240, 255, 0.2);
}

.badge p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* ============================
   Marquee Scrolling Section
   - Separate from carousel, own animation
============================ */
.marquee-section {
  padding: 3rem 2rem;
  background-color: #0f0f25;
  text-align: center;
}

.marquee-section h2 {
  color: #00f0ff;
  margin-bottom: 2rem;
}

.marquee-container {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: scroll-left 30s linear infinite;
  padding-bottom: 1rem;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-card {
  flex: 0 0 auto;
  background: #1f1f3b;
  padding: 1.5rem;
  border-radius: 12px;
  min-width: 280px;
  max-width: 320px;
  color: #f0f0f0;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marquee-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 247, 0.3);
}

.marquee-card h3 {
  color: #ff00f7;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.marquee-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

/* Marquee animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================
   Footer Styles
============================ */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #111;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 0.9rem;
}

