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

:root {
  --primary: #00e5ff;     /* cyan */
  --secondary: #5b7cfa;   /* soft blue */
  --accent: #8b5cf6;      /* violet */
  --accent-2: #22c55e;    /* green hint */

  --dark: #0b1020;
  --darker: #050816;
  --light: #eef1ff;
  --muted: #9aa4c7;
  
}


body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
color: var(--light);
line-height: 1.6;
overflow-x: hidden;
}

/* Navbar */
nav {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(10, 14, 39, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 212, 255, 0.1);
z-index: 1000;
transition: all 0.3s ease;
}

nav.scrolled {
background: rgba(10, 14, 39, 0.98);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
font-size: 1.8rem;
font-weight: bold;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.5rem;
}

.nav-brand::before {
/* content: "◉"; */
font-size: 2rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-menu {
display: flex;
gap: 2rem;
list-style: none;
align-items: center;
}

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

.nav-menu a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
transition: width 0.3s ease;
}

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

.nav-cta {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--dark);
padding: 0.7rem 1.5rem;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* ===== LOGO BRAND ===== */
.logo-brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-brand img {
  height: 62px;              /* ideal SaaS navbar size */
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Navbar alignment safety */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo-brand img {
    height: 36px;
  }
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
gap: 5px;
}

.hamburger span {
width: 25px;
height: 3px;
background: var(--primary);
transition: all 0.3s ease;
border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 150px 2rem 100px;
  background: linear-gradient(
    135deg,
    var(--darker) 0%,
    #1a1f3a 50%,
    var(--dark) 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}

/* Floating glow blobs (background only) */


/* 🔥 PREMIUM DARK OVERLAY (key addition) */
.hero::marker { display: none; } /* safety reset */

.hero::selection { background: transparent; } /* safety */

.hero::backdrop { display: none; } /* safety */

.hero::placeholder { color: inherit; } /* safety */

/* Dark cinematic overlay */
.hero .hero-overlay {
  display: none;
}

/* Overlay using ::after clone (clean & safe) */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 22, 0.65),
    rgba(5, 8, 22, 0.35),
    rgba(5, 8, 22, 0.65)
  );
  z-index: 2;              /* ABOVE animation */
  pointer-events: none;
}

/* Hero content always on top */
.hero-content {
  max-width: 1000px;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* ------------------------------
   Hero Background Slideshow
-------------------------------- */
.hero-slideshow.diagonal-bands {
  position: absolute;
  inset: -45%;
  transform: rotate(-18deg) translateY(12%);
  transform-origin: center;
  z-index: 1;
}

/* Bands */
.band {
  overflow: hidden;
  line-height: 0;
}

.band-track {
  display: flex;
  gap: 15px;
  width: max-content;
}

.band-track img {
  width: 620px;
  aspect-ratio: 65 / 30;
  object-fit: cover;
  border-radius: 8px;
  position: relative;

  /* Base darkness */
  filter: brightness(0.55) contrast(0.85);

  box-shadow:
    inset 0 0 0 1000px rgba(54, 53, 53, 0.45),
    0 18px 45px rgba(55, 54, 54, 0.6);

  transform: perspective(1000px) rotateX(0deg);
}


/* Tighter vertical stacking */
.band:not(:first-child) {
  margin-top: 8px;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* Mobile optimization for hero background images */
@media (max-width: 768px) {
  .band-track img {
    width: 220px;       /* smaller images */
    border-radius: 5px;
    aspect-ratio: 20 / 18;
  }

  .band-track {
    gap: 2px;           /* tighter spacing */
  }

  .hero-slideshow.diagonal-bands {
    transform: rotate(-18deg) translateY(18%);
  }
}

@media (max-width: 480px) {
  .band-track img {
    width: 220px;       /* very small screens */
    border-radius: 4px;
  }

  .band-track {
    gap: 6px;
  }
}








.hero-badge {
display: inline-block;
background: rgba(0, 212, 255, 0.1);
border: 1px solid var(--primary);
color: var(--primary);
padding: 0.7rem 1.5rem;
border-radius: 50px;
font-size: 0.9rem;
margin-bottom: 2rem;
animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.8; transform: scale(1.05); }
}

.hero h1 {
font-size: clamp(2.5rem, 8vw, 5rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: slideDown 0.8s ease;
}

@keyframes slideDown {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}

.hero p {
font-size: 1.3rem;
font-weight: bold;
color: #fafafe;
margin-bottom: 2rem;
animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
animation: slideUp 0.8s ease 0.4s both;
}

.btn {
padding: 1rem 2.5rem;
border: none;
border-radius: 50px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
text-align: center;
min-width: 150px;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--dark);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
background: transparent;
color: var(--light);
border: 2px solid var(--primary);
}

.btn-secondary:hover {
background: rgba(0, 212, 255, 0.1);
transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(139, 92, 246, 0.18);
}

/* Individual stat card */
.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Activated on scroll */
.stat.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Number styling */
.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;

  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Label */
.stat-label {
  color:#fafafe;
  font-size: 0.9rem;
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hover micro-interaction */
.stat:hover {
  transform: translateY(-6px) scale(1.02);
}
.stat-number.static {
  letter-spacing: 0.08em;
}



/* Sections */
section {
  padding: 100px 0;
  width: 100%;
}
.container {
  max-width: 1680px;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}
.section-title {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 900;
text-align: center;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--light) 0%, var(--primary) 50%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.section-subtitle {
text-align: center;
color: #b8b8cc;
font-size: 1.1rem;
margin-bottom: 4rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

/* Why Choose Section */
/* ===============================
   WHY CHOOSE SECTION – BACKGROUND
   =============================== */

#why-choose {
    position: relative;
    background-image: url("https://i.pinimg.com/originals/1d/30/b5/1d30b5a0c298c02edaf2f501b22a6587.gif");
    background-size: cover;          /* fills section properly */
    background-position: center;     /* keeps it aligned */
    background-repeat: no-repeat;
    background-attachment: fixed;    /* optional: subtle parallax feel */
    padding: 100px 0;
    overflow: hidden;
}

/* Optional dark overlay for readability */
#why-choose::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);  /* adjust darkness if needed */
    z-index: 1;
}

/* Ensure content stays above overlay */
#why-choose .container,
#why-choose .particles {
    position: relative;
    z-index: 2;
}


