 h1 h2 h3 {
    font-size: 3rem;
 }
 
 
 
 
 :root{
    --accent1: #22d3ee;
    --accent2: #06b6d4;
    --bg: #07070a;
    --bar-height: 4px;
    --bar-z: 99999;
    --tick-height: 10px;
    --pulse-scale: 1.15;
    --max-width: 1200px;
  }
  *{box-sizing:border-box}
  html,body{height:100%; margin:0; font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif; background:#08080a; color:#fff}

#premiumProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 99999;
  pointer-events: none;
}

.progress-bg {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(270deg, #00c6ff, #0072ff, #22d3ee, #00c6ff);
  background-size: 800% 100%;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(0,198,255,0.6), 0 0 12px rgba(34,211,238,0.4);
  animation: flow 3s linear infinite;
  transform-origin: left;
  transition: width 0.2s ease-out;
}

/* moving gradient effect */
@keyframes flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}



    /* -------------------------
       Variables & Base
       ------------------------- */
    :root{
      --black: #000000;
      --bg-translucent: rgba(0,0,0,0.18);
      --bg-solid: #000000;
      --white: #ffffff;
      --muted: #bfc8d6;
      --accent: #22d3ee;
      --accent-dark: #06b6d4;
      --glass: rgba(255,255,255,0.03);
      --radius: 12px;
      --nav-height: 68px;
      --dropdown-delay: 700; /* ms before closing on leave */
      --shadow: 0 8px 30px rgba(2,6,23,0.6);
      --max-width: 1200px;
    }
    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      background: #08080a;
      color:var(--white);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.4;
    }

    /* -------------------------
       NAVBAR: layout & styles (grid: left - center - right)
       ------------------------- */
    /* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  width: 0%;
  z-index: 10000; /* must be higher than navbar */
  transition: width 0.25s ease-out;
}

