/* Global Styles */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #00cec9;
    --dark-bg: #0a0a1a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --text-muted: #b2bec3;
    --gradient-main: linear-gradient(135deg, #6c5ce7, #00cec9);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-soft-primary {
    background-color: rgba(108, 92, 231, 0.15) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1e1e2f, #0a0a1a);
}

.section-dark {
    background-color: #0f0f25;
}

.btn-glow {
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(108, 92, 231, 0.8);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, rgba(10, 10, 26, 0) 70%);
    z-index: -1;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Animations */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Background Blobs */
.background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(108, 92, 231, 0.3);
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 206, 201, 0.2);
}

/* Feature Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(108, 92, 231, 0.5);
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Benefits Section */
.bg-grid-pattern {
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
}

.accordion-button.collapsed {
    color: var(--text-color);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) drop-shadow(0 0 5px rgba(0, 206, 201, 0.5));
}

/* Pricing Cards */
.pricing-card {
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.border-primary {
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.15);
}

.pricing-card.border-primary:hover {
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.3);
}

.pricing-card .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.pricing-card li {
    color: #fff;
    font-size: 1.05rem;
}

/* Project Showcase */
.project-preview {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

.project-preview:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

/* Extreme Animations */
.tilt-effect {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.tilt-effect:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(108, 92, 231, 0.4);
    z-index: 10;
}

.pulse-strong {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(108, 92, 231, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
    }
}

/* Footer */
.hover-white:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }

    .display-3 {
        font-size: 2.8rem;
    }

    .hero-img {
        max-width: 90%;
        margin-top: 40px;
    }

    .blob {
        opacity: 0.2;
    }

    .project-preview:hover {
        transform: none;
    }
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 0;
    transform: translateY(-50%);
}

.timeline .card {
    position: relative;
    z-index: 1;
    background: #0f0f25;
    /* Solid background to cover line */
    background: rgba(15, 15, 37, 0.9);
    /* Semi-transparent dark */
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .timeline::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    }
}

/* Certificate Styles */
.certificate-frame {
    background: #fff;
    position: relative;
    transition: transform 0.3s ease;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.script-font {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
}

/* Comparison Table */
.table-dark {
    --bs-table-bg: transparent;
    --bs-table-hover-bg: rgba(255, 255, 255, 0.02);
}

.table-dark td,
.table-dark th {
    border-color: rgba(255, 255, 255, 0.1);
}

.bg-soft-primary {
    background-color: rgba(108, 92, 231, 0.15) !important;
}

/* Diagonal Ribbon */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 5;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 220px;
    padding: 10px 0;
    background: #0d6efd;   /* default ribbon color */
    color: #fff;
    font-weight: bold;
    text-align: center;
    transform: rotate(45deg);
    top: 30px;
    right: -60px;
    font-size: 14px;
}

/* Best Value ribbon color */
.ribbon-green span {
    background: #00c851;
}

