/* Base Reset */
html,
body {
  max-width: 100%;
  overflow-x: hidden; /* The magic line that stops the side-scroll/shift */
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  color: #0a192f;
}

a {
  text-decoration: none;
}

/* * {
  border: 1px solid red;
} */

/* --- HERO SECTION: ULTRA CREATIVE REMODEL --- */

/* 1. Container & Background */
.hero-section {
  width: 100%;
  min-height: 100vh;
  padding: 2rem 4rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden; /* Contains the giant blobs */
  background-color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* 2. The Aurora Background (Animated) */
.hero-aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatBlob 10s ease-in-out infinite alternate;
}

.blob-1 {
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    circle,
    #62d5c1 0%,
    rgba(86, 211, 90, 0.2) 70%,
    transparent 100%
  );
}

.blob-2 {
  bottom: -10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(98, 213, 193, 0.3) 0%,
    transparent 70%
  );
  animation-delay: -5s;
}

/* Subtle grid overlay for texture */
.aurora-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(10, 25, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 25, 47, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 40%,
    transparent 100%
  );
  opacity: 0.5;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-20px, 20px) scale(1.1);
  }
}

/* 3. Navigation (Glassy & Full Styles) */
.hero-section .hero-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  margin: 0 -2rem 0 -2rem;
  position: relative;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0 24px 24px; /* Unique rounded bottom */
}

.hero-section .hero-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0a192f;
  display: flex;
  align-items: center;
}

.hero-section .hero-logo img {
  height: 2rem;
  width: auto;
}

.hero-section .hero-menu {
  display: flex;
  gap: 2rem;
}

.hero-section .hero-menu a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.hero-section .hero-menu a:hover {
  color: #0d9488; /* Brand Dark Teal */
}

.hero-section .hero-btn-contact {
  padding: 0.6rem 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  text-decoration: none;
  color: #0a192f;
  font-weight: 600;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.8);
}

.hero-section .hero-btn-contact:hover {
  border-color: #0d9488;
  background-color: #f0fdfa;
  color: #0d9488;
}