/* Navbar wrapper */
.nav-wrap {
  position: fixed;
  top: 0px; /* shifted down so progress bar is visible above */
  z-index: 9999;
  width: 100%;
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
  background: var(--bg-translucent);
  backdrop-filter: blur(6px) saturate(120%);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.nav {
  height: 110px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.nav-wrap.scrolled {
  background: rgba(0, 0, 0, 0.6);  /* semi-transparent black */
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%); /* for Safari */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

/* logo (left column) */
    .brand {
      display:flex; align-items:center; gap:12px; user-select:none;
      justify-self:start;
      margin-top: 14px
    }
    .brand .logo {
      width:40px; height:40px; border-radius:8px; margin-top: 14px;
      background:linear-gradient(135deg,var(--accent), var(--accent-dark));
      box-shadow:0 6px 20px rgba(34,211,238,0.12), inset 0 -4px 8px rgba(0,0,0,0.35);
    }
    .brand .title { font-weight:800; letter-spacing: .6px; color:var(--white) }

    /* center nav (center column) */
    .nav-center { justify-self:center; display:flex; align-items:center; gap:28px; }
    ul.menu { list-style:none; margin:0; padding:0; display:flex; gap:6px; align-items:center; }
    ul.menu > li { position: relative; }

    /* link base */
    .nav a, .nav button.link-like {
      position: relative;
      display:inline-flex; align-items:center; gap:8px;
      text-decoration:none; color:var(--muted); padding:8px 12px; border-radius:6px;
      font-weight:600; font-size:0.95rem; background:transparent; border:0; cursor:pointer;
      transition: color .22s ease, transform .18s cubic-bezier(.2,.9,.2,1);
    }

    /* advanced hover: slight lift + underline slide in */
    .nav a::after, .nav button.link-like::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      height: 2px;
      bottom: 8px;
      background: linear-gradient(90deg,var(--accent), var(--accent-dark));
      transform-origin: left center;
      transform: scaleX(0);
      opacity: 0;
      transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .22s ease;
      border-radius:2px;
    }
    .nav a:hover, .nav button.link-like:hover { color:var(--white); transform: translateY(-3px); }
    .nav a:hover::after, .nav button.link-like:hover::after { transform: scaleX(1); opacity:1; }

    .nav a:focus, .nav button.link-like:focus {
      outline: 2px solid rgba(34,211,238,0.12); outline-offset:4px; color:var(--white)
    }

    /* right actions (right column) */
    .nav-actions{ display:flex; align-items:center; gap:12px; justify-self:end; }

    /* ---------- Dropdown menu styles (fade + scale) ---------- */
    .dropdown { position:relative; }
    .dropdown-menu {
      position:absolute;
      left:0;
      top: calc(100% + 10px);
      min-width:220px;
      background:#000;
      border-radius:10px;
      padding:8px;
      border:1px solid rgba(255,255,255,0.04);
      box-shadow: 0 12px 30px rgba(2,6,23,0.6);
      transform-origin: top left;
      opacity:0;
      transform: scale(.95) translateY(-6px);
      pointer-events:none;
      transition: opacity .32s ease, transform .32s cubic-bezier(.2,.9,.2,1);
      z-index: 60;
      backdrop-filter: blur(6px);
    }
    .dropdown-menu a {
      display:block; padding:10px 12px; color:var(--muted); text-decoration:none; border-radius:8px; font-weight:600;
    }
    .dropdown-menu a:hover, .dropdown-menu a:focus { color:var(--white); background: rgba(255,255,255,0.02) }
    .dropdown.open .dropdown-menu { opacity:1; transform: scale(1) translateY(0); pointer-events:auto; }

    /* ---------- Premium morphing Login/Signup button ---------- */
    .btn-hero {
      position: relative;
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding: 10px 18px;
      border-radius: 999px;
      border: none;
      cursor:pointer;
      background: linear-gradient(90deg, rgba(34,211,238,0.12), rgba(34,211,238,0.06));
      color: var(--white);
      font-weight: 800;
      letter-spacing: .6px;
      overflow: visible;
      transition: transform .28s cubic-bezier(.2,.9,.2,1), box-shadow .28s ease;
      z-index: 80;
    }
    .btn-hero::before {
      content: '';
      position:absolute;
      inset:0;
      border-radius:999px;
      background: linear-gradient(90deg, var(--accent), var(--accent-dark));
      transform: scaleX(.9) translateZ(0);
      opacity:0;
      transition: transform .45s cubic-bezier(.2,.9,.2,1), opacity .28s ease;
      filter: blur(10px);
      z-index: -1;
    }
    .btn-hero .fa-user { font-size:0.95rem }
    .btn-hero:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(34,211,238,0.12), 0 4px 12px rgba(0,0,0,0.5); }
    .btn-hero:hover::before { opacity:1; transform: scaleX(1.08); }
    .btn-hero:focus { outline: 3px solid rgba(34,211,238,0.18); outline-offset: 3px; }

    /* ---------- Hamburger + animated X ---------- */
    .hamburger {
      display:none;
      background:transparent; border:0; color:var(--muted); font-size:1.2rem; cursor:pointer;
      padding:8px; border-radius:8px; position:relative; width:46px; height:46px;
      align-items:center; justify-content:center;
    }
    .hamburger .bar { position:relative; display:block; width:20px; height:2px; background:currentColor; border-radius:2px; transition: transform .28s ease, opacity .28s ease; }
    .hamburger .bar::before, .hamburger .bar::after {
      content:""; position:absolute; left:0; right:0; height:2px; background:currentColor; border-radius:2px; transition: transform .28s ease, top .28s ease, bottom .28s ease;
    }
    .hamburger .bar::before { top:-7px; }
    .hamburger .bar::after { bottom:-7px; }

    .hamburger.open .bar { background: transparent; }
    .hamburger.open .bar::before { transform: translateY(7px) rotate(45deg); }
    .hamburger.open .bar::after { transform: translateY(-7px) rotate(-45deg); }

    .hamburger:focus { outline:2px solid rgba(34,211,238,0.12); outline-offset:3px }

    /* ---------- Mobile menu (animated) ---------- */
    .mobile-menu {
      display:none;
      position: absolute;
      left:0; right:0; top:100%;
      background: linear-gradient(180deg, rgba(0,0,0,0.98), rgba(0,0,0,0.99));
      border-top:1px solid rgba(255,255,255,0.03);
      z-index: 70;
      padding:12px 20px;
      overflow:hidden;
    }
    .mobile-menu.open { display:block; animation: slideDown .32s cubic-bezier(.2,.9,.2,1) both; }
    @keyframes slideDown { from { transform: translateY(-6px); opacity:0 } to { transform: translateY(0); opacity:1 } }

    /* staggered items */
    .mobile-item { opacity:0; transform: translateY(8px) scale(.995); }
    .mobile-menu.open .mobile-item {
      animation: itemIn .36s cubic-bezier(.2,.9,.2,1) forwards;
    }
    @keyframes itemIn { to { opacity:1; transform: translateY(0) scale(1) } }

    /* mobile dropdown inside mobile menu */
    .mobile-menu .dropdown-menu { position: static; transform: none; opacity:1; pointer-events:auto; box-shadow:none; padding:6px 0; background:transparent; border:none; max-height:0; overflow:hidden; transition: max-height .36s cubic-bezier(.2,.9,.2,1), opacity .28s ease; }
    .mobile-menu .dropdown-menu.open { max-height:500px; opacity:1; }

    /* add chevron for mobile toggles (only on small devices) */
    .mobile-toggle { position:relative; width:100%; text-align:left; background:transparent; border:0; color:var(--muted); padding:12px 8px; font-weight:700; font-size:1rem; display:flex; justify-content:space-between; align-items:center; border-radius:8px; }
    .mobile-toggle .chev { transition: transform .28s ease; color:var(--muted) }
    .mobile-toggle.open .chev { transform: rotate(180deg); color:var(--white) }

    .mobile-menu a { display:block; padding:12px 8px; color:var(--muted); text-decoration:none; border-radius:8px; }
    .mobile-menu a:hover { color:var(--white); background: rgba(255,255,255,0.02); }

    /* ---------- Responsive adjustments ---------- */
    @media (max-width: 980px){
      .nav { padding: 0 14px; max-width: 100%; grid-template-columns: auto 1fr auto; }
      .nav-center { display:none; } /* hide center desktop links */
      .hamburger { display:inline-flex; align-items:center; gap:8px; justify-self:start; }
      .nav-actions { gap:8px; justify-self:end; }
      /* move CTA inside mobile menu by hiding the right-side CTA */
      .nav-actions .btn-hero { display:none; }
    }

    @media (max-width:520px){
      .brand .title{ display:none } /* keep logo only on very small */
      .btn-hero { padding: 8px 12px; font-size:0.95rem }
    }