/* <!-- ===================== TIMELINE SECTION (12-Month Zig-Zag) ===================== --> */
 :root{
    --bg: #0b0b0d;
    --card: rgba(20,20,20,0.85);
    --muted: #9aa4af;
    --accent: #0ea5ff; /* blue accent */
    --green: #00d97e;
    --glow-intensity: 0.35; /* medium glow (0.1 low - 0.6 heavy) */
  }

  /* Section */
  .roadmap-section{
    background: linear-gradient(180deg, rgba(12,12,13,1) 0%, rgba(6,6,7,1) 100%);
    padding: 80px 0;
  }
  .roadmap-header .text-gradient{
    background: linear-gradient(90deg,#50e3c2,#7b61ff 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .roadmap-sub {
    color: var(--muted);
  }

  /* Layout */
.timeline-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

  .timeline-spine{
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    z-index: 1;
    overflow: visible;
    box-shadow: 0 0 30px rgba(0,0,0,0.6) inset;
  }

  /* fill that grows */
  .timeline-spine .spine-fill{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(14,165,255,0.2), rgba(0,217,126,0.18));
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(14,165,255,var(--glow-intensity));
    transition: height 300ms linear;
  }

  /* pulse dots */
  .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    z-index: 3;
    box-shadow: 0 0 12px rgba(14,165,255,var(--glow-intensity)), 0 0 30px rgba(0,217,126,var(--glow-intensity));
    transition: transform .25s ease, box-shadow .25s ease, background .25s;
  }
  .timeline-dot.pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(14,165,255,0.35);
    animation: pulse 2s infinite;
    z-index: -1;
  }
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.85; box-shadow: 0 0 0 0 rgba(14,165,255,0.35); }
    70% { transform: scale(2.4); opacity: 0; box-shadow: 0 0 50px 14px rgba(14,165,255,0); }
    100% { transform: scale(2.4); opacity: 0; }
  }

  /* Card styling */
  .timeline-card{
    background: var(--card);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.04);
    padding: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 30px rgba(2,6,23,0.6);
    transition: transform .35s cubic-bezier(.2,.9,.3,1), box-shadow .35s;
    min-height: 120px;
  }
  .timeline-card:hover{
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(2,6,23,0.7);
  }
  .timeline-card .badge {
    font-size: .8rem;
    padding: .35rem .6rem;
    border-radius: 8px;
  }
  .timeline-card h4 { margin-top: 10px; margin-bottom: 6px; }
  .timeline-card p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

  /* Zig-Zag layout (left/right) */
  .timeline-row { position: relative; display: flex; align-items: flex-start; margin: 40px 0; }
  .timeline-row .col-left, .timeline-row .col-right { width: 48%; }
  .timeline-row .col-center { width: 4%; position: relative; }

  .timeline-row.left .col-left { text-align: right; padding-right: 30px; }
  .timeline-row.left .col-right { padding-left: 30px; visibility: hidden; } /* empty */
  .timeline-row.right .col-right { text-align: left; padding-left: 30px; }
  .timeline-row.right .col-left { padding-right: 30px; visibility: hidden; } /* empty */

  /* Card arrow */
  .timeline-row.left .timeline-card::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 34px;
    border-width: 8px 0 8px 12px;
    border-style: solid;
    border-color: transparent transparent transparent var(--card);
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.6));
  }
  .timeline-row.right .timeline-card::after {
    content: "";
    position: absolute;
    left: -12px;
    top: 34px;
    border-width: 8px 12px 8px 0;
    border-style: solid;
    border-color: transparent var(--card) transparent transparent;
    filter: drop-shadow(0 6px 10px rgba(0,0,0,0.6));
  }

  /* Icon bubble */
  .month-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.04);
    color: #fff;
    box-shadow: 0 6px 18px rgba(6,9,14,0.6);
    margin-bottom: 6px;
  }

  /* small screens: stacked */
  @media (max-width: 991px){
    .timeline-spine{ left: 20px; transform: none; }
    .timeline-row{ display:block; margin: 30px 0 30px 50px; }
    .timeline-row .col-left, .timeline-row .col-right, .timeline-row .col-center { width: auto; }
    .timeline-row .col-left, .timeline-row .col-right{ padding: 0; visibility: visible; }
    .timeline-row.left .timeline-card::after, .timeline-row.right .timeline-card::after { display: none; }
    .timeline-dot{ left: 20px; transform: translateX(-50%); }
  }

  /* progress bar wrapper (top-right fixed small) */
  .timeline-progress-ui{
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 40vh;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    z-index: 999;
    display: none; /* hidden on mobile */
  }
  .timeline-progress-ui .fill{
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(14,165,255,0.9), rgba(0,217,126,0.9));
    border-radius: 8px;
    transition: height 150ms linear;
    box-shadow: 0 0 18px rgba(14,165,255,var(--glow-intensity));
  }
  @media(min-width:1200px){
    .timeline-progress-ui{ display: block; }
  }

  /* small helper */
  .text-light { color: #f8f9fa !important; }

  /* Pricing helpers & sticky CTA */
.pricing-card .saving-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(0,200,150,0.08);
  color: #00d97e;
  border: 1px solid rgba(0,200,150,0.12);
}

#stickyCTA { display: none; }
@media (max-width: 767px) {
  #stickyCTA { display: block; }
}


.project-card {
  border-radius: 18px;
  transition: all .35s ease;
  background: rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(6px);
}

.project-card:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(0, 183, 255, 0.35);
}


/* Premium Comparison Section */
.compare-card {
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  transition: 0.35s ease;
}

