/* ==================
   1. Google Font Imports
   =================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500;700&family=Poppins:wght@500;600;700&family=Space+Grotesk:wght@500;700&display=swap');
/* Add this at the top of your style.css file */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* ... rest of your CSS ... */

/* ==================
   2. CSS Variables (Root) - FIXED AND CLEANED
   =================== */
:root {
    /* ======= COLOR PALETTE ======= */
    --bg-primary: #F0F8FF;            /* Lightest Blue */
    --bg-secondary: #FFFFFF;          /* Pure White */
    --bg-dark-primary: #E8F4F8;       /* Soft Blue-Gray background */
    --bg-dark-secondary: #F9FBFC;     /* Slightly lighter secondary tone */
    --bg-dark-card: #ffffffd4;          /* White cards */

    --accent-blue: #2563EB;           /* Main Blue */
    --accent-blue-deep: #1E40AF;      /* Deep Blue */
    --accent-ai: #7C3AED;             /* AI Purple */
    --accent-ai-light: #8B5CF6;       /* Lighter AI Purple */
    --accent-success: #5fa58eff;        /* Success Green */
    --accent-gold: #FBBF24;           /* Gold for ratings or highlights */
    --accent-mint: #AEDDDE;           /* Mint accent */
    --accent-cyan: #2B4E5D;           /* Cyan-dark for borders and hovers */
    --cream-beige: #F5F5DC;           /* Light Cream tone */

    --text-primary: #1F2937;          /* Dark Gray-Blue */
    --text-secondary: #6B7280;        /* Medium Gray */
    --text-light: #FFFFFF;            /* Light Text */
    --text-dark: #111827;             /* Deep Dark Gray */

    --dark-charcoal: #0F172A;         /* Deep gradient end */
    --ai-glow: 0 0 20px rgba(124, 58, 237, 0.4); /* Purple Glow for AI sections */

  /* ======= TYPOGRAPHY ======= */
--font-heading: 'Roboto', sans-serif;
--font-body: 'Roboto', sans-serif;
--font-accent: 'Roboto', sans-serif;
}

/* ==================
   3. Global Styles
   =================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-dark-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image: linear-gradient(120deg, aedde5 0%, #ffffff 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; text-align: center; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(.4,2,.6,1);
}
a:hover {
    color: var(--accent-mint);
}

ul {
    list-style: none;
}

section {
    padding: 80px 5%;
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 2px 24px 0 rgba(43,78,93,0.04);
    background: var(--bg-dark-secondary);
    transition: box-shadow 0.3s;
    margin-bottom: 60px;
}

/* ==================
   4. Buttons & Links
   =================== */
/* ==================
   Global Button Styles (Ocean Blue → Orange Theme)
   =================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Subtle ripple gradient effect */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(135deg, #0099ff 0%, #ff7e00 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 128, 0, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Primary Button — Ocean Blue to Orange Gradient */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #ff7e00 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.2);
    border: none;
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(255, 150, 50, 0.4);
}

/* Secondary Outline Button — Transparent base with glowing border */
.btn-secondary-outline {
    background: transparent;
    color: #00aaff;
    border: 2px solid rgba(255, 128, 0, 0.8);
    transition: all 0.4s ease;
}

.btn-secondary-outline:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #007bff 0%, #ff7e00 100%);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 128, 0, 0.4);
}

/* Outline Button Variant — Cyan Accent */
.btn-outline {
    background: transparent;
    color: #00ccff;
    border: 2px solid #00ccff;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #007bff 0%, #ff7e00 100%);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 150, 50, 0.4);
}

/* Link with Arrow (for subtle CTAs) */
.link-arrow {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #00ccff;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.link-arrow i {
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    margin-left: 4px;
}

.link-arrow:hover {
    color: #ff8c00;
}

.link-arrow:hover i {
    transform: translateX(8px) scale(1.2);
    color: #ff8c00;
}


/* ==================
   5. Header & Navigation (Ocean Blue → Orange Theme)
   =================== */

