:root {
  --brand-orange: #f3b21a;
  --brand-blue: #009dec;
  --bg-deep-navy: #0a192f;
  --bg-light: #ffffff;
  --text-light: #f8f9fa;
  --text-dark: #334155;
  --text-gray: #94a3b8;
  --whatsapp-green: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

/* ==========================================================================
   GLOBAL RESET & STRICT OVERFLOW CONTAINMENT
   ========================================================================== */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  position: relative;
}

a {
  text-decoration: none;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo {
  height: 45px;
  border-radius: 8px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--text-light);
}
.logo-main {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 0.7;
  color: var(--brand-blue);
}
.logo-sub {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--brand-orange);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-orange);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ==========================================================================
   MOBILE MENU & HAMBURGER LOGIC
   ========================================================================== */

/* Hamburger Button Setup (Hidden on Desktop) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001; /* Keeps it above the glass menu */
  transition: all 0.3s ease;
}

.hamburger .bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Breakpoint (Max Width 767px) */
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  /* Full Screen Glassmorphism Menu */
  #nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen to the right */
    width: 100%;
    height: 100vh;
    background: rgba(6, 17, 33, 0.95); /* Deep navy base */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  /* When the 'active' class is added via JS */
  #nav-menu.active {
    right: 0;
  }

  /* Re-orient the links for mobile */
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
  }

  /* Make the active indicator wider for mobile */
  .nav-links a::after {
    bottom: -8px;
    height: 3px;
  }

  /* Hamburger Animation -> Turns into an "X" */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--brand-orange);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(20px); /* Slides out smoothly */
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--brand-orange);
  }
}

/* Tablet Safety Catch (Ensures links fit horizontally between 768px and 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
}

/* --- Hero Section --- */
/* --- Hero Section (Futuristic Concept) --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  background-color: #061121; /* Matches the ultra-dark CTA */
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Ambient Glowing Orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
}

.glow-blue-top {
  width: 500px;
  height: 500px;
  background: var(--brand-blue);
  top: -150px;
  left: -100px;
}

.glow-orange-right {
  width: 450px;
  height: 450px;
  background: var(--brand-orange);
  bottom: 15%;
  right: -50px;
}

.hero-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}

.hero-content {
  color: var(--text-light);
}

/* Glassmorphism Badge */
.glass-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--brand-orange);
  backdrop-filter: blur(10px);
  color: var(--brand-orange);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 157, 236, 0.1);
}

.hero-headline {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  letter-spacing: -0.07rem;
}
.highlight-blue {
  color: var(--brand-blue);
  text-shadow: 0 0 20px rgba(0, 157, 236, 0.4);
}
.highlight-orange {
  color: var(--brand-orange);
  text-shadow: 0 0 20px rgba(243, 178, 26, 0.4);
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #cbd5e1;
}
.hero-description {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 500px;
}

/* Buttons */
.hero-ctas {
  display: flex;
  gap: 15px;
  margin-bottom: 45px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: #000;
}
.btn-primary:hover {
  transform: translateY(-3px);
  background-color: #ffc436;
}

/* Existing btn-glow from your CTA styles applies perfectly here! */

.glass-btn {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.glass-btn i {
  color: var(--whatsapp-green);
  font-size: 1.2rem;
}
.glass-btn:hover {
  border-color: var(--whatsapp-green);
  background: rgba(37, 211, 102, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.2);
}

/* Stat Cards (Futuristic Glass) */
.hero-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.glass-panel {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 157, 236, 0.15);
  padding: 10px 15px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow:
    inset 0 0 15px rgba(0, 157, 236, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.glass-panel:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--brand-blue);
  box-shadow:
    inset 0 0 20px rgba(0, 157, 236, 0.1),
    0 15px 30px rgba(0, 157, 236, 0.15);
}

.stat-icon {
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 0.9rem;
}
/* Custom Glowing Star for Stat Card */
.glowing-star {
  color: var(--brand-orange);
  text-shadow:
    0 0 15px rgba(243, 178, 26, 0.8),
    0 0 30px rgba(243, 178, 26, 0.4);
  animation: starPulse 2.5s infinite alternate;
}

