 /* ROOT COLOR PALETTE */
        :root {
            --bg-dark: #050505;
            --bg-card: #0a0a0a;
            --primary-orange: #ff8c00;
            --secondary-orange: #ff4500;
            --text-main: #ffffff;
            --text-dim: #cbd5e1;
            --accent-gradient: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
            --glow-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            background: var(--bg-dark);
            color: var(--text-main);
        }
        html {
            scroll-behavior: smooth;
        }
        html,
        /* global for wastapp intergation */
        body {
        overflow-x: hidden;
        overflow-y: auto;
        }

        /* Navigation Bar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(5, 5, 5, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 140, 0, 0.1);
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.8s ease 0.2s forwards;
        }

        @keyframes fadeInDown {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--text-main);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            padding: 10px 24px;
            background: var(--accent-gradient);
            color: white !important;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: var(--glow-shadow);
        }

        .nav-cta::after {
            display: none;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 101;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--text-main);
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Particle Canvas - Fixed Background */
        #particleCanvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #0a0a0f 100%);
            z-index: 0;
        }

        .hero-container {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 40px 60px;
        }

        /* Additional Sections Container */
        .additional-sections {
            position: relative;
            width: 100%;
            min-height: 100vh;
            z-index: 1;
        }

        .section-placeholder {
            position: relative;
            width: 100%;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 40px;
        }

        .placeholder-box {
            max-width: 1400px;
            width: 100%;
            padding: 60px 40px;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(20px);
            border: 2px dashed rgba(255, 140, 0, 0.3);
            border-radius: 20px;
            text-align: center;
        }

        .placeholder-box h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .placeholder-box p {
            color: var(--text-dim);
            font-size: 1.1rem;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text {
            text-align: left;
        }

        h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 40px rgba(255, 140, 0, 0.2);
        }

        .gradient-text {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 25px rgba(255, 140, 0, 0.3));
        }

        .subtext {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--text-dim);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            opacity: 0;
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1.2rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        .btn {
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: var(--accent-gradient);
            color: white;
            box-shadow: var(--glow-shadow);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-orange) 100%);
            transition: left 0.4s ease;
        }

        .btn-primary:hover::before {
            left: 0;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 0 40px rgba(255, 140, 0, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 140, 0, 0.1);
            color: white;
            border: 2px solid rgba(255, 140, 0, 0.5);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 140, 0, 0.2);
            border-color: var(--primary-orange);
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
        }

        .arrow {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover .arrow {
            transform: translateX(5px);
        }

        .btn-secondary:hover .arrow {
            transform: rotate(45deg);
        }

        /* Image Section */
        .image-section {
            position: relative;
            opacity: 0;
            animation: fadeInUp 1s ease 0.4s forwards;
        }

        .image-container {
            position: relative;
            border-radius: 10px;
            overflow: visible;
        }

        /* ↓ width reduced here */
        .image-wrapper {
            border: 2px dotted orange;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
           box-shadow:
                0 40px 80px rgba(255,165,0,0.25),
                0 10px 30px rgba(0,0,0,0.6);
            transition: all 0.4s ease;
            max-height: calc(100vh - 280px);

            max-width: 540px;   /* NEW */
            margin: 0 auto;     /* NEW */
        }

        .image-wrapper:hover {
            box-shadow: 0 30px 80px rgba(255, 140, 0, 0.6);
            transform: translateY(-5px);
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            inset: -4px;
            background: linear-gradient(
                135deg,
                var(--primary-orange),
                var(--secondary-orange),
                var(--primary-orange)
            );
            border-radius: 10px;
            z-index: -1;
            animation: rotateGlow 4s linear infinite;
            background-size: 300% 300%;
            transition: all 0.4s ease;
        }

        .image-wrapper:hover::before {
            inset: -6px;
            filter: blur(30px);
        }

        @keyframes rotateGlow {
            0% {
                background-position: 0% 50%;
                filter: blur(20px);
            }
            50% {
                background-position: 100% 50%;
                filter: blur(25px);
            }
            100% {
                background-position: 0% 50%;
                filter: blur(20px);
            }
        }

        /* ↓ border-radius fixed */
        .profile-image {
            display: block;
            width: 100%;
            height: auto;
            max-height: calc(100vh - 280px);
            border-radius: 10px; /* changed */
            position: relative;
            z-index: 1;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .image-wrapper:hover .profile-image {
            transform: scale(1.02);
        }

        /* Placeholder when no image */
        .image-placeholder {
            width: 100%;
            height: calc(100vh - 280px);
            background: linear-gradient(
                135deg,
                #1a1a1a 0%,
                var(--bg-card) 100%
            );
            border-radius: 10px; /* changed */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .image-wrapper:hover .image-placeholder {
            transform: scale(1.02);
        }

        .placeholder-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 140, 0, 0.1);
            border: 2px solid rgba(255, 140, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .placeholder-text {
            color: var(--text-dim);
            font-size: 0.95rem;
            text-align: center;
        }

        /* Decorative elements */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            z-index: -1;
            animation: pulse 4s ease-in-out infinite;
        }

        .orb-1 {
            width: 300px;
            height: 300px;
            background: var(--primary-orange);
            top: -50px;
            right: -50px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 250px;
            height: 250px;
            background: var(--secondary-orange);
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        @media (max-width: 1200px) {
            .hero-content {
                gap: 50px;
            }
        }

        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .image-section {
                order: -1;
            }

            .glow-orb {
                display: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(5, 5, 5, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: right 0.4s ease;
                border-left: 1px solid rgba(255, 140, 0, 0.2);
            }

            .nav-links.active {
                right: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .hero-container {
                padding: 100px 20px 40px;
            }

            .hero-content {
                gap: 40px;
            }

            .hero-text {
                text-align: center;
            }

            h1 {
                font-size: clamp(1.2rem, 3vw, 2rem);
            }

            .cta-buttons {
                justify-content: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }

        /* reussable buttons */
    /* ================= PREMIUM CTA BUTTON ================= */
.cta-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Button base */
.cta-glow-btn {
    position: relative;
    padding: 16px 42px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(255,140,0,0.35),
        inset 0 -2px 0 rgba(0,0,0,0.25);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

/* Hover lift */
.cta-glow-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 50px rgba(255,140,0,0.55),
        0 0 0 6px rgba(255,140,0,0.12);
}

/* Active click */
.cta-glow-btn:active {
    transform: translateY(0);
}

/* Text layer */
.cta-text {
    position: relative;
    z-index: 2;
    letter-spacing: 0.3px;
}

/* Shine sweep */
.cta-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.35) 45%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform 0.7s ease;
}

.cta-glow-btn:hover .cta-shine {
    transform: translateX(120%);
}
/* Alternate layout for even case studies (desktop only) */
@media (min-width: 900px) {
  .case:nth-child(even) {
    grid-template-columns: 1fr 1.1fr;
  }

  .case:nth-child(even) .case-media {
    order: 2; /* image on right */
  }

  .case:nth-child(even) .case-content {
    order: 1; /* content on left */
    padding-left: 0;
    padding-right: 2.5rem;
  }

  /* Move accent line to the right for even cases */
  .case:nth-child(even) .case-content::before {
    left: auto;
    right: 0;
  }
}

/* Dark background contrast */
body.dark .cta-glow-btn {
    box-shadow:
        0 14px 40px rgba(255,140,0,0.45),
        inset 0 -2px 0 rgba(0,0,0,0.3);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .cta-glow-btn {
        width: 90%;
        max-width: 320px;
        padding: 16px 0;
    }
}


/* watsapp button integration css */

/* ================= WHATSAPP CHATBOT ================= */
.wa-widget {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom));
  right: 16px;
  z-index: 9999;
}


/* Floating Button */
.wa-fab {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-fab img {
  width: 32px;
  height: 32px;
}

.wa-fab:hover {
  transform: scale(1.09);
  box-shadow: 0 12px 52px rgba(0,0,0,0.35);
}

/* Popup */
.wa-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: all 0.3s ease;
}

/* Active State */
.wa-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Header */
.wa-header {
  background: #075E54;
  color: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.wa-brand img {
  width: 22px;
  height: 22px;
}

.wa-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

/* Body */
.wa-body {
  padding: 20px;
}

.wa-greeting {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA */
.wa-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: #25D366;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.wa-cta:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
  .wa-popup {
    width: 90vw;
    right: 0;
  }
}
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-orange);
  opacity: 0.9;
}
.cta-buttons {
  margin-top: 10px;
}