.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* On scroll - add shadow and slightly darker tone */
.sticky-header.scrolled {
  background: linear-gradient(90deg, var(--accent-blue-deep) 0%, var(--accent-ai) 100%);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-weight: 400;
}

.navbar img {
  height: 70px;
  transition: transform 0.3s ease;
}
.navbar img:hover {
  transform: scale(1.05);
}

.logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent-ai) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

/* ======= Navigation Links ======= */
.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
 font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a.active {
  color: var(--accent-gold); /* or any highlight color you want */
}

.nav-links a.active::after {
  width: 100%;
  background: var(--accent-gold);
}

/* Subtle underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

/* ======= CTA Buttons ======= */
.nav-cta {
  display: flex;
  gap: 1rem;
}

.nav-cta .btn {
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent-blue), var(#ff7e00));
  color: var(--text-light);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.nav-cta .btn:hover {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-ai));
  box-shadow: 0 0 18px rgba(255, 126, 0, 0.35);
  transform: translateY(-2px);
}

/* ======= Mobile Hamburger ======= */
.hamburger-menu {
  display: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hamburger-menu:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

/* ======= Responsive ======= */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .navbar {
    padding: 1rem 1.5rem;
  }
}


/* ==================
   6. Home Page: Hero
   =================== */
.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
   min-height: 86vh;
    padding-top: 30px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image:url('./assets/herobg.png');
    background-size: cover;
    background-position: center;
   
}
.hero-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    flex: 1;
    padding: 0 5%;
}
.hero-content {
    flex-basis: 50%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

.hero h1 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;


  font-weight: 600;
  color: #ffa64d;
  text-shadow: 0 0 25px rgba(255, 150, 50, 0.4);
}
.hero p {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.trust-bar {
    margin-top: 1rem;
}
.trust-bar p {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
}
.stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--accent-blue);
    border-radius: 12px 12px 0 0;
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(174, 221, 229, 0.3);
}
.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
}
.stat-item h3 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--bg-dark-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px #aedde5;
}
.stat-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ==================
   7. Home Page: Problem
   =================== */


.problem-statement {
    background-image: url('./assets/sectionBg.png');
    background-size: cover;
    border-radius: 24px;
    padding: 80px 6%;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Subtle overlay for depth */
.problem-statement::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 70%);
    z-index: 0;
}

.problem-statement h2 {
    position: relative;
    z-index: 1;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.two-column-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Common card styles */
.pain-points,
.solutions {
    padding: 2.5rem;
    border-radius: 16px;
    margin-left: 1px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pain-points:hover,
.solutions:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Pain Points styling (Orange accent) */
.pain-points {
    border: 2px solid #ff9800;
    background: linear-gradient(145deg, rgba(255,152,0,0.15), rgba(255,255,255,0.05));
}
.pain-points i {
    color: #ffb74d;
}

/* Solutions styling (Blue accent) */
.solutions {
    border: 2px solid #64b5f6;
    background: linear-gradient(145deg, rgba(100,181,246,0.15), rgba(255,255,255,0.05));
}
.solutions i {
    color: #90caf9;
}

/* Headings inside cards */
.pain-points h3,
.solutions h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

/* List items */
.pain-points ul li,
.solutions ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #f5f5f5;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.pain-points ul li:hover,
.solutions ul li:hover {
    color: #fff;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .problem-statement {
        padding: 60px 5%;
    }

    .problem-statement h2 {
        font-size: 1.9rem;
        margin-bottom: 2.2rem;
    }

    .pain-points,
    .solutions {
        padding: 2rem;
    }
}

/* ===============================
   8. Home Page: How It Works (Enhanced)
   =============================== */

.how-it-works {
    /* background: linear-gradient(135deg, #1e3c72, #2a5298, #ff8c00); */
    background-image: url('./assets/process.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 80px 6%;
    border-radius: 24px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Soft overlay for depth */
.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: 0;
}

.how-it-works h2 {
    position: relative;
    z-index: 1;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
    
}

/* Steps Layout */
.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

/* Step Cards */
.step {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.23);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.35s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    max-width: 360px;
    margin-bottom: 50px;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

/* Step Icons */
.step-icon {
    font-size: 2.5rem;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem auto;
    background: linear-gradient(145deg, rgba(255, 140, 0, 0.25), rgba(30, 60, 114, 0.25));
    color: #d2ac5bff;
    box-shadow: 0 0 35px rgba(255, 140, 0, 0.35);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 0 45px rgba(255, 152, 0, 0.6);
}

/* Headings */
.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

/* Descriptions */
.step p {
    color: #faf5f5ff;
    font-size: 1rem;
    line-height: 1.6;
}

/* Decorative arrows between steps */
.step-arrow {
    font-size: 2rem;
    color: #ffb74d;
    align-self: center;
    animation: pulseArrow 2s infinite ease-in-out;
}

/* Arrow animation */
@keyframes pulseArrow {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-5px); opacity: 0.7; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        display: none;
    }
    .how-it-works {
        padding: 60px 5%;
    }
    .how-it-works h2 {
        font-size: 2rem;
    }
}