.compare-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(0,150,255,0.4);
}

.feature-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #bbb;
}

.feature-list i {
  margin-right: 6px;
}

/* Best Choice Badge */
.best-badge {
  background: linear-gradient(45deg, #06d6a0, #00b4d8);
  color: #000;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  right: 20px;
  font-weight: 700;
}

/* Trust Icons */
.trust-icons i {
  opacity: 0.9;
  transition: 0.2s;
}

.trust-icons i:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Conversion Booster Section */
.cb-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: 0.3s ease;
  backdrop-filter: blur(6px);
}

.cb-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.cb-proof-card {
  background: linear-gradient(135deg, rgba(20,20,20,0.9), rgba(10,10,10,0.8));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(0,0,0,0.5);
}

.live-feed-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.feed-item {
  color: #bbb;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px dotted rgba(255,255,255,0.08);
}

.feed-item:last-child {
  border-bottom: none;
}
/* Live auto-scroll feed */
.live-feed-box {
  height: 140px;
  overflow: hidden;
  position: relative;
}

.live-feed-inner {
  display: flex;
  flex-direction: column;
  animation: autoScroll 10s linear infinite;
}

.live-feed-box:hover .live-feed-inner {
  animation-play-state: paused;
}

/* scrolling animation */
@keyframes autoScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.feed-item {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: #bbb;
}

/* Achievement Feed */
.achievement-box {
  height: 180px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.achievement-inner {
  display: flex;
  flex-direction: column;
  animation: achieScroll 11s linear infinite;
}

.achievement-box:hover .achievement-inner {
  animation-play-state: paused;
}

@keyframes achieScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.achievement-item {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #ccc;
}
/* Live Online Users Counter */
.online-users-box {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(0,255,128,0.08);
  border: 1px solid rgba(0,255,128,0.25);
  border-radius: 30px;
  gap: 10px;
  backdrop-filter: blur(4px);
}

.online-text {
  color: #8cffb7;
  font-weight: 600;
  font-size: 1rem;
}

.online-dot {
  width: 12px;
  height: 12px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 12px #00ff88;
  animation: glowPulse 1.8s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
/* Recent Purchase Popup */
.purchase-popup {
  position: fixed;
  left: 20px;
  bottom: -80px;
  z-index: 99999;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 18px;
  border-radius: 12px;
  color: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease-in-out;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.purchase-popup.show {
  bottom: 100px;
  opacity: 1;
  visibility: visible;
}

.popup-inner {
  display: flex;
  align-items: center;
  font-size: .95rem;
}
/* Quiz modal */
.quiz-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.quiz-box {
  width: 95%;
  max-width: 420px;
  background: rgba(30,30,30,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 0 28px rgba(0,0,0,0.4);
}

.quiz-result {
  padding: 10px;
  background: rgba(0,255,128,0.08);
  border: 1px solid rgba(0,255,128,0.3);
  border-radius: 6px;
}
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

.exit-box {
  width: 95%;
  max-width: 420px;
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 28px rgba(0,0,0,0.55);
}
.viewing-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9df5c9;
  font-size: 0.85rem;
}

.viewing-indicator .dot {
  width: 8px;
  height: 8px;
  background: #00ff99;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff99;
  animation: pulseDot 1.6s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
  100% { opacity: 1; transform: scale(1); }
}
.urgent-timer {
  color: #ff8a8a;
  font-weight: bold;
  font-size: 30px;
}
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(3px);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

.exit-box {
  width: 95%;
  max-width: 420px;
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 28px rgba(0,0,0,0.55);
  position: relative;
}

/* Close button */
.exit-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}
.exit-close-btn:hover {
  background: rgba(255,255,255,0.2);
}
/* SPIN POPUP */
.spin-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: center;
}

.spin-box {
  width: 90%;
  max-width: 420px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 25px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
  animation: popIn 0.45s ease;
}

@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Close */
.spin-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* Wheel */
.wheel-container {
  width: 260px;
  height: 260px;
  position: relative;
}

.wheel-img {
  width: 100%;
  transition: transform 4s cubic-bezier(.17,.67,.12,1.02);
}

.wheel-pointer {
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid #ffdd55;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

/* Result message */
.spin-result {
  font-size: 1.2rem;
  color: #22c55e;
  font-weight: bold;
  display: none;
}
/* ============================= */
/* 10X Premium Footer Style      */
/* ============================= */

.footer-10x {
  background: #0b0f19;
  position: relative;
  overflow: hidden;
}

/* Soft gradient glow */
.footer-10x::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0,122,255,0.15), transparent 70%);
  top: -50px;
  right: -50px;
  filter: blur(60px);
}