.service-hero {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  align-items:center;
  padding:120px 10%;
  position:relative;
  overflow:hidden;
}

/* Services tag */
.services-tag {
  display:inline-block;
  font-size:0.9rem;
  width: 84px;
  font-weight:600;
  color:cyan;
  background:rgba(0,216,255,0.1);
  padding:4px 12px;
  border-radius:20px;
  margin-bottom:12px;
  opacity:0;
  transform:translateY(20px);
  transition:all 0.6s ease;
}
.services-tag.visible { opacity:1; transform:translateY(0); transition-delay:0s; }

/* Left Content */
.hero-left { display:flex; flex-direction:column; gap:20px; z-index:10; position:relative; }
.hero-left h1, .hero-left p, .cta-btn { opacity:0; transform:translateY(30px); transition: all 0.8s ease; }
.hero-left h1.visible { opacity:1; transform:translateY(0); transition-delay:0.1s; }
.hero-left p.visible { opacity:1; transform:translateY(0); transition-delay:0.3s; }
.cta-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #00d8ff, #00a8d6);
  font-weight: 700;
  color: #0d1117;
  cursor: pointer;
  width: max-content;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 216, 255, 0.5);
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 216, 255, 0.8), 0 0 40px rgba(0, 216, 255, 0.4);
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Optional: animated gradient background on hover for extra premium feel */
.cta-btn:hover {
  background: linear-gradient(135deg, #00d8ff, #00a8d6, #00ffe0);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Right Animated Shapes */
.hero-right { position:relative; display:flex; justify-content:center; align-items:center; }
.shape { position:absolute; border-radius:50%; opacity:0.7; }
.shape1 { width:120px; height:120px; background:cyan; top:10%; left:20%; animation: float1 6s ease-in-out infinite; box-shadow:0 0 20px cyan; }
.shape2 { width:60px; height:60px; background:#00ffcc; top:60%; left:70%; animation: float2 5s ease-in-out infinite; box-shadow:0 0 15px #00ffcc; }
.shape3 { width:150px; height:150px; background:#00a8d6; top:40%; left:50%; animation: float3 7s ease-in-out infinite; box-shadow:0 0 25px #00a8d6; }
.shape4 { width:80px; height:80px; background:linear-gradient(45deg,#00d8ff,#00a8d6); top:25%; left:65%; animation: rotateScale 8s linear infinite; box-shadow:0 0 18px #00d8ff; }

/* Neon lines connecting shapes */
.line { position:absolute; width:2px; height:100px; background:linear-gradient(to bottom,#00d8ff,#00a8d6); opacity:0.6; animation: linePulse 2s infinite alternate; }
.line1 { top:15%; left:25%; transform:rotate(45deg); }
.line2 { top:50%; left:55%; transform:rotate(-30deg); }

/* Floating particles */
.particle { position:absolute; width:6px; height:6px; background:cyan; border-radius:50%; opacity:0.5; animation: particleMove 6s linear infinite; }
.particle:nth-child(1){ top:20%; left:30%; animation-delay:0s; }
.particle:nth-child(2){ top:60%; left:40%; animation-delay:1s; }
.particle:nth-child(3){ top:30%; left:70%; animation-delay:2s; }
.particle:nth-child(4){ top:50%; left:60%; animation-delay:3s; }

/* Animations */
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-20px) rotate(180deg);} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-15px) rotate(360deg);} }
@keyframes float3 { 0%,100%{transform:translateY(0) rotate(0deg);} 50%{transform:translateY(-25px) rotate(180deg);} }
@keyframes rotateScale { 0%,100%{transform:rotate(0deg) scale(1);} 50%{transform:rotate(180deg) scale(1.2);} }
@keyframes linePulse { 0%{opacity:0.4;} 100%{opacity:0.8;} }
@keyframes particleMove { 0%{transform:translateY(0) translateX(0);} 50%{transform:translateY(-30px) translateX(20px);} 100%{transform:translateY(0) translateX(0);} }

/* Responsive for all devices */
@media(max-width:768px){
  .service-hero{ grid-template-columns:1fr; text-align:center; gap:80px; padding:80px 5%; }

  .hero-right { position:relative; width:100%; height:300px; display:block; margin-top:40px; }
.services-tag{
    margin-top: 70px;
}
  /* Scale shapes down and reposition proportionally */
  .hero-right .shape1 { width:70px; height:70px; top:10%; left:15%; box-shadow:0 0 12px cyan; }
  .hero-right .shape2 { width:40px; height:40px; top:55%; left:65%; box-shadow:0 0 10px #00ffcc; }
  .hero-right .shape3 { width:90px; height:90px; top:35%; left:50%; box-shadow:0 0 15px #00a8d6; }
  .hero-right .shape4 { width:50px; height:50px; top:20%; left:70%; box-shadow:0 0 12px #00d8ff; }

  .hero-right .line1 { top:15%; left:25%; width:1.5px; height:60px; }
  .hero-right .line2 { top:50%; left:55%; width:1.5px; height:50px; }

  .hero-right .particle { width:4px; height:4px; }
}








  :root {
    --accent: #00d8ff;
    --white: #ffffff;
  }

  body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #0d1117;
    color: #fff;
  }

  /* Section */
  .services-section {
    max-width: 1200px;
    margin: auto;
    padding: 120px 20px;
    position: relative;
    text-align: center;
  }

  /* Animated Headline */
  .headline {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    background: linear-gradient(90deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    will-change: transform, opacity;
    transition: all 0.6s ease-out;
    margin-right: 6px;
  }

  .headline .word.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .headline .word[data-from="left"] { transform: translateX(-30px); }
  .headline .word[data-from="right"] { transform: translateX(30px); }

  .headline .word[data-from="left"].visible,
  .headline .word[data-from="right"].visible { transform: translateX(0); }

  .services-desc {
    font-size: 1rem;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto 60px auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }

  .services-desc.visible { opacity:1; transform:translateY(0); }

  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
  }

  /* Card */
  .service-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    padding: 40px 25px;
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease;
    position: relative;
  }

  .service-card.visible { opacity:1; transform:translateY(0); }

  /* Card hover */
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,216,255,0.2);
  }

  .service-icon {
    font-family: 'Material Icons';
    font-size: 3rem;
    color: cyan;
    margin-bottom: 20px;
    transition: transform 0.5s ease, color 0.5s ease;
  }

  .service-card:hover .service-icon {
    transform: rotate(15deg) scale(1.2);
    color: #00d8ff;
  }

  .service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
  }

  .service-desc {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .service-btn {
    text-decoration: none;
    color: cyan;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .service-btn::after {
    content:"";
    position: absolute;
    left:0; bottom:-2px;
    width:0;
    height:2px;
    background: cyan;
    transition: all 0.3s ease;
  }

  .service-btn:hover::after { width:100%; }

  /* Animation from different sides */
  .slide-left { transform: translateX(-50px); }
  .slide-right { transform: translateX(50px); }

  /* Responsive */
  @media(max-width:768px){
    .headline { font-size: 2rem; }
    .services-desc { font-size:0.95rem; }
    .service-title { font-size:1.2rem; }
    .service-desc { font-size:0.95rem; }
  }










    body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #0d1117;
    color: #fff;
  }

  /* Section Basics */
  .features-section {
    max-width: 1200px;
    margin: auto;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
  }

  /* Headline */
  .headline {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .headline .word {
    display:inline-block;
    opacity:0;
    transform: translateY(30px);
    background: linear-gradient(90deg, cyan, #fff);
    -webkit-background-clip: text;
    color: transparent;
    transition: all 0.5s ease;
  }

  .headline .word.visible {
    opacity:1;
    transform: translateY(0);
  }

  /* Subheading paragraph */
  .features-desc {
    text-align: center;
    font-size: 1rem;
    color: #bbb;
    max-width: 650px;
    margin: 20px auto 60px auto;
    opacity:0;
    transform: translateY(20px);
    transition: all 0.8s ease;
  }

  .features-desc.visible {
    opacity:1;
    transform: translateY(0);
  }

  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
  }

  /* Feature Card */
  .feature-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    padding: 40px 25px;
    cursor: pointer;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease;
    position: relative;
  }

  .feature-card.visible {
    opacity:1; 
    transform:translateY(0);
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,216,255,0.3);
  }

  /* Icon & Tech Pulse */
  .icon-wrapper {
    position: relative;
    display: inline-block;
  }

  .feature-icon {
    font-family: 'Material Icons';
    font-size: 3rem;
    color: cyan;
    margin-bottom: 20px;
    transition: transform 0.5s ease, color 0.5s ease;
  }

  .feature-card:hover .feature-icon {
    transform: rotate(20deg) scale(1.3);
    color:#00d8ff;
  }

  .icon-tech-pulse {
    position: absolute;
    top:50%;
    left:50%;
    width:60px;
    height:60px;
    background: rgba(0,216,255,0.2);
    border-radius:50%;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s infinite;
    z-index:-1;
  }

  @keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity:0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity:0.3; }
    100% { transform: translate(-50%, -50%) scale(0); opacity:0.6; }
  }

  /* Titles and descriptions */
  .feature-title {
    font-size: 1.4rem;
    font-weight:700;
    margin-bottom: 12px;
    color:#fff;
  }
  .feature-desc {
    font-size:1rem;
    color:#bbb;
    line-height:1.6;
  }

  /* Animation from different sides */
  .slide-left { transform: translateX(-50px); }
  .slide-right { transform: translateX(50px); }

  /* Responsive */
  @media(max-width:768px){
    .headline { font-size:2rem; }
    .features-desc { font-size:0.95rem; }
    .feature-title { font-size:1.2rem; }
    .feature-desc { font-size:0.95rem; }
  }




















  .stats-section {
  max-width: 1200px;
  margin: auto;
  padding: 120px 20px;
  position: relative;
  background: linear-gradient(135deg, #0d1117, #111827);
  border-radius: 20px;
  overflow: hidden;
}

/* Headline */
.headline {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  background: linear-gradient(90deg, cyan, #00d8ff, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.6s ease;
}
.headline .word.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Subtext */
.stats-desc {
  text-align: center;
  color: #bbb;
  max-width: 650px;
  margin: 20px auto 60px auto;
  opacity:0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
  text-align: center;
}

/* Card */
.stat-card {
  background: #1a1a1a;
  padding: 40px 25px;
  border-radius: 20px;
  position: relative;
  opacity:0;
  transform: translateY(40px);
  transition: all 0.6s ease, transform 0.6s ease;
}
.stat-card.visible {
  opacity:1;
  transform: translateY(0);
}
.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0,216,255,0.3), 0 0 20px rgba(0,216,255,0.4);
  border:1px solid #00d8ff;
}