/* ==================
   9. Home Page: Key Features (Enhanced + Animated)
   =================== */
.key-features {
  position: relative;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(255, 111, 60, 0.85) 100%);
  border-radius: 24px;
  padding: 80px 5%;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(43, 78, 93, 0.25);
}

/* Glowing wave animation background */
.key-features::before,
.key-features::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  animation: waveMotion 14s ease-in-out infinite alternate;
  z-index: 0;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.key-features::after {
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 153, 51, 0.1) 0%,
    rgba(37, 99, 235, 0.1) 70%
  );
  animation-duration: 18s;
  animation-direction: alternate-reverse;
  opacity: 0.4;
}

@keyframes waveMotion {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.1);
  }
  100% {
    transform: rotate(-10deg) scale(1);
  }
}

.key-features h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
}

.feature-grid {
  display: grid;
grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(255, 153, 51, 0.3));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 153, 51, 0.3), 0 0 20px rgba(37, 99, 235, 0.3);
}

.feature-icon {
  font-size: 2.5rem;
  color: #d2ac5bff;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(222, 202, 173, 0.8));
  transition: transform 0.4s, filter 0.4s;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 0 20px rgba(255, 153, 51, 1));
}

.feature-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
}

/* Scroll reveal animation */
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* Button */
.link-arrow {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.link-arrow i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/* ==================
   10. Home Page: Metrics (Ocean Blue → Orange Theme)
   =================== */

.success-metrics {
    background: linear-gradient(
        145deg,
        rgba(0, 70, 115, 0.9),   /* Deep ocean blue */
        rgba(128, 68, 7, 0.85)  /* Soft orange glow */
    ),
    url('./assets/successMatrix.png') center/cover no-repeat;
    border-radius: 24px;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    
}

.success-metrics::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.08), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 180, 80, 0.1), transparent 60%);
    z-index: 0;
}

.success-metrics h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    text-shadow: 0 0 16px rgba(255, 165, 0, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.metric-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 180, 80, 0.25);
    border-radius: 16px;
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 25px rgba(0, 128, 255, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.metric-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.metric-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 35px rgba(255, 150, 50, 0.35);
    border-color: rgba(255, 180, 80, 0.6);
}

.metric-item .metric-number {
    font-family: var(--font-accent);
    font-size: 3.8rem;
    font-weight: 800;
    color: #e79b2fff; /* Vibrant orange */
    display: block;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 150, 50, 0.4);
}

.metric-item p {
    font-size: 1.05rem;
    color: #eaf6ff;
    opacity: 0.9;
    margin: 0;
}