.why-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.why-card {
  position: relative;
  padding: 2.2rem;
  border-radius: 16px;
  overflow: hidden;

  /* Premium indigo card background */
  background:
    radial-gradient(
      120% 120% at 0% 0%,
      rgba(99, 102, 241, 0.25),
      rgba(17, 24, 64, 0.95) 60%
    ),
    linear-gradient(
      180deg,
      #1a235a 0%,
      #0b1020 100%
    );

  border: 1px solid rgba(99, 102, 241, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 25px 60px rgba(0, 0, 0, 0.45);

  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}
.why-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #6366f1,
    #4f46e5
  );
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 1.4rem;

  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.35);
}

.why-card::after {
  content: '';
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 6rem;
  opacity: 0.04;
  filter: blur(1px);
  pointer-events: none;
}

.why-card:nth-child(1)::after { content: "🏢"; }
.why-card:nth-child(2)::after { content: "⚡"; }
.why-card:nth-child(3)::after { content: "💰"; }
.why-card:nth-child(4)::after { content: "📈"; }
.why-card:nth-child(5)::after { content: "🔒"; }
.why-card:nth-child(6)::after { content: "🏆"; }

/* .why-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
opacity: 0;
transition: opacity 0.3s ease;
} */


.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 35px 80px rgba(99, 102, 241, 0.25);
}
.why-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}



.why-card:hover::before {
opacity: 1;
}

.why-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.why-card p {
  color: #e7e9f1;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Initial hidden state */
.why-card {
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

/* When visible */
.why-card.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Floating animation keyframes */
@keyframes floatCard {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.01);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* Floating effect (after visible) */
.why-card.is-visible {
  animation: floatCard 6s ease-in-out infinite;
}

/* Stagger timing for natural feel */
.why-card:nth-child(1) { animation-delay: 0s; }
.why-card:nth-child(2) { animation-delay: 0.6s; }
.why-card:nth-child(3) { animation-delay: 1.2s; }
.why-card:nth-child(4) { animation-delay: 0.9s; }
.why-card:nth-child(5) { animation-delay: 1.5s; }
.why-card:nth-child(6) { animation-delay: 0.3s; }

/* Section load fade */
#why-choose {
  opacity: 0;
  transform: translateY(20px);
  animation: sectionFadeIn 1s ease forwards;
}

/* Section animation */
@keyframes sectionFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Initial card state (page load) */
.why-card {
  opacity: 0;
  transform: translateY(50px) scale(0.94);
}

/* Loaded state */
.why-card.loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Floating animation (after load) */
.why-card.floating {
  animation: floatCard 6s ease-in-out infinite;
}
.why-card:hover {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.03);
border-color: var(--secondary);
box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}
/* Ripple effect layer */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.35) 0%,
    rgba(99, 102, 241, 0.25) 20%,
    rgba(99, 102, 241, 0.12) 40%,
    transparent 65%
  );
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