.btn-primary {
  font-size: 1.05rem;
  padding: 18px 38px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
}
.hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(203, 213, 225, 0.85);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.image-badge {
  position: absolute;
  bottom: -52px; /* 👈 closer to image */
  left: 50%;
  transform: translateX(-50%);

  background: linear-gradient(
    180deg,
    rgba(20,20,20,0.92),
    rgba(8,8,8,0.92)
  );

  padding: 16px 28px;
  border-radius: 999px;
  text-align: center;

  /* Always visible */
  opacity: 1;
  pointer-events: none;

  /* Stronger presence */
  box-shadow:
    0 18px 45px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,140,0,0.35),
    0 0 24px rgba(255,140,0,0.25);

  z-index: 10;
}

/* NAME */
.image-badge strong {
  display: block;
  font-size: 0.95rem; /* 👈 bigger */
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ROLE */
.image-badge span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff8c00;
  margin-top: 4px;
}

/* ===============================
   DESKTOP EMPHASIS ONLY
================================ */
@media (min-width: 1024px) {
  .image-badge {
    bottom: -44px;
    padding: 18px 34px;
  }
}

/* ===============================
   MOBILE REFINEMENT
================================ */
@media (max-width: 768px) {
  .image-badge {
    bottom: -30px;
    padding: 12px 22px;
    box-shadow:
      0 14px 32px rgba(0,0,0,0.55),
      0 0 0 1px rgba(255,140,0,0.25);
  }

  .image-badge strong {
    font-size: 0.9rem;
  }

  .image-badge span {
    font-size: 0.75rem;
  }
}
@media (max-width: 768px) {
  .image-badge {
    bottom: 0;
    transform: translate(-60%, 55%);
  }
}
.dp-cta-wrapper {
  position: relative;
  z-index: 9999 !important;
}