.metrics-subtext {
    opacity: 0.8;
    font-size: 1rem;
    margin-top: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Fade-up animation for first scroll */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==================
   11. Home Page: Testimonials
   =================== */
.testimonials {
    background: var(--bg-dark-primary);
}
.testimonials h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--bg-dark-card);
    border: 2px solid rgba(43, 78, 93, 0.08);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s cubic-bezier(.4,2,.6,1);
}
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 #aedde5;
    border-color: var(--accent-mint);
}
.testimonial-card .rating {
    font-size: 1.25rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}
.testimonial-card .quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-details strong {
    display: block;
    color: var(--text-dark);
}
.author-details span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================
   12. Home Page: Integrations
   =================== */
.integration-ecosystem {
    background: var(--bg-dark-secondary);
    text-align: center;
    border-radius: 20px;
}
.integration-ecosystem h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.integration-logos {
    margin: 3rem 0;
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* ==================
   13. Home Page: Final CTA (Enhanced Ocean-Orange Theme)
   =================== */

.final-cta {
   background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(255, 111, 60, 0.85) 100%);
  color: var(--text-light);
  text-align: center;
  border-radius: 24px;
  padding: 5rem 2rem;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 180, 80, 0.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(0, 200, 255, 0.2), transparent 50%);
  animation: pulseGlow 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes pulseGlow {
  from {
    transform: scale(1);
    opacity: 0.6;
  }
  to {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.final-cta h2 {
  color: #ffffff;
  font-size: 2.75rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 150, 50, 0.5);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.final-cta > p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.benefits-list {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.benefits-list li {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #eaf6ff;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, 0.3s ease;
}

.benefits-list li:hover {
  background: rgba(255, 165, 0, 0.15);
  transform: translateY(-6px);
}

.benefits-list i {
  color: #ffa64d;
  margin-right: 0.5rem;
}

.final-cta .cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.final-cta .btn.btn-secondary-outline {
  border: 2px solid #ffa64d;
  color: #fff;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(0, 140, 255, 0.1), rgba(255, 120, 50, 0.15));
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  text-decoration: none;
}

.final-cta .btn.btn-secondary-outline:hover {
  background: linear-gradient(90deg, rgba(0, 160, 255, 0.4), rgba(255, 140, 60, 0.4));
  box-shadow: 0 0 25px rgba(255, 160, 80, 0.4);
  transform: translateY(-4px);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==================
   14. Global Footer (Ocean Blue × Orange Theme)
   =================== */
.global-footer {
  background: linear-gradient(135deg, rgba(42, 102, 162, 0.98) 0%, rgba(219, 153, 47, 0.98) 100%), 
              url('./assets/footer.png') center/cover no-repeat;
  padding: 70px 20px 40px;
  color: #eaf6ff;
  margin-top: 80px;
  border-top: 2px solid rgba(255, 140, 60, 0.3);
  box-shadow: 0 -2px 35px rgba(0, 80, 130, 0.6);
  position: relative;
  overflow: hidden;
}

.global-footer::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 160%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(255, 160, 60, 0.15), transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(0, 160, 255, 0.15), transparent 60%);
  animation: footerGlow 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes footerGlow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-thank-you {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 140, 60, 0.3);
}

.thank-you-text {
  font-size: 32px;
  font-weight: 600;
  color: #ffa64d;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 25px rgba(255, 150, 50, 0.4);
}

.thank-you-subtext {
  font-size: 16px;
  color: #a7c6e2;
  font-weight: 400;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-cta {
  width: 100%;
  max-width: 300px;
}

.footer-demo-btn {
  width: 90%;
  padding: 16px 32px;
  background:linear-gradient(135deg, #0099ff 0%, #ff7e00 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  box-shadow: 0 4px 20px rgba(255, 150, 50, 0.3);
  transition: all 0.3s ease-in-out;
}

.footer-demo-btn:hover, .footer-demo-btn:focus {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, rgba(255, 160, 60, 1), rgba(0, 150, 255, 1));
  box-shadow: 0 8px 35px rgba(255, 160, 60, 0.45);
}

.footer-demo-btn a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.btn-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 160, 60, 0.4));
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: #b5d4f5;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover, .footer-link:focus {
  color: #ffa64d;
  text-decoration: underline;
}