/* Ripple animation trigger */
.why-card.ripple::before {
  animation: ripplePulse 1.1s ease-out forwards;
}

/* Ripple keyframes */
@keyframes ripplePulse {
  0% {
    opacity: 0.6;
    transform: scale(0.4);
  }
  60% {
    opacity: 0.25;
    transform: scale(1.15);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}










/* Features Section */

/* ===============================
   INITIAL STATE (HIDDEN)
================================ */
.reveal-card {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(6px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===============================
   REVEALED STATE
================================ */
.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ===============================
   STAGGER (VERY IMPORTANT)
================================ */
.reveal-card:nth-child(1) { transition-delay: 0.1s; }
.reveal-card:nth-child(2) { transition-delay: 0.22s; }
.reveal-card:nth-child(3) { transition-delay: 0.34s; }
.reveal-card:nth-child(4) { transition-delay: 0.46s; }
.reveal-card:nth-child(5) { transition-delay: 0.58s; }



#features {
background: linear-gradient(135deg, #1a1f3a 0%, var(--darker) 100%);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 2rem;
margin-bottom: 5rem;
}

.feature-card {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 212, 255, 0.1);
padding: 1.8rem;
border-radius: 12px;
transition: all 0.3s ease;
cursor: pointer;
}

.feature-card:hover {
background: rgba(0, 212, 255, 0.08);
border-color: var(--secondary);
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.feature-card h4 {
font-size: 1.1rem;
margin-bottom: 0.8rem;
color: var(--light);
}

.feature-card p {
color: #b8b8cc;
font-size: 0.9rem;
line-height: 1.5;
}



/* Image Section */
/* ===============================
   MAIN LAYOUT
================================ */
.image-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;                 /* more breathing space */
    padding: 50px 0;
}

/* ===============================
   LAPTOP CONTAINER
================================ */
.banner-img-slider-area {
    position: relative;
    width: 860px;               /* larger, realistic */
    max-width: 100%;
    flex-shrink: 0;
}

.banner-img img {
    width: 100%;
    display: block;
}

/* ===============================
   SCREEN AREA (FIXED)
================================ */
.banner-slider {
    position: absolute;
    top: 3%;
    left: 11%;
    width: 78%;
    height: 82%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;

    /* realism */
    box-shadow: inset 0 0 25px rgba(0,0,0,0.8);
}

/* Swiper full fill */
.banner-slider .swiper,
.banner-slider .swiper-wrapper,
.banner-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

/* ===============================
   IMAGE FIT (IMPORTANT FIX)
================================ */
.img-area {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 2px;              /* prevents edge touching */
}

.img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* ✅ NO CROPPING */
    animation: softZoom 7s ease-in-out infinite;
}

/* Subtle premium motion */
@keyframes softZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* ===============================
   TEXT BLOCK
================================ */
/* .image-text {
    max-width: 520px;
}

.image-text h3 {
    font-size: 30px;
    margin-bottom: 16px;
}

.image-text p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 12px;
}

.features-list li {
    margin-bottom: 10px;
} */

/* ===============================
   RESPONSIVE (STACK PROPERLY)
================================ */
@media (max-width: 1024px) {
    .image-section {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .image-text {
        max-width: 100%;
    }
}



/* Image Section */
.image-section2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
margin-bottom: 5rem;
}

.image-section2 img {
width: 100%;
border-radius: 15px;
border: 1px solid rgba(0, 212, 255, 0.2);
transition: all 0.3s ease;
}

.image-section2 img:hover {
transform: scale(1.02);
border-color: var(--primary);
box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.image-text h3 {
font-size: 2rem;
margin-bottom: 1rem;
background: linear-gradient(135deg, var(--light) 0%, var(--primary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.image-text p {
color: #b8b8cc;
margin-bottom: 1.5rem;
font-size: 1rem;
}

/* ===============================
   RESPONSIVE – IMAGE SECTION 2
================================ */

/* Tablets & below */
@media (max-width: 1024px) {
    .image-section2 {
        gap: 2rem;
    }

    .image-text h3 {
        font-size: 1.7rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .image-section2 {
        grid-template-columns: 1fr;   /* stack */
        text-align: center;
        margin-bottom: 4rem;
    }

    /* Move image above text if needed */
    .image-section2 img {
        order: -1;                   /* image first */
        max-width: 90%;
        margin: 0 auto;
    }

    .image-text h3 {
        font-size: 1.6rem;
    }

    .image-text p {
        font-size: 0.95rem;
    }

    .features-list {
        text-align: left;            /* keeps list readable */
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .image-text h3 {
        font-size: 1.45rem;
    }

    .image-text p {
        font-size: 0.9rem;
    }

    .image-section2 img {
        border-radius: 12px;
    }
}

/* Pricing Section */
#pricing {
background: linear-gradient(135deg, var(--darker) 0%, #1a1f3a 100%);
}

.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.pricing-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 2px solid rgba(0, 212, 255, 0.1);
padding: 2.5rem;
border-radius: 15px;
transition: all 0.3s ease;
position: relative;
}

.pricing-card.featured {
border-color: var(--primary);
background: rgba(0, 212, 255, 0.08);
transform: scale(1.05);
}

.pricing-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
color: var(--dark);
padding: 0.5rem 1.5rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: bold;
}

.pricing-card h3 {
font-size: 1.8rem;
margin-bottom: 0.5rem;
color: var(--light);
}

.pricing-desc {
color: #b8b8cc;
margin-bottom: 1.5rem;
font-size: 0.9rem;
}

.price {
font-size: 2.5rem;
font-weight: bold;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 2rem;
}

.price-period {
color: #b8b8cc;
font-size: 0.9rem;
}

.features-list {
list-style: none;
margin-bottom: 2rem;
}

.features-list li {
color: #b8b8cc;
padding: 0.8rem 0;
border-bottom: 1px solid rgba(0, 212, 255, 0.05);
font-size: 0.95rem;
}

.features-list li::before {
content: "✓ ";
color: var(--primary);
font-weight: bold;
margin-right: 0.5rem;
}

.pricing-card:hover {
box-shadow: 0 30px 60px rgba(0, 212, 255, 0.3);
transform: translateY(-10px) scale(1.05);
}

/* Support Section */
#support {
background: linear-gradient(135deg, #1a1f3a 0%, var(--darker) 100%);
}

.support-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.support-card {
text-align: center;
padding: 2rem;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(0, 212, 255, 0.1);
border-radius: 15px;
transition: all 0.3s ease;
}

.support-card:hover {
background: rgba(0, 212, 255, 0.08);
border-color: var(--secondary);
transform: translateY(-10px);
}

.support-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.support-card h3 {
font-size: 1.3rem;
margin-bottom: 1rem;
color: var(--light);
}

.support-card p {
color: #b8b8cc;
font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
text-align: center;
padding: 4rem 2rem;
border-radius: 20px;
margin: 5rem 0;
}

.cta-section h2 {
color: var(--dark);
font-size: 2.5rem;
margin-bottom: 1rem;
}

.cta-section p {
color: rgba(10, 14, 39, 0.8);
font-size: 1.1rem;
margin-bottom: 2rem;
}

.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.cta-buttons .btn {
background: var(--dark);
color: var(--primary);
border: 2px solid var(--dark);
}

.cta-buttons .btn:hover {
background: transparent;
color: var(--dark);
}

/* ===============================
   PREMIUM FOOTER UPGRADE
================================ */

footer {
    position: relative;
    background: linear-gradient(
        180deg,
        rgba(10,14,39,0.95),
        rgba(6,10,28,1)
    );
    border-top: 1px solid rgba(0, 212, 255, 0.18);
    padding: 4rem 2rem 1.2rem;
    overflow: hidden;
}

/* subtle top glow */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,212,255,0.6),
        transparent
    );
}

/* ===============================
   FOOTER CONTENT GRID
================================ */

.footer-content {
    max-width: 1380px;
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.8rem;
}

/* ===============================
   SECTION HEADINGS
================================ */

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #eaf6ff;
    margin-bottom: 1.2rem;
    position: relative;
}

.footer-section h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 36px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--primary),
        transparent
    );
}