@keyframes starPulse {
  0% {
    text-shadow: 0 0 10px rgba(243, 178, 26, 0.6);
  }
  100% {
    text-shadow:
      0 0 25px rgba(243, 178, 26, 1),
      0 0 40px rgba(243, 178, 26, 0.5);
  }
}
.icon-blue {
  background: rgba(0, 157, 236, 0.15);
  color: var(--brand-blue);
  border: 1px solid rgba(0, 157, 236, 0.3);
}
.icon-orange {
  background: rgba(243, 178, 26, 0.15);
  color: var(--brand-orange);
  border: 1px solid rgba(243, 178, 26, 0.3);
}

.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-light);
}
.stat-text {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-gray);
  margin-top: 3px;
}

/* Visual Side - Glowing Glass Frame */
.hero-visual {
  position: relative;
}

.glass-frame {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
  height: auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 157, 236, 0.2);
  padding: 15px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(0, 157, 236, 0.05);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

@media (max-width: 1199px) {
  .glass-frame {
    height: auto;
  }
}

.glass-frame:hover {
  transform: translateY(-5px);
  box-shadow:
    0 40px 70px rgba(0, 0, 0, 0.6),
    inset 0 0 50px rgba(0, 157, 236, 0.1);
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px; /* Slightly less round than outer frame */
  display: block;
}

/* Curve Divider */
.curve-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}
.curve-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 90px;
}
.curve-divider .shape-fill {
  fill: var(--bg-light);
}

/* ==========================================================================
   HERO BACKGROUND LAYERS (Image & Grid Lines)
   ========================================================================== */

/* 1. Deep Faded Image (Visibility & Blend Fix) */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("office.jpg") center/cover no-repeat;

  opacity: 0.04;

  /* This magic property strips the original colors and tints it perfectly with your deep navy background */
  mix-blend-mode: luminosity;

  z-index: 0;

  /* CSS Masking: Fades the image smoothly into the solid navy background before it hits the curve */
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* 2. Futuristic Grid / Design Lines */
.hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Creates subtle intersecting lines tinted with your brand blue */
  background-image:
    linear-gradient(rgba(0, 157, 236, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 157, 236, 0.07) 1px, transparent 1px);
  background-size: 60px 60px; /* Size of the grid squares */
  z-index: 0;

  /* CSS Masking: Fades the grid out in a radial circle so it concentrates in the center */
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}

/* --- About Us Section --- */
.about-section {
  padding: 80px 5%;
  background-color: var(--bg-light);
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-blue);
  color: white;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 157, 236, 0.3);
  border-bottom: 4px solid var(--brand-orange);
}
.experience-badge .years {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.experience-badge .exp-text {
  font-size: 0.8rem;
  font-weight: 500;
}

.about-text {
  padding-right: 20px;
}
.section-tag {
  color: var(--brand-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-deep-navy);
  margin-bottom: 15px;
  line-height: 1.1;
}
.title-underline {
  width: 60px;
  height: 4px;
  background: var(--brand-orange);
  margin-bottom: 25px;
  border-radius: 2px;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  margin-top: 30px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--bg-deep-navy);
}
.about-features i {
  color: var(--brand-blue);
  font-size: 1.2rem;
}

/* --- Animations --- */
.fade-down {
  animation: fadeDown 0.8s ease forwards;
}
.fade-in-left {
  animation: fadeInLeft 1s ease forwards 0.2s;
  opacity: 0;
}
.fade-in-right {
  animation: fadeInRight 1s ease forwards 0.4s;
  opacity: 0;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-headline {
    font-size: 3rem;
  }
  .hero-container,
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .glass-panel {
    text-align: left;
  }
  .hero-description,
  .about-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-stats {
    justify-content: center;
  }
  .abstract-shape,
  .experience-badge {
    display: none;
  }
  .title-underline {
    margin: 0 auto 25px auto;
  }
  .about-features li {
    justify-content: center;
  }
}

/* Ensure you have these base utility classes */
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.text-center {
  text-align: center;
}
.center-underline {
  margin-left: auto;
  margin-right: auto;
}