.link-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  color: #eaf6ff;
  border: 1px solid rgba(255, 160, 60, 0.3);
  box-shadow: 0 2px 10px rgba(0, 60, 100, 0.2);
}

.social-link:hover, .social-link:focus {
  background: linear-gradient(135deg, #0098ff, #ffa64d);
  color: #fff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 160, 60, 0.45);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 140, 60, 0.3);
}

.footer-copyright p {
  font-size: 14px;
  color: rgba(230, 240, 255, 0.7);
  margin: 0;
}


/* ==================
   16. Hero Video Background
   =================== */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, var(--bg-dark-primary) 0%, var(--dark-charcoal) 100%);
}
.hero-video-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.7);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
}
#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-content, 
.trust-bar, 
.stats-banner {
    position: relative;
    z-index: 3;
}
.hero .btn-outline {
    color: var(--text-dark);
    border-color: var(--accent-cyan);
}
.hero .btn-outline:hover {
    background: var(--accent-cyan);
    color: var(--text-light);
}

/* ==================
   18. Dropdown Navigation (Ocean Blue → Orange Theme)
   =================== */
.dropdown {
  position: relative;
}

/* Dropdown icons */
.dropdown a i {
  font-size: 1.2rem; /* increased icon size */
  margin-left: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}


/* Dropdown Card Container */
.dropdown-card {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-left:20vw;
  margin-top: 1vw;
  background: linear-gradient(
    135deg,
    rgba(104, 163, 194, 0.95),
    rgba(193, 152, 112, 0.9)
  );
  backdrop-filter: blur(12px);        
  min-width: 900px ;    
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  padding: 1rem;
  z-index: 1100;
  border: 1px solid rgba(226, 220, 47, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, top 0.3s ease, visibility 0.3s ease;

  /* Grid Layout */
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
  gap: 0.75rem;
  justify-items: center;   /* center items horizontally */
  align-items: start;      /* align items to top */
}

/* Dropdown visibility animation */
.dropdown:hover .dropdown-card {
  display: grid;
  visibility: visible;
  opacity: 1;
}
/* Dropdown Item Styles */
.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem; /* reduced padding */
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
  background: rgba(255, 255, 255, 0.57);
  width: 20vw;
  pointer-events:none
}


/* Icon Styling */
.dropdown-item i {
  margin-right: 0.8rem;
  width: 30px;
  text-align: center;
  color: #ffa64d;
  transition: color 0.3s ease;
}

.dropdown-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* Small glowing border on hover */
.dropdown-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-ai));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* ==================
   Responsive Layout
   ================== */
@media (max-width: 768px) {
    .dropdown {
  position: relative;
}
  .dropdown-card {
    transform: translateX(-50%);
    grid-template-columns: 1fr; /* 1 column on mobile */
    margin-left: 0;
    min-height: auto;
  }
   
  .dropdown a {
    padding: 0;
    margin-left: 0;
    items-align: flex-start;
  }

  .dropdown-item {
    font-size: 0.85rem;
    max-width: 38%;
    items-align: flex-start;
  }

  .dropdown-item i {
    font-size: 1.5rem; 
    items-align:start;
  }
}



/* ==================
   19. Scroll Animations
   =================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}
.stagger {
    transition-delay: 0.2s;
}

/* ==================
   20. Pricing Section
   =================== */


.faq-section {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 4vmax;
}
.faq-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 48px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 4 equal-width columns */
    gap: 24px;
}

.faq-item {
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(43, 78, 93, 0.2);
    min-width: 300px
}
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(173, 216, 102, 0.2);
    border-color: var(--accent-mint);
}
.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
   white-space: nowrap;
   text-align: center;


}
.faq-answer {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    text-align:center;
}

/* ==================
   MOBILE RESPONSIVENESS - FIXED
   =================== */