/* Icon */
.stat-icon {
  font-size: 3rem;
  color: cyan;
  margin-bottom: 15px;
  transition: transform 0.6s ease, color 0.6s ease;
}
.stat-card:hover .stat-icon {
  transform: rotate(20deg) scale(1.3);
  color:#00d8ff;
}

/* Number counter */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color:#fff;
  margin-bottom: 10px;
}

/* Title */
.stat-title {
  font-size:1.1rem;
  color:#bbb;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Slide animations */
.slide-left { transform: translateX(-50px); }
.slide-right { transform: translateX(50px); }

/* Responsive */
@media(max-width:768px){
  .headline .word { font-size:1.8rem; }
  .stats-desc { font-size:0.95rem; }
  .stat-number { font-size:2rem; }
  .stat-title { font-size:1rem; }
}




















































































































.footer-section {
  background: #07101a;
  color: #fff;
  padding: clamp(60px,6vw,100px) 20px;
  font-family: 'Inter', sans-serif;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
.footer-logo img {
  width: 160px;
  margin-bottom: 12px;
}
.footer-intro {
  max-width: 300px;
  line-height: 1.6;
  color: #a7b3c7;
}
.footer-policy h4,
.footer-services h4,
.footer-contact h4 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #22d3ee;
}
.footer-policy ul,
.footer-services ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-policy ul li,
.footer-services ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}
.footer-policy a,
.footer-services a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-policy a:hover,
.footer-services a:hover {
  color: #22d3ee;
}
.footer-contact ul li i {
  vertical-align: middle;
  margin-right: 6px;
  color: #22d3ee;
}