/* --- Services Preview Section --- */
.services-section {
  padding: 100px 5%;
  background-color: #f4f7f6; /* Very light cool gray to contrast the white about section */
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Service Cards */
/* --- Fix: Services Grid & Cards --- */
.service-card {
  position: relative; /* Anchor for the icon */
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-img-wrapper {
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Overlapping Icon - Now positioned relative to the whole card to prevent clipping */
.card-icon {
  position: absolute;
  top: 192px; /* Places it exactly on the line between image and content */
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: var(--brand-orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 5px 15px rgba(243, 178, 26, 0.4);
  z-index: 10;
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-content {
  padding: 35px 25px 25px 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-content {
  padding: 35px 25px 25px 25px;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-deep-navy);
  margin-bottom: 10px;
}

.card-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Read More Link inside Cards */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: var(--bg-deep-navy);
}

.read-more:hover i {
  transform: translateX(4px);
}

/* --- Futuristic Call to Action Section --- */
.cta-section {
  position: relative;
  background-color: #061121; /* Ultra dark navy, almost black */
  padding: 120px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Ambient Glowing Orbs */
.cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.45;
  pointer-events: none;
}

.glow-blue {
  background: var(--brand-blue);
  top: -100px;
  left: -50px;
}

.glow-orange {
  background: var(--brand-orange);
  bottom: -150px;
  right: -50px;
}

/* Glassmorphism Container */
.cta-container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 157, 236, 0.2);
  border-radius: 24px;
  padding: 70px 40px;
  text-align: center;
  max-width: 900px;
  width: 100%;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(0, 157, 236, 0.05);
}

.cta-headline {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-glow {
  box-shadow:
    0 0 20px rgba(243, 178, 26, 0.5),
    0 0 40px rgba(243, 178, 26, 0.2);
  background: var(--brand-orange);
  color: var(--bg-dark);
}

.btn-glow:hover {
  box-shadow:
    0 0 30px rgba(243, 178, 26, 0.7),
    0 0 60px rgba(243, 178, 26, 0.4);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 5%;
  }
  .cta-headline {
    font-size: 2.2rem;
  }
  .cta-container {
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-light .cta-container {
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
  }
}

.btn-submit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-blue) 0%, #005a8c 100%);
  border: 1px solid rgba(0, 157, 236, 0.4);
  box-shadow: 0 10px 20px rgba(0, 157, 236, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 157, 236, 0.4);
  background: linear-gradient(135deg, #007bb5 0%, var(--brand-blue) 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

/* --- Utilities --- */
.text-light {
  color: #ffffff !important;
}
/* ==========================================================================
   LIGHT THEME CTA MODIFIER (.cta-light) - PUNCHY UPGRADE
   ========================================================================== */
.cta-section.cta-light {
  /* A cooler, slightly darker gray makes the white card pop aggressively */
  background-color: #f1f5f9;
  border-top: none;
}

/* Make the ambient glows intense and vibrant instead of faint */
.cta-light .cta-glow {
  opacity: 0.65; /* Much stronger colors */
  filter: blur(90px); /* Tighter blur for denser, punchier color pools */
  mix-blend-mode: normal; /* Allows the vibrant orange and blue to stay bright */
}

/* Hyper-Premium Frosted White Glass Card */
.cta-light .cta-container {
  background: rgba(255, 255, 255, 0.85); /* Semi-transparent pure white */
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid #ffffff;
  border-top: 4px solid var(--brand-blue); /* Bold, attention-seeking top line */
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.08),
    0 15px 30px rgba(0, 157, 236, 0.08); /* Deep, soft colored shadow */
}

/* Gradient Headline for Maximum Impact */
.cta-light .cta-headline {
  /* Creates a striking Navy-to-Blue gradient on the text itself */
  background: linear-gradient(
    135deg,
    var(--bg-deep-navy) 0%,
    var(--brand-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: -0.05rem;
}

.cta-light .cta-subtext {
  color: var(--text-dark);
  font-weight: 600; /* Bolder text for better readability on light */
  font-size: 1.15rem;
}

/* High-Contrast Outline Button */
.cta-light .btn-outline {
  background: #ffffff;
  color: var(--brand-blue);
  border: 2px solid var(--brand-blue);
  box-shadow: 0 10px 20px rgba(0, 157, 236, 0.1);
}

.cta-light .btn-outline:hover {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 157, 236, 0.3);
}

/* ==========================================================================
   REDESIGNED FAQ SECTION (Split Layout & Capsules)
   ========================================================================== */
.faq-section {
  position: relative;
  background-color: #061121;
  padding: 120px 5%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Split Layout Grid */
.faq-split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* Makes the heading follow you down if the right column gets long */
.faq-header-col {
  position: sticky;
  top: 130px;
}

.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* New Floating Capsule Design */
.new-faq-capsule {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Animated Neon Accent Line */
.new-faq-capsule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-blue);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  border-radius: 4px 0 0 4px;
}

.new-faq-capsule:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 157, 236, 0.2);
}

/* Question Header */
.new-faq-q {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.15rem;
  user-select: none;
}

.new-faq-q span {
  flex: 1;
  line-height: 1.5;
}

/* Custom Geometric + / x Toggle Icon */
.faq-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: "";
  position: absolute;
  background-color: var(--brand-orange);
  border-radius: 2px;
  transition:
    transform 0.4s ease,
    background-color 0.4s ease;
}