/* ===============================
   TEXT & LINKS
================================ */

.footer-section p {
    color: #b8b8cc;
    line-height: 1.7;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    color: #b8b8cc;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
}

.footer-section ul li a {
    color: #b8b8cc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

/* ===============================
   SOCIAL ICONS (PREMIUM)
================================ */

.social-links {
    display: flex;
    gap: 14px;
    margin-top: 1.4rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.12);
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.1rem;
    transition: 
        background 0.3s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,212,255,0.35);
}

/* ===============================
   CONTACT LIST STYLE
================================ */

.footer-section ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.98rem;
}

/* ===============================
   FOOTER BOTTOM
================================ */

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.12);
    padding-top: 1.6rem;
    font-size: 0.95rem; 
    color: #8b8ba7;
}

.footer-bottom a {
    color: #9fdfff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
.footer-section {
    animation: footerFadeUp 0.8s ease forwards;
}
/* Contact icons styling */
.footer-section ul li i {
    color: var(--primary);
    font-size: 1rem;
    margin-right: 10px;
    min-width: 18px;
}
.footer-section ul li a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
    text-decoration: underline;
}


@keyframes footerFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer logo */
.footer-logo img {
    max-width: 180px;          /* adjust if needed */
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

/* Center logo on small screens */
@media (max-width: 768px) {
    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
}
.footer-logo img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo img:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(0,212,255,0.35));
}