/* Bottom row */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  color: #a7b3c7;
  font-size: 0.9rem;
}

/* Animations */
.animate-item { opacity:0; transform: translateY(12px) scale(.995); will-change: transform, opacity; }
.footer-section.play .animate-item { animation-duration: 640ms; animation-fill-mode: both; animation-timing-function: cubic-bezier(.4,0,.2,1); animation-delay: var(--delay,0ms); }
.footer-section.play .animate-item[data-direction="left"]  { animation-name: fromLeft;  }
.footer-section.play .animate-item[data-direction="right"] { animation-name: fromRight; }
.footer-section.play .animate-item[data-direction="bottom"]{ animation-name: fromBottom; }
.footer-section.play .animate-item[data-direction="top"]   { animation-name: fromTop; }

@keyframes fromLeft  { 0%{ opacity:0; transform:translateX(-28px) scale(.995);} 60%{ opacity:1; transform:translateX(6px) scale(1.005);} 100%{ opacity:1; transform:none; } }
@keyframes fromRight { 0%{ opacity:0; transform:translateX(28px) scale(.995);} 60%{ opacity:1; transform:translateX(-6px) scale(1.005);} 100%{ opacity:1; transform:none; } }
@keyframes fromTop   { 0%{ opacity:0; transform:translateY(-28px) scale(.995);} 60%{ opacity:1; transform:translateY(6px) scale(1.005);} 100%{ opacity:1; transform:none; } }
@keyframes fromBottom{0%{ opacity:0; transform:translateY(28px) scale(.995);} 60%{ opacity:1; transform:translateY(-6px) scale(1.005);} 100%{ opacity:1; transform:none; } }

/* Responsive */
@media(max-width:768px){
  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-contact ul li i { display: none; }
}