/* Mobile Toggle (Hamburger) */
.hero-section .hero-mobile-toggle {
  display: none; /* Hidden on Desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hero-section .hero-mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: #0a192f;
  border-radius: 2px;
}

/* 4. Main Layout Grid */
.hero-section .hero-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* More space for visuals */
  gap: 2rem;
  align-items: center;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

/* 5. Left Column: Typography */
.hero-section .hero-content-col {
  max-width: 650px;
  position: relative;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  padding: 8px 16px;
  background: #f0fdfa; /* Light Teal bg */
  color: #0d9488; /* Dark Teal text */
  border: 1px solid #ccfbf1;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 1rem auto 1.5rem auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Badge Icon Color Fix */
.hero-badge-pill svg {
  color: #0d9488;
}

.hero-section .hero-headline {
  font-size: 4.5rem; /* Massive Heading */
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #0a192f;
  letter-spacing: -2px;
  margin-top: 0;
}

/* --- Restored Curvy Brush Stroke --- */
.hero-highlight-creative {
  position: relative;
  z-index: 1;
  /* Keep the gradient text */
  background: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block; /* Crucial for positioning the line */
}

.hero-section .hero-highlight-creative::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px; /* Push it down slightly */
  width: 100%;
  height: 20px;
  z-index: -1;

  /* The Curvy Line SVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q 25 20 50 10 T 100 10' stroke='%2362d5c1' fill='none' stroke-width='6' stroke-linecap='round' /%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;

  /* Reset the transformations from the 'marker' style */
  transform: none;
  background-color: transparent;
  border-radius: 0;
}

.hero-section .hero-subheadline {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

/* Hero Buttons */
.hero-section .hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-section .hero-btn-primary {
  background: linear-gradient(135deg, #0d9488, #10b981);
  color: white;
  border: none;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.hero-section .hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(13, 148, 136, 0.4);
}

.hero-section .hero-btn-secondary {
  background: white;
  color: #0a192f;
  border: 1px solid #e2e8f0;
  padding: 0.8rem 1.5rem 0.8rem 0.8rem; /* Asymmetric padding */
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s;
}

.hero-section .hero-btn-secondary .icon-circle {
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.hero-section .hero-btn-secondary:hover {
  border-color: #0d9488;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Partners Area */
.hero-section .hero-partners-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-section .hero-logos-row {
  display: flex;
  gap: 2rem;
  opacity: 0.6;
  font-weight: 700;
  color: #64748b;
}

/* 6. Visual Column: The 3D Composition */
.hero-section .hero-visual-col {
  position: relative;
  /* Add perspective to container */
  perspective: 1500px;
}

/* Wrapper allows us to rotate the whole grid slightly */
.hero-section .hero-3d-wrapper {
  transform-style: preserve-3d;
  transform: rotateY(-5deg) rotateX(2deg); /* Subtle 3D tilt */
  transition: transform 0.5s ease;
}

/* Hover effect on desktop: flatten grid */
.hero-section .hero-visual-col:hover .hero-3d-wrapper {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero-section .hero-bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 260px 200px;
  gap: 24px;
}

/* Common Card Styles */
.hero-card-brand,
.hero-card-graph,
.hero-grid-cell-visual {
  border-radius: 30px; /* Super rounded */
  box-shadow:
    0 20px 40px -5px rgba(0, 0, 0, 0.1),
    0 10px 15px -5px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-card-brand:hover,
.hero-card-graph:hover,
.hero-grid-cell-visual:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 50px -5px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* --- Brand Card (Glass + Gradient) --- */
.hero-section .hero-card-brand {
  background: linear-gradient(135deg, #0d9488, #10b981);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Shine effect */
.hero-section .glass-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-section .hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-section .hero-live-badge {
  background: rgba(0, 0, 0, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(5px);
}
.hero-section .hero-avatars {
  display: flex;
}
.hero-section .hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  margin-left: -12px;
}
.hero-section .hero-stat-big {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-top: 1rem;
}
.hero-section .hero-stat-desc {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.4;
}

/* --- Graph Card (Dark Navy) --- */
.hero-section .hero-card-graph {
  background: #0f172a;
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-section .hero-graph-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
}
.hero-section .hero-trend-up {
  color: #10b981;
}
.hero-section .hero-mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 60px;
  margin-top: auto;
  padding-bottom: 10px;
}
.hero-section .hero-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.hero-section .hero-bar:nth-child(1) {
  height: 30%;
}
.hero-section .hero-bar:nth-child(2) {
  height: 50%;
}
.hero-section .hero-bar:nth-child(3) {
  height: 40%;
}
.hero-section .hero-bar:nth-child(4) {
  height: 70%;
}
.hero-section .hero-bar:nth-child(5) {
  height: 90%;
  background: #10b981;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}
.hero-section .hero-graph-footer {
  font-size: 0.75rem;
  color: #64748b;
}

/* --- Image Cells & Glass Widgets --- */
.hero-section .hero-grid-cell-visual {
  position: relative;
}
.hero-section .hero-image-wrapper {
  width: 100%;
  height: 100%;
}
.hero-section .hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.hero-section .hero-grid-cell-visual:hover img {
  transform: scale(1.05);
}

/* The new Glass Widget */
.hero-section .glass-widget {
  position: absolute;
  /* Centered perfectly */
  top: 50%;
  right: -20px;
  transform: translateY(-50%);

  background: rgba(255, 255, 255, 0.85); /* Milky glass */
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  display: flex;
  flex-direction: column;
  min-width: 120px;
  z-index: 5;
}
.hero-section .glass-widget span {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-section .glass-widget strong {
  font-size: 1.4rem;
  color: #0d9488;
  font-weight: 800;
}

/* --- Responsive --- */
/* --- RESPONSIVE FIXES (Tablet & Mobile) --- */
/* --- HERO RESPONSIVE FIX (The "Nuclear" Option) --- */

@media (max-width: 992px) {
  /* 1. RESET THE CONTAINER (Fixes "Pushed to Right") */
  .hero-section {
    padding: 0 !important; /* Remove container padding */
    width: 100%;
    overflow-x: hidden; /* Force cut off any overflow */
    height: auto;
    min-height: auto;
  }

  /* 2. FIX THE NAVBAR */
  .hero-section .hero-navbar {
    margin: 0 !important; /* Remove the negative margins causing the push */
    width: 100%;
    border-radius: 0; /* Full width, no corners */
    padding: 1rem 1.5rem; /* Add internal padding back */
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.9); /* More solid on mobile */
  }

  /* 3. STACK THE LAYOUT */
  .hero-section .hero-container {
    display: flex;
    flex-direction: column;
    gap: 0; /* We handle spacing via padding now */
    padding-top: 0;
  }

  /* 4. FIX THE TEXT COLUMN */
  .hero-section .hero-content-col {
    width: 100%;
    box-sizing: border-box;
    padding: 3rem 1.5rem 2rem 1.5rem; /* Re-apply padding here */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
  }

  /* Typography Adjustments */
  .hero-section .hero-headline {
    font-size: 2.8rem;
    line-height: 1.1;
    width: 100%;
  }

  .hero-section .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* 5. FIX THE VISUAL COLUMN (The Bento Grid) */
  .hero-section .hero-visual-col {
    width: 100%;
    padding: 0 1.5rem 4rem 1.5rem; /* Add side padding for the grid */
    box-sizing: border-box;
  }

  .hero-section .hero-3d-wrapper {
    transform: none !important; /* Disable 3D tilt on mobile */
  }

  .hero-section .hero-bento-grid {
    display: grid;
    grid-template-columns: 1fr; /* Force single column */
    grid-template-rows: auto;
    gap: 20px;
    width: 100%;
    max-width: 400px; /* Prevent cards from getting too wide */
    margin: 0 auto;
  }

  /* Fix Card Heights for Mobile Stack */
  .hero-section .hero-card-brand,
  .hero-section .hero-card-graph,
  .hero-section .hero-grid-cell-visual {
    height: auto;
    min-height: 220px; /* Ensure consistent minimum height */
  }

  /* Image fit fix */
  .hero-section .hero-image-wrapper {
    height: 220px;
  }

  /* 6. HIDE ELEMENTS THAT CAUSE ISSUES */
  .hero-section .hero-menu,
  .hero-section .hero-btn-contact {
    display: none; /* Hide Desktop Nav */
  }

  .hero-section .hero-mobile-toggle {
    display: flex; /* Show Hamburger */
  }

  .hero-section .glass-widget {
    display: none; /* Hide floating glass widgets on mobile to save space */
  }

  /* Stack CTA Buttons */
  .hero-section .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-section .hero-btn-primary,
  .hero-section .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* --- About Section Container --- */
.about-section {
  width: 100%;
  padding: 4rem 4rem; /* Generous spacing for professional feel */
  background-color: #ffffff; /* Seamless flow from Hero */
  box-sizing: border-box;
  position: relative;
}

.about-section .about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* --- Left Column: Visual --- */
.about-section .about-visual-col {
  position: relative;
  display: flex;
  justify-content: center; /* Center image in its col */
}

.about-section .about-image-wrapper {
  position: relative;
  width: 90%;
  border-radius: 24px;
  z-index: 2;
}

.about-section .about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
  display: block;
}

/* Decorative Box behind image (Teal/Green Gradient) */
.about-section .about-pattern-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, #62d5c1, #56d35a);
  border-radius: 24px;
  z-index: -1;
  opacity: 0.3;
}

/* --- Right Column: Content --- */
.about-section .about-content-col {
  padding-left: 2rem;
}

.about-section .about-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #62d5c1; /* Brand Teal */
  margin: 0;
}

.about-section .about-headline {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0a192f; /* Navy Blue */
  font-weight: 900;
  margin: 0 0 1.5rem 0;
}

.about-section .about-headline span {
  background: linear-gradient(90deg, #62d5c1, #56d35a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block; /* Ensures gradient renders correctly */
}

.about-section .about-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b; /* Medium Grey */
  margin-bottom: 1.5rem;
}

/* --- Read More Button --- */
.about-section .about-btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: #62d5c1;
  font-size: 1rem;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.about-section .about-btn-read-more span {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #56d35a; /* Green accent on arrow */
}

/* Hover Effect */
.about-section .about-btn-read-more:hover {
  border-bottom-color: #62d5c1;
}

.about-section .about-btn-read-more:hover span {
  transform: translateX(5px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
  .about-section {
    padding: 4rem 2rem;
  }

  .about-section .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .about-section .about-content-col {
    padding-left: 0;
  }

  .about-section .about-visual-col {
    justify-content: center;
  }

  .about-section .about-image-wrapper {
    width: 100%;
    max-width: 500px;
  }

  .about-section .about-btn-read-more {
    justify-content: center;
  }
}

/* --- Reusable Gradient Text Class --- */
.gradient-text {
  background: linear-gradient(90deg, #62d5c1, #56d35a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* --- Services Section --- */
.services-section {
  width: 100%;
  padding: 3rem 0 6rem 0;
  background-color: #f8fafc;
  overflow: hidden;
  position: relative;
}

.services-section .services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.services-section .services-headline {
  font-size: 2.5rem;
  color: #0a192f;
  font-weight: 800;
  margin-bottom: 1rem;
  margin-top: 0;
}

.services-section .services-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #62d5c1; /* Brand Teal */
  margin: 0 0 1rem 0;
}

/* Sub-text Styling */
.services-section .services-sub-text {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Carousel */
.services-section .services-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  margin-bottom: 1rem; /* Reduced margin to fit mobile controls */
  /* Clip path ensures cards don't bleed out during infinite swap */
  width: 100%;
}

.services-section .services-track {
  display: flex;
  gap: 32px; /* 2rem fixed */
  /* No transition by default, we apply it via JS */
  position: absolute;
  left: 50%;
}

/* Card Styling */
.services-section .services-card {
  min-width: 300px;
  max-width: 300px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(10, 25, 47, 0.05);
  transition: all 0.6s ease;
  opacity: 0.5;
  transform: scale(0.85);
  filter: blur(1px);
  flex-shrink: 0; /* Prevent squashing */
}

.services-section .services-card.active-card {
  opacity: 1;
  transform: scale(1.15);
  box-shadow: 0 25px 60px rgba(98, 213, 193, 0.2);
  filter: blur(0);
  z-index: 10;
}

.services-section .services-card-image {
  height: 180px;
  position: relative;
}

.services-section .services-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG Icon Badge */
.services-section .services-icon-badge {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #62d5c1, #56d35a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 20px rgba(98, 213, 193, 0.3);
  border: 4px solid white;
}

.services-section .services-card-body {
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: left;
}

.services-section .services-card-body h3 {
  font-size: 1.1rem;
  color: #0a192f;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
}

.services-section .services-card-body p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- Navigation Controls --- */
.services-section .services-nav-btn {
  background: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: #0a192f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 20;
}

.services-section .services-nav-btn:hover {
  background: #0a192f;
  color: white;
}

/* Desktop Arrows (Absolute) */
.services-section .desktop-only {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.services-section .prev-btn.desktop-only {
  left: 10%;
}
.services-section .next-btn.desktop-only {
  right: 10%;
}

/* Mobile Arrows (Container) */
.services-section .services-mobile-controls {
  display: none; /* Hidden by default */
  justify-content: center;
  gap: 20px;
  margin-bottom: 2rem;
}

/* Glowy Button */
.services-section .services-footer-action {
  margin-top: 1rem;
}

.services-section .btn-glow-explore {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(90deg, #62d5c1, #56d35a, #62d5c1);
  background-size: 200% auto;
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow:
    0 0 20px #62d5c1,
    0 0 40px rgba(86, 211, 90, 0.4);
  transition: all 0.3s ease;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.services-section .btn-glow-explore:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 0 30px #62d5c1,
    0 0 60px rgba(86, 211, 90, 0.6);
}

/* --- Responsive Layout Logic --- */

/* Mobile Breakpoint */
@media (max-width: 768px) {
  /* Hide desktop arrows */
  .services-section .desktop-only {
    display: none;
  }

  /* Show mobile controls */
  .services-section .services-mobile-controls {
    display: flex;
  }

  /* Adjust padding */
  .services-section .services-headline {
    font-size: 2rem;
  }
}

/* --- CTA Section (Base Styles) --- */
.cta-section {
  width: 100%;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #62d5c1 0%, #56d35a 100%);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Background Decoration */
.cta-section .cta-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0 C 50 100 80 0 100 100 L 100 0 Z' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.cta-section .cta-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

/* --- Left Column --- */
.cta-section .cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.cta-section .cta-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-section .cta-subtext {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 90%;
}

.cta-section .cta-action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.cta-section .cta-btn-primary {
  background-color: #ffffff;
  color: #56d35a;
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: inline-block;
  white-space: nowrap; /* Prevents text wrap inside button */
}

.cta-section .cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: #4ebc52;
}

.cta-section .cta-info-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-section .cta-avatars {
  display: flex;
}

.cta-section .cta-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin-left: -10px;
}
.cta-section .cta-avatars img:first-child {
  margin-left: 0;
}

.cta-section .cta-info-group span {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

/* --- Right Column (Visual) --- */
.cta-section .cta-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section .cta-main-image {
  width: 80%;
  height: auto;
  border-radius: 0 0 200px 200px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

/* Glass Card */
.cta-section .cta-glass-card {
  position: absolute;
  top: 20px;
  left: 0;
  width: 220px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
  color: #0a192f;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.cta-section .glass-icon-circle {
  width: 50px;
  height: 50px;
  background: #e6fffa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-section .cta-glass-card h3 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.cta-section .cta-glass-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

.cta-section .glass-decoration-line {
  height: 4px;
  width: 40px;
  background: linear-gradient(90deg, #62d5c1, #56d35a);
  border-radius: 2px;
  margin-top: 15px;
}

/* --- THE FINAL FIX (Mobile/Tablet) --- */
@media (max-width: 992px) {
  /* 1. The Container Reset (The "Nuclear" Fix) */
  .cta-section {
    /* Remove side padding here so the image can touch edges */
    padding: 0 0 4rem 0 !important;
    overflow-x: hidden; /* Force cuts off any ghost overflow */
    width: 100%;
  }

  /* 2. Layout Flip */
  .cta-section .cta-container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
    margin: 0;
    gap: 0; /* We handle spacing via padding now */
  }

  /* 3. The Visual (Top) - Full Width Bleed */
  .cta-section .cta-visual {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    height: auto;
  }

  .cta-section .cta-main-image {
    width: 80%; /* Forces exact screen width */
    max-width: 100%; /* Prevents overflow */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0 0 200px 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    right: auto;
    bottom: auto;
  }

  /* 4. The Content (Bottom) - Restricted Width */
  .cta-section .cta-content {
    padding: 2.5rem 1.5rem 0 1.5rem; /* Add the side padding back HERE only */
    width: 100%;
    box-sizing: border-box; /* Crucial: Keeps padding inside width */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Forces flex items to center */
  }

  /* 5. Typography Fixes */
  .cta-section .cta-headline {
    font-size: 2.2rem;
    width: 100%;
    word-wrap: break-word; /* Prevents long words breaking layout */
  }

  .cta-section .cta-subtext {
    width: 100%;
    max-width: 100%;
  }

  .cta-section .cta-badge {
    margin: 0 auto 1.5rem auto;
  }

  /* 6. Button & Action Row Fix */
  .cta-section .cta-action-row {
    width: 100%;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cta-section .cta-btn-primary {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box; /* Prevents button padding from overlapping screen */
    white-space: normal; /* Allows text to wrap if screen is tiny */
    margin: 0 auto;
  }

  .cta-section .cta-info-group {
    justify-content: center;
  }

  /* 7. Hide Desktop Decor */
  .cta-section .cta-glass-card,
  .cta-section .cta-bg-shape {
    /* Hide bg shape on mobile to prevent it causing overflow width */
    display: none;
  }
}

/* --- Footer Section (Base Styles - Unchanged) --- */
.site-footer {
  background-color: #0a192f; /* Brand Navy */
  color: #94a3b8;
  padding: 5rem 2rem 0 2rem;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.site-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  /* Desktop Layout: 4 Columns */
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* Col 1 */
.site-footer .footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  margin-top: 1.5rem;
  display: inline-block;
  color: white;
}

.site-footer .footer-logo img {
  height: 2.5rem;
}

.site-footer .footer-about p {
  line-height: 1.6;
  font-size: 0.95rem;
  max-width: 300px;
}

/* Col 2: Links */
.site-footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 0.8rem;
}

.site-footer .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.site-footer .footer-links a:hover {
  color: #62d5c1; /* Brand Teal */
}

/* Col 3: Socials */
.site-footer .social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.site-footer .social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  transition: background 0.3s;
}

.site-footer .social-icon:hover {
  background: #62d5c1;
  color: #0a192f;
}

.site-footer .footer-contact-detail {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* Col 4: Form */
.site-footer .footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .footer-form input {
  width: 100%; /* Ensures it fits container */
  box-sizing: border-box; /* Prevents padding from breaking width */
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-family: inherit;
  outline: none;
}

.site-footer .footer-form input:focus {
  border-color: #62d5c1;
}

.site-footer .footer-form button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #62d5c1, #56d35a);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
}

.site-footer .footer-form button:hover {
  opacity: 0.9;
}

/* Footer Bottom */
.site-footer .footer-bottom {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #62d5c1;
  color: #0a192f;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: white;
  transform: translateY(-5px);
}

/* --- FULL RESPONSIVENESS LOGIC --- */

/* Tablet (Landscape/Portrait) - max-width 992px */
@media (max-width: 992px) {
  .site-footer .footer-container {
    /* Switch to 2x2 Grid */
    grid-template-columns: 1fr 1fr;
    gap: 4rem 2rem; /* More gap vertically */
  }
}

/* Mobile - max-width 600px */
@media (max-width: 600px) {
  .site-footer {
    padding-top: 3rem;
  }

  .site-footer .footer-container {
    /* Stack everything in 1 column */
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  /* Center the About Text */
  .site-footer .footer-about p {
    margin: 0 auto;
  }

  /* Center the Social Icons */
  .site-footer .social-icons {
    justify-content: center;
  }

  /* Ensure Links look good centered */
  .site-footer .footer-links li {
    margin-bottom: 1rem;
  }

  /* Form Adjustments for Touch */
  .site-footer .footer-form input,
  .site-footer .footer-form button {
    height: 50px; /* Larger touch target */
    font-size: 1rem; /* Prevent auto-zoom on iPhone */
  }

  /* Adjust Scroll to Top position so it doesn't cover content */
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* =========================================
   MOBILE MENU OVERLAY STYLES
   ========================================= */

/* The Menu Container (Hidden by default) */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 2000; /* Above everything */
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-sizing: border-box;

  /* Animation Start State */
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

/* Active State (Slide In) */
.mobile-menu-overlay.active {
  transform: translateX(0);
}

/* Header (Logo + Close Button) */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.mobile-logo img {
  height: 2.5rem;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #0a192f;
  cursor: pointer;
  line-height: 1;
  padding: 0 10px;
  transition: color 0.3s;
}

.mobile-menu-close:hover {
  color: #62d5c1;
}

/* Links List */
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.mobile-menu-links a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a192f;
  transition:
    color 0.3s,
    transform 0.3s;
  opacity: 0; /* Hidden for stagger animation */
  transform: translateY(20px);
}

.mobile-menu-links a:hover {
  color: #62d5c1;
  transform: translateX(10px);
}

/* Special Button Style inside Menu */
.mobile-menu-links .mobile-menu-btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, #62d5c1, #56d35a);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  box-shadow: 0 10px 20px rgba(98, 213, 193, 0.3);
}

/* Staggered Link Animation when Active */
.mobile-menu-overlay.active .mobile-menu-links a {
  animation: slideUpFade 0.5s forwards;
}

.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