.dp-cta-btn {
  position: relative;
  z-index: 9999 !important;
  pointer-events: auto !important;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .image-badge {
    bottom: -34px;
    padding: 10px 18px;
  }

  .image-badge strong {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {

  /* Stack hero vertically */
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  /* Make text children act like direct siblings */
  .hero-text {
    display: contents;
  }

  /* ORDER CONTROL */
  h1,
  .hero-eyebrow,
  .subtext {
    order: 1; /* Heading first */
    text-align: center;
  }

  .image-section {
    order: 2; /* Image second */
  }

  .cta-buttons {
    order: 3; /* CTA last */
    justify-content: center;
    margin-top: 20px;
  }

  /* Full-width CTA (thumb-friendly) */
  .btn {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .btn-primary {
    font-size: 1.1rem;
    padding: 18px 0;
  }
}

@media (max-width: 768px) {

  /* ================= REMOVE TOP VALUE STRIP ================= */
  .hero-trust,
  .hero-features,
  .hero-points,
  .top-features {
    display: none !important;
  }

  /* ================= HERO LAYOUT ================= */
  .hero-container {
    padding: 88px 16px 24px; /* tighter */
    min-height: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px; /* reduced spacing */
  }

  /* ================= TEXT FIRST ================= */
  .hero-eyebrow,
  h1,
  .subtext {
    text-align: center;
    margin-bottom: 10px;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .subtext {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  /* ================= CTA ON FIRST SCREEN ================= */
  .cta-buttons {
    order: 2;
    margin-top: 12px;
    margin-bottom: 6px;
    justify-content: center;
  }

  .btn-primary {
    width: 100%;
    max-width: 420px;
    padding: 10px 5px;
    font-size: 1.05rem;
  }

  /* ================= IMAGE SMALLER ================= */
  .image-section {
    order: 3;
    margin-top: 10px;
  }

  .image-wrapper {
    max-width: 300px;   /* smaller image */
    max-height: 360px;
  }

  .profile-image {
    max-height: 360px;
    object-fit: cover;
  }

  /* Reduce badge spacing */
  .image-badge {
    bottom: -10px;
  }
}
/* ===============================
   REUSABLE PREMIUM CTA BUTTON
   =============================== */

.dp-cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 2.5rem 0;
}

/* Main Button */
.dp-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 16px 30px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );

  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;

  box-shadow:
    0 10px 35px rgba(255, 140, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);

  overflow: hidden;
  transition: all 0.35s ease;
}

/* Text */
.dp-cta-text {
  position: relative;
  z-index: 2;
}

/* Arrow */
.dp-cta-arrow {
  position: relative;
  z-index: 2;
  font-size: 1.15rem;
  transition: transform 0.35s ease;
}

/* Glow Overlay */
.dp-cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover Effects */
.dp-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 45px rgba(255, 140, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.dp-cta-btn:hover::before {
  opacity: 1;
}

.dp-cta-btn:hover .dp-cta-arrow {
  transform: translateX(6px);
}

/* Active */
.dp-cta-btn:active {
  transform: translateY(0);
  box-shadow:
    0 8px 25px rgba(255, 140, 0, 0.35);
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {
  .dp-cta-wrapper {
    margin: 1.8rem 0;
  }

  .dp-cta-btn {
    padding: 14px 28px;
    font-size: 1.2rem;
  }

  .dp-cta-arrow {
    font-size: 1.05rem;
  }
}

/* ===============================
   EXTRA SMALL DEVICES
   =============================== */

@media (max-width: 480px) {
  .dp-cta-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}
/* =====================================================
   FINAL HERO + CTA FIX (AUTHORITATIVE – LAST WINS)
   ===================================================== */

@media (max-width: 768px) {

  /* --- HERO STACK --- */
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* --- TEXT FIRST --- */
  .hero-eyebrow,
  h1,
  .subtext {
    text-align: center;
  }

  h1 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .subtext {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 6px;
  }

  /* --- IMAGE SECOND --- */
  .image-section {
    order: 2;
    margin-top: 10px;
  }

  .image-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  .profile-image {
    max-height: 360px;
    object-fit: cover;
  }

  /* --- CTA LAST (PREMIUM PILL) --- */
  .cta-buttons,
  .dp-cta-wrapper {
    order: 3;
    margin-top: 16px;
    display: flex;
    justify-content: center;
  }

  /* Kill full-width button behavior */
  .btn,
  .btn-primary {
    width: auto !important;
    max-width: none !important;
  }

  /* Final CTA size */
  .dp-cta-btn {
    min-width: 220px;
    max-width: 260px;
    padding: 6px 12px;
    font-size: 1.5rem;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .dp-cta-btn {
    min-width: 200px;
    max-width: 230px;
  }
}
/* =========================================
   HOME PAGE – LEFT CONTENT ALIGNMENT (FIXED)
   ========================================= */

.hero-home .hero-text {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* Eyebrow */
.hero-home .hero-eyebrow {
  text-align: left;
}

/* Headline */
.hero-home .hero-text h1 {
  text-align: left;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* Paragraph */
.hero-home .subtext {
  max-width: 560px;
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.9);
  text-align: left;
}

/* CTA aligned with text */
.hero-home .dp-cta-wrapper {
  justify-content: flex-start;
  margin-top: 8px;
}

/* Trust row aligned */
.hero-home .hero-trust {
  justify-content: flex-start;
}

/* ================= MOBILE SAFETY ================= */
@media (max-width: 768px) {
  .hero-home .hero-text {
    align-items: center;
    text-align: center;
  }

  .hero-home .subtext {
    text-align: center;
  }

  .hero-home .dp-cta-wrapper {
    justify-content: center;
  }
}
/* =========================================
   MOBILE: CENTER HERO TITLE ONLY (HOME)
   ========================================= */

@media (max-width: 768px) {
  .hero-home .hero-text h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* =========================================
   MOBILE FIX: IMAGE BADGE TEXT (HOME ONLY)
   ========================================= */

@media (max-width: 768px) {

  .hero-home .image-badge {
    bottom: -6px;                 /* pull closer to image */
    padding: 8px 16px;            /* smaller, tighter */
    max-width: 240px;
    border-radius: 14px;
    text-align: center;
  }

  .hero-home .image-badge strong {
    font-size: 0.85rem;           /* name smaller */
    line-height: 1.2;
  }

  .hero-home .image-badge span {
    font-size: 0.7rem;            /* role lighter */
    opacity: 0.9;
    margin-top: 4px;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .hero-home .image-badge {
    max-width: 220px;
  }
}

.highlight-underline {
  position: relative;
  color: #fff;
  font-weight: 500;
}

.highlight-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff8c00, transparent);
  box-shadow: 0 0 10px rgba(255, 140, 0, 0.6);
}
.highlight-gradient {
  background: linear-gradient(90deg, #ff8c00, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
.hero-desc {
  font-size: clamp(1rem, 1.1vw, 1.2rem); /* ~16px → 19px */
  line-height: 1.7;
  max-width: 720px;
}
.highlight-audience {
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 0.2em;

  background-image:
    linear-gradient(
      100deg,
      transparent 60%,
      rgba(255,140,0,0.28) 60%
    ),
    linear-gradient(
      90deg,
      rgba(255,140,0,0.85),
      rgba(255,180,80,0.65)
    );

  background-repeat: no-repeat;
  background-size: 100% 0.35em, 100% 1.5px;
  background-position: 0 88%, 0 100%;
}
@media (min-width: 1024px) {
  .highlight-audience {
    background-size: 100% 0.28em, 100% 1.2px;
    background-position: 0 90%, 0 100%;
  }
}
.hero-desc {
  margin-bottom: 2.2rem;
}
/* Disable services dropdown only on mobile */
@media (max-width: 768px) {
  .nav-links li ul {
      display: none !important;
  }
}

.team-section {
   padding: 80px 6%;
}
.team-carousel {
   margin-bottom: 60px;
}
/* Remove bottom gap after team section on mobile */
@media (max-width: 768px) {

  .team-section,
  .team-container,
  .team-carousel {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Fix spacing of dots */
  .team-dots {
    margin-bottom: 10px !important;
  }

  /* Pull CTA button closer */
  .dp-cta-wrapper {
    margin-top: 10px !important;
  }
}
@media (max-width: 768px) {

  .team-section {
    padding-bottom: 0 !important;
  }

  .team-wrapper {
    margin-bottom: 0 !important;
  }

  .team-slider {
    margin-bottom: 0 !important;
  }

  .carousel-dots {
    margin-bottom: 10px !important;
  }

}
/* ===== HARD FIX: SERVICES → CERTIFICATES VISIBILITY ===== */

/* Force proper end of services section */
.services-section {
  padding-bottom: 80px !important;
  margin-bottom: 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Ensure CTA sits between them properly */
.dp-cta-wrapper {
  margin-top: 0px !important;
  margin-bottom: 40px !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Certificates must start clearly below */
.cert-section {
  padding-top: 40px !important;
  margin-top: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Absolutely force title visibility */
.cert-title {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 5 !important;
}
/* ===== ULTRA TIGHT GAP BETWEEN SERVICES → CTA → CERTIFICATES ===== */

.services-section {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.services-container {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}

.services-grid {
  margin-bottom: -10px !important;  /* pulls CTA upward */
  padding-bottom: 0px !important;
}

.dp-cta-wrapper {
  margin-top: 0px !important;
  margin-bottom: 5px !important;    /* almost touching */
}

/* Pull certifications upward */
.cert-section {
  padding-top: 0px !important;
  margin-top: 0px !important;
}

.cert-title {
  margin-top: 0px !important;
  padding-top: 0px !important;
}
@media (max-width: 768px) {

  .services-grid {
    margin-bottom: -30px !important;
  }

  .dp-cta-wrapper {
    margin-top: -30px !important;
    margin-bottom: 8px !important;
  }

  .cert-section {
    margin-top: -50px !important;
  }

  .cert-title {
    margin-top: -8px !important;
  }
}
/* ===== BALANCED SPACING BETWEEN CTA BUTTON AND CERTIFICATES ===== */

.services-grid {
  margin-bottom: -10px !important;
}

.dp-cta-wrapper {
  margin-top: 4px !important;
  margin-bottom: 12px !important;   /* small clean gap */
}

.cert-section {
  padding-top: 6px !important;
  margin-top: 0px !important;
}

.cert-title {
  margin-top: 4px !important;
  padding-top: 0px !important;
}
/* Pull certificates section upward including the CTA button */
.cert-section {
  margin-top: -40px !important;   /* moves whole block upward */
}

.dp-cta-wrapper {
  margin-bottom: 6px !important;  /* reduce space under button */
}
@media (max-width: 768px) {
  .network-pro-section {
    padding-top: 10px !important;
  }
}
@media (max-width: 768px) {
  .dp-cta-wrapper {
    margin-top: -45px !important;   /* stronger upward shift */
    margin-bottom: 15px !important;
  }

  /* Also tighten gap from team carousel */
  .team-carousel,
  .team-section {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
  }

  .team-dots {
    margin-bottom: 6px !important;
  }
}
@media (max-width: 768px) {
  .network-pro-section .dp-cta-wrapper {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 768px) {
  .hero-container .dp-cta-wrapper {
    margin-top: 20px !important;
  }
}
@media (max-width: 768px) {
  .network-pro-section .dp-cta-wrapper {
    margin-top: 40px !important;
  }
}
@media (max-width: 768px) {
  .network-pro-section .dp-cta-wrapper {
    position: relative !important;
    top: 55px !important;
  }
}
/* HARDCODED FIX FOR NETWORKING SECTION CTA SPACING */
@media (max-width: 768px) {

  /* Force space after the networking slider */
  .networking-section,
  .network-pro-section,
  .network-carousel,
  .team-carousel {
    margin-bottom: 60px !important;
    padding-bottom: 30px !important;
  }

  /* Now move the CTA wrapper itself */
  .networking-section .dp-cta-wrapper,
  .network-pro-section .dp-cta-wrapper {
    margin-top: 40px !important;
    margin-bottom: 30px !important;
    position: relative !important;
    top: 20px !important;
  }

  /* Extra safety in case something overlaps */
  .networking-section {
    padding-bottom: 70px !important;
  }
}

/* Move CTA button after roadmap slightly down */
@media (max-width: 768px) {

  .roadmap-section .dp-cta-wrapper,
  .process-section .dp-cta-wrapper {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
  }

  .roadmap-section {
    padding-bottom: 40px !important;
  }
}