/* Tablets and Below (992px) */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.3rem; }
    
    section {
        padding: 60px 5%;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero {
        justify-content: flex-start;
        min-height: auto;
        padding-top: 60px;
    }
    
    .hero-split {
        flex-direction: column;
        padding: 1rem 5%;
        gap: 3rem;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
        flex-basis: auto;
    }
    
    .hero-image {
        order: 2;
        flex-basis: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
        border-radius: 12px;
        max-width: 90%;
        gap: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metric-item .metric-number {
        font-size: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .final-cta h2 {
        font-size: 2.25rem;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-card {
        padding: 36px 24px;
    }
}

/* Mobile Devices (768px and Below) */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .navbar {
        padding: 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--accent-blue);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 0.75rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .stats-banner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.75rem;
    }
    
    .two-column-layout,
    .feature-grid,
    .testimonial-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    section {
        padding: 40px 5%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons > * {
        width: 100%;
        text-align: center;
    }
    
    .final-cta h2 {
        font-size: 1.85rem;
    }
    
    .final-cta > p {
        font-size: 1rem;
    }
    
    .final-cta .benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pricing-section {
        padding: 60px 16px;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .pricing-card {
        padding: 28px 20px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .price-amount {
        font-size: 48px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-title {
        font-size: 28px;
    }
}

/* Small Mobile (576px and Below) */
@media (max-width: 576px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    
    .hero h1 {
        font-size: 1.85rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .metric-item .metric-number {
        font-size: 2.5rem;
    }
    
    .metric-item p {
        font-size: 0.95rem;
    }
    
    .feature-card,
    .testimonial-card,
    .step {
        padding: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 1.65rem;
    }
    
    .pricing-card {
        padding: 24px 16px;
    }
    
    .price-amount {
        font-size: 40px;
    }
}

/* Desktop Optimization (768px and Above) */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-cta {
        order: 3;
        max-width: 250px;
    }
    
    .footer-links {
        order: 1;
    }
    
    .footer-social {
        order: 2;
    }
}

/* Footer Mobile Adjustments */
@media (max-width: 767px) {
    .global-footer {
        padding: 50px 20px 30px;
    }
    
    .thank-you-text {
        font-size: 26px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .link-separator {
        display: none;
    }
    
    .footer-demo-btn {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* Very Small Screens */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.65rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .stats-banner {
        padding: 1.5rem 0.75rem;
    }
}
/* ==================
   15. Mobile Responsiveness
   =================== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.75rem; }

    .stats-banner,
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--bg-dark-secondary);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        padding: 1rem;
        gap: 0.5rem;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 0.75rem;
        width: 100%;
    }
    .nav-cta {
        display: none;
    }
    .hamburger-menu {
        display: block;
    }
    
    .two-column-layout,
    .feature-grid,
    .testimonial-grid,
    .footer-grid,
    .stats-banner,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 40px 5%;
    }

    .hero {
        padding-top: 60px;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .final-cta .benefits-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pricing-section {
        padding: 60px 16px;
    }

    .pricing-title {
        font-size: 36px;
    }

    .pricing-card {
        padding: 36px 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-cta {
        order: 3;
        max-width: 250px;
    }

    .footer-links {
        order: 1;
    }

    .footer-social {
        order: 2;
    }
}

@media (max-width: 767px) {
    .global-footer {
        padding: 50px 20px 30px;
    }

    .thank-you-text {
        font-size: 26px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .link-separator {
        display: none;
    }
}



.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers both image and text horizontally */
  text-align: center;
 /* space between image and text */
}

.logo {
  max-width: 100px; /* adjust size as needed */
  height: auto;
}

.logo-text {
   font-family: 'Montserrat', sans-serif;
  font-size: 0.7vw;
  font-weight: 600;
  color: #333;
}

/* Responsive tweaks (optional) */
@media (max-width: 600px) {
  .logo {
    max-width: 80px;
  }

  .logo-text {
    font-size: 0.6rem;
  }
}