/* ===============================
   RESPONSIVE POLISH
================================ */

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.2rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .social-links {
        justify-content: flex-start;
    }
}


/* Responsive */
@media (max-width: 768px) {
.nav-menu {
    gap: 1rem;
}

.nav-menu a {
    font-size: 0.85rem;
}

.hamburger {
    display: flex;
}

.nav-menu {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    background: rgba(10, 14, 39, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-menu.active {
    max-height: 400px;
    padding: 2rem 0;
}

.hero {
    padding: 120px 1rem 50px;
}

.image-section {
    grid-template-columns: 1fr;
}

.pricing-card.featured {
    transform: scale(1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1);
}

.hero-buttons {
    flex-direction: column;
}

.btn {
    width: 100%;
}
}

@media (max-width: 480px) {
.section-title {
    font-size: 1.8rem;
}

.hero h1 {
    font-size: 2rem;
}

.nav-container {
    padding: 0.8rem 1rem;
}

.nav-brand {
    font-size: 1.3rem;
}

.hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-number {
    font-size: 1.8rem;
}
 .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}









/* ===== ONE-TIME FLIP (2s) ===== */
.card-flip {
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-flip.active {
  opacity: 1;
  animation: flipOnce 4s cubic-bezier(.23,1,.32,1) forwards;
}


@keyframes flipOnce {
  0% {
    transform: perspective(1200px) rotateY(-90deg);
  }

  60% {
    transform: perspective(1200px) rotateY(10deg);
  }

  100% {
    transform: perspective(1200px) rotateY(0deg);
  }
}



.card-throw {
  opacity: 0;
  transform: translateY(80px) rotateX(25deg) scale(0.96);
  transition:
    transform 3s cubic-bezier(.22,1,.36,1),
    opacity 0.8s ease;
}

.card-throw.active {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}







/* ===== HEADING REVEAL ===== */
.reveal-heading {
  opacity: 0;
  transform: translateY(24px);
  letter-spacing: 0.08em;
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(.23,1,.32,1),
    letter-spacing 0.9s ease;
}

.reveal-heading.active {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: normal;
}

/* ===== PARAGRAPH REVEAL ===== */
.reveal-text {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-heading,
  .reveal-text {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}










/* ===== TYPEWRITER BASE ===== */
.type-heading,
.type-text {
  visibility: hidden;
}

.typing::after {
  content: "|";
  margin-left: 3px;
  animation: blink 1s infinite;
  color: #00d4ff;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}




/* ===== PREMIUM BOUNCE HEADING ===== */
.bounce-heading {
  opacity: 0;
  transform: translateY(60px) scale(0.92);
}

.bounce-heading.active {
  opacity: 1;
  animation: premiumBounce 1.2s cubic-bezier(.34,1.56,.64,1) forwards;
}


@keyframes premiumBounce {
  0% { transform: translateY(60px) scale(0.92); }
  60% { transform: translateY(-8px) scale(1.02); }
  80% { transform: translateY(4px) scale(0.99); }
  100% { transform: translateY(0) scale(1); }
}








/* ===============================
   BACK TO TOP BUTTON
================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #4ddfff);
    color: var(--dark);
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease;
    z-index: 999;
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover effect */
#backToTop:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 212, 255, 0.6);
}

/* Mobile adjustment */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