/* Footer links */
.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .3s ease, transform .2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* Social icons */
.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  transition: background .3s, transform .3s;
}

.footer-social:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* Newsletter */
.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px 0 0 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  outline: none;
}

.footer-newsletter button {
  padding: 10px 16px;
  border-radius: 0 10px 10px 0;
  border: none;
  background: var(--accent);
  color: #000;
  cursor: pointer;
  transition: opacity .3s;
}

.footer-newsletter button:hover {
  opacity: 0.85;
}

/* Badges */
.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-item {
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.support-bubble {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  cursor: pointer;
  color: #000;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
  /* z-index: 9999; */
  transition: .3s;
}

.support-bubble:hover {
  transform: scale(1.1);
}


/* ================================ */
/* 10X GLOBAL HEADER (Glass + Glow) */
/* ================================ */

.header-10x {
  background: rgba(11,15,25,0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease, box-shadow .3s ease;
  padding: 14px 0;
}

.header-10x.scrolled {
  background: rgba(11,15,25,0.9);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

/* Nav links */
.header-10x .nav-link {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color .2s ease, transform .2s ease;
}

.header-10x .nav-link:hover,
.header-10x .nav-link.active {
  color: #fff;
  transform: translateY(-2px);
}

/* Dropdown styling */
.header-10x .dropdown-menu {
  border-radius: 12px;
  background: rgba(30,41,59,0.95);
  border: 1px solid rgba(255,255,255,0.05);
}

.header-10x .dropdown-item {
  color: rgba(255,255,255,0.8);
  padding: 10px 16px;
}

.header-10x .dropdown-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* CTA Button */
.header-10x .btn-glow {
  box-shadow: 0 0 12px rgba(0, 132, 255, 0.45);
  transition: .3s;
}

.header-10x .btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 132, 255, 0.6);
}

/* HERO SEARCH */
.help-search-box {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: 12px;
  display: flex;
}
.help-search-box input {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
}
.help-search-box button {
  border: none;
  background: #0ea5e9;
  color: #000;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 20px;
}

/* CATEGORY CARDS */
.hc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}
.hc-card:hover {
  transform: translateY(-6px);
  border-color: #0ea5e9;
}
.hc-icon {
  font-size: 35px;
  color: #0ea5e9;
  margin-bottom: 12px;
}

/* FAQ */
.faq-item {
  background: #111623;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: 0.3s;
}
.faq-item:hover {
  border-color: #0ea5e9;
}

/* CONTACT BOX */
.contact-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating CTA */
.floating-help-cta {
  position: fixed;
  right: 20px;
  bottom: 25px;
  background: #0ea5e9;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  color: #000;
  box-shadow: 0 0 18px rgba(0, 186, 255, 0.4);
  cursor: pointer;
  z-index: 9999;
  transition: 0.3s;
}
.floating-help-cta:hover {
  transform: translateY(-4px);
}


/* Hero Badge */
.tc-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 14px;
  color: #0ea5e9;
}

/* Terms Box */
.tc-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

/* CTA Section */
.tc-cta {
  background: linear-gradient(120deg, #0ea5e9 0%, #0679c0 100%);
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(14,165,233,0.4);
}
.tc-cta p {
  color: rgba(255,255,255,0.8);
}


/* PRIVACY Hero Badge */
.pp-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 14px;
  color: #0ea5e9;
}

/* Privacy Box */
.pp-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

/* CTA */
.pp-cta {
  background: linear-gradient(120deg, #0ea5e9 0%, #0679c0 100%);
  border-radius: 18px;
  box-shadow: 0 0 20px rgba(14,165,233,0.4);
}
.pp-cta p {
  color: rgba(255,255,255,0.8);
}
#cpa_support{
  display:none !important
}