/* Horizontal line of the + */
.faq-toggle-icon::before {
  width: 100%;
  height: 2px;
}

/* Vertical line of the + */
.faq-toggle-icon::after {
  height: 100%;
  width: 2px;
}

/* Answer Container (Perfect Vertical Slide) */
.new-faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.5s ease-in-out,
    opacity 0.4s ease;
}

.new-faq-inner {
  padding: 0 30px 30px 30px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* --- ACTIVE STATES (When capsule is opened) --- */
.faq-item.active.new-faq-capsule {
  background: rgba(0, 157, 236, 0.03);
  border-color: rgba(0, 157, 236, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.faq-item.active.new-faq-capsule::before {
  transform: scaleY(1); /* Illuminates the left blue line */
}

.faq-item.active .new-faq-q {
  color: var(--brand-blue);
}

/* Transforms the + into an x */
.faq-item.active .faq-toggle-icon::before {
  transform: rotate(135deg);
  background-color: var(--brand-blue);
}

.faq-item.active .faq-toggle-icon::after {
  transform: rotate(135deg);
  background-color: var(--brand-blue);
}

.faq-item.active .new-faq-a {
  max-height: 500px;
  opacity: 1;
}

/* Responsive Redesign */
@media (max-width: 992px) {
  .faq-split-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .faq-header-col {
    position: relative;
    top: 0;
    text-align: center;
  }
  .faq-header-col p {
    margin: 0 auto 30px auto;
  }
}

/* ==========================================================================
   FAQ AMBIENT GLOW EFFECTS 
   ========================================================================== */
.faq-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}

.glow-blue-left {
  width: 450px;
  height: 450px;
  background: var(--brand-blue);
  top: 10%;
  left: -200px;
}

.glow-orange-right {
  width: 400px;
  height: 400px;
  background: var(--brand-orange);
  bottom: -100px;
  right: -150px;
}

@media (max-width: 768px) {
  .new-faq-q {
    padding: 20px;
    font-size: 1.05rem;
  }
  .new-faq-inner {
    padding: 0 20px 20px 20px;
  }
}

/* --- Futuristic Footer Section --- */
.footer-section {
  position: relative;
  background-color: #030811; /* Even darker than hero for base grounding */
  padding: 80px 5% 0 5%;
  border-top: 1px solid rgba(0, 157, 236, 0.3);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: var(--brand-blue);
  filter: blur(180px);
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 40px;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--brand-orange);
  border-radius: 2px;
}

/* Brand Column */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo .logo {
  height: 40px;
  border-radius: 6px;
}
.footer-logo .logo-main {
  font-weight: 700;
  font-size: 1.3rem;
  display: block;
  line-height: 1;
  color: var(--brand-blue);
}
.footer-logo .logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
}

.footer-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--brand-blue);
  transition: all 0.3s ease;
}
.social-icon:hover {
  background: var(--brand-blue);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 157, 236, 0.4);
}

/* Links & Contact Columns */
.footer-links,
.footer-contact-info {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i {
  font-size: 0.75rem;
  color: var(--brand-orange);
  transition: transform 0.3s ease;
}
.footer-links a:hover {
  color: var(--brand-blue);
  padding-left: 5px;
}
.footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
.footer-contact-info i {
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Form Column (Glass Inputs) */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.glass-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}
.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.glass-input:focus {
  border-color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(0, 157, 236, 0.2);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ==========================================================================
   FOOTER BOTTOM & DESIGNER CREDIT
   ========================================================================== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 5%;
  position: relative;
  z-index: 2;
}

.footer-bottom-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0; /* Resets default paragraph margin */
}

/* Designer Link Styling */
.designer-credit a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.designer-credit a:hover {
  color: var(--brand-orange);
}

/* Stack vertically and center on mobile */
@media (max-width: 768px) {
  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section {
    padding: 80px 5%;
  }
  .footer-section {
    padding: 60px 5% 0 5%;
  }
}
