
 h1 h2 h3 {
    font-size: 3rem;
 }
 
 body * {
    /* outline: 3px solid red; */
    /* margin-left: 10px; */
    
}

 
 
 :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 }
    }






:root{
    --accent: #22d3ee;
    --accent-2: #06b6d4;
    --muted: #a7b3c7;
    --white: #ffffff;
    --bg: #0a0f1f;
    --max-w: 1200px;
    --nav-height: 68px;
  }

  /* Reset & base */
  *{box-sizing:border-box}
  html,body{height:100%; margin:0; background:#08080a; color:var(--white); font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;}
  img{display:block; max-width:100%;}

  /* HERO layout */
  #hero-split { padding: clamp(36px,7vw,84px) 20px; background: linear-gradient(180deg,#07070a 0%, #0a0f1f 100%); margin-top: 40px; }
  .hs-inner { max-width: var(--max-w); margin:0 auto; display: grid; grid-template-columns: 1fr 540px; gap:28px; align-items:center; }
  @media (max-width:980px){
    .hs-inner { grid-template-columns: 1fr; gap:14px; margin-top: 27px; }
    .hs-text { order:1 }
    .hs-media { order:2; margin-left:auto; margin-right:auto; width:100%; }
  }

  /* text */
  .kicker{ display:inline-block; padding:6px 12px; border-radius:999px; background: rgba(34,211,238,0.06); color:var(--accent); font-weight:700; font-size:.9rem; margin-bottom:12px; opacity:0; transform: translateY(8px); }
  .headline{ margin:6px 0; font-weight:800; line-height:1.02; font-size: clamp(28px, 6vw, 52px); display:flex; gap:10px; flex-wrap:wrap; }
  .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; }
  .sub{ color: var(--muted); margin-top:8px; max-width:60ch; font-size: clamp(15px, 2.2vw, 18px); opacity:0; transform: translateY(10px); }
  .hs-ctas { display:flex; gap:12px; margin-top:18px; opacity:0; transform: translateY(10px); }
  @media (max-width:980px){ .hs-ctas { justify-content:center; flex-wrap:wrap } }

  /* center text on small devices (requested) */
  @media (max-width:980px){
    .hs-text, .hs-text * { text-align:center; }
    .headline { justify-content: center; }
  }

  /* STAGE CAROUSEL (no indicators/dots) */
  :root{ --stage-w:540px; --stage-h:360px; }
  .hs-media { width: var(--stage-w); }
  @media (max-width:980px){ .hs-media { width:100%; } :root{ --stage-w:100%; } }

  .carousel-stage { position:relative; height:var(--stage-h); width:var(--stage-w); display:flex; align-items:center; justify-content:center; }
  .arrow{ position:absolute; top:50%; display: none; transform:translateY(-50%); background:rgba(0,0,0,0.55); color:var(--white); border:0; padding:8px 12px; border-radius:10px; cursor:pointer; z-index:40; }
  .prev{ left:-8px } .next{ right:-8px }
  .arrow:focus{ outline:2px solid rgba(34,211,238,0.12); }

  .stage-slides { position:relative; width:100%; height:100%; overflow:visible; display:block; }
  .slide { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; opacity:0; transform: scale(.98) translateY(12px); pointer-events:none; transition: opacity .5s ease, transform .5s cubic-bezier(.2,.9,.2,1); }
  .slide img{ width:100%; height: calc(var(--stage-h) - 56px); object-fit:cover; border-radius:12px; box-shadow: 0 14px 40px rgba(0,0,0,0.6); background:#071224; display:block; }
  .slide figcaption{ color:var(--muted); font-weight:700; margin-top:6px; font-size:0.95rem; }

  .slide-active { opacity:1; transform: scale(1) translateY(0); pointer-events:auto; z-index:30; transition: opacity .5s ease, transform .5s cubic-bezier(.2,.9,.2,1); }
  .slide-exit { opacity:0; transform: scale(.96) translateY(-10px); pointer-events:none; z-index:20; transition: opacity .45s ease, transform .45s cubic-bezier(.2,.9,.2,1); }

  /* Lightbox */
  .lightbox{ position:fixed; inset:0; display:none; align-items:center; justify-content:center; background:rgba(0,0,0,0.85); z-index:99999; }
  .lightbox img{ max-width:92%; max-height:92%; border-radius:10px; box-shadow:0 18px 60px rgba(0,0,0,0.8) }
  .lightbox .lb-close{ position:absolute; top:20px; right:20px; background:transparent; color:var(--white); border:0; font-size:28px; cursor:pointer }

  /* Buttons */
  .btn{ padding:10px 16px; border-radius:999px; font-weight:700; cursor:pointer; border:0; display:inline-flex; gap:10px; align-items:center; }
  .btn.primary{ background:linear-gradient(90deg,var(--accent),var(--accent-2)); color:#03121a; box-shadow:0 10px 30px rgba(34,211,238,0.12); transition:transform .28s; }
  .btn.primary:hover{ transform:translateY(-3px) }
  .btn.ghost{ background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.06) }

  /* reveal helpers */
  .is-visible .kicker, .is-visible .sub, .is-visible .hs-ctas { opacity:1; transform:none; transition: all .45s cubic-bezier(.2,.9,.2,1) }
  .is-visible .kicker { transition-delay:.05s }
  .is-visible .sub    { transition-delay:.30s }
  .is-visible .hs-ctas{ transition-delay:.52s }
  .word-visible { opacity:1 !important; transform:none !important; transition: transform .42s cubic-bezier(.2,.9,.2,1), opacity .32s ease }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce){
    .slide, .slide-active, .slide-exit { transition:none !important; transform:none !important; opacity:1 !important; pointer-events:auto; animation:none !important; }
    .headline .word, .kicker, .sub, .hs-ctas { transition:none !important; opacity:1 !important; transform:none !important; }
    .arrow { display:block }
  }

  /* responsive tweaks */
  @media (max-width:760px){
    :root{ --stage-h:300px; }
    .prev, .next { display:none; } /* hide arrows on small */
  }

  /* services marquee */
  .services-wrap{ margin-top:28px; overflow:hidden; border-top:1px solid rgba(255,255,255,0.03); padding-top:16px; }
  .services-track{ display:flex; gap:14px; align-items:center; width:fit-content; will-change:transform; animation: marquee 18s linear infinite; padding-left:20px; }
  .service{ flex:0 0 auto; padding:8px 14px; border-radius:999px; background: rgba(255,255,255,0.02); color:var(--muted); font-weight:700; border:1px solid rgba(255,255,255,0.02); font-size:clamp(13px,2.2vw,15px); }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @media (max-width:680px){ .services-track{ animation-duration: 12s; } .kicker, .sub, .hs-ctas { text-align:center; } }






   /* ---------- theme vars ---------- */
:root{
  --accent: #22d3ee;
  --accent-2: #06b6d4;
  --muted: #a7b3c7;
  --white: #ffffff;
  --card-bg: rgba(255,255,255,0.02);
  --card-border: rgba(255,255,255,0.03);
  --max-w: 1200px;
}

/* layout */
#services { padding: clamp(48px, 6.5vw, 88px) 20px; color:var(--white);         font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; }
.svc-inner { max-width: var(--max-w); margin:0 auto; display:flex; flex-direction:column; gap:28px; align-items:stretch; }

/* header */
.svc-head { max-width:860px; margin:0 auto 6px; text-align:center; }
.kicker { display:inline-block; padding:6px 12px; border-radius:999px; background: rgba(34,211,238,0.04); color:var(--accent); font-weight:700; margin-bottom:10px; opacity:0; transform: translateY(8px); transition: opacity .42s ease, transform .42s cubic-bezier(.2,.9,.2,1); }
.svc-title { margin:6px 0 8px; font-size: clamp(22px,3.8vw,36px); font-weight:800; letter-spacing:-0.02em; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }
.svc-title .word { opacity:0; transform: translateY(18px); display:inline-block; background: linear-gradient(90deg,var(--white), var(--accent)); -webkit-background-clip:text; background-clip:text; color:transparent; transition: transform .42s cubic-bezier(.2,.9,.2,1), opacity .32s ease; }

/* lead + cta */
.svc-lead { color:var(--muted); font-size: clamp(15px,2.2vw,17px); max-width:70ch; margin:0 auto; opacity:0; transform: translateY(10px); transition: opacity .42s ease, transform .42s cubic-bezier(.2,.9,.2,1); }
.svc-cta { display:flex; gap:12px; justify-content:center; margin-top:6px; opacity:0; transform: translateY(12px); transition: opacity .42s ease, transform .42s cubic-bezier(.2,.9,.2,1); }

/* grid & cards */
.svc-grid { display:grid; gap:20px; margin-top:8px; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
@media (max-width:1100px){ .svc-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width:680px){ .svc-grid{ grid-template-columns: 1fr; } .svc-head { text-align:center; } }

.svc-card {
  background: var(--card-bg); border: 1px solid var(--card-border); padding: 20px 18px; border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.55); transition: transform .36s cubic-bezier(.2,.9,.2,1), box-shadow .36s ease, opacity .36s ease;
  transform-origin: center;
  will-change: transform, opacity;
  display:flex; flex-direction:column; gap:12px;
  opacity:0; pointer-events:none;
  min-height: 190px; /* ensures consistent block shape */
}
.svc-card:hover {
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(10px);
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 18px 45px#0072ff;
  border: 1px solid#06b6d4;
}



/* internal card layout so all cards have consistent footprint */
.svc-top{ display:flex; gap:12px; align-items:center; }
.svc-desc{ margin-top:8px; color:var(--muted); font-size:0.95rem; line-height:1.45; flex:1; } /* flex:1 pushes footer down */
.svc-foot{ margin-top:12px; display:flex; justify-content:flex-start; }
.btn.small{ padding:8px 12px; font-size:0.9rem; border-radius:10px; }

/* Icon / text styles */
.svc-icon { font-size:20px; width:48px; height:48px; display:inline-flex; align-items:center; justify-content:center; border-radius:12px; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); color:var(--accent); box-shadow: inset 0 -4px 10px rgba(0,0,0,0.45); }
.svc-name { font-size:1.05rem; margin:0; font-weight:800; color:var(--white); }

/* entry offsets — cards start offset depending on data-dir */
.svc-card[data-dir="left"]  { transform: translateX(-32px) translateY(10px) scale(.996); }
.svc-card[data-dir="right"] { transform: translateX(32px) translateY(10px) scale(.996); }
.svc-card[data-dir="bottom"]{ transform: translateY(36px) scale(.996); }

/* revealed state (applies to any element we toggle) */
.revealed { opacity:1 !important; transform: none !important; pointer-events:auto !important; transition: transform .6s cubic-bezier(.2,.9,.2,1), opacity .48s ease; }

/* reveal helpers for specific types */
.kicker.revealed { transform: none; opacity:1; }
.word.visible { opacity:1 !important; transform:none !important; }
.svc-lead.revealed { transform:none; opacity:1; }
.svc-cta.revealed { transform:none; opacity:1; }

/* hover lift (only if motion allowed) */
@media (prefers-reduced-motion: no-preference){
  .svc-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: 0 26px 70px rgba(0,0,0,0.6), 0 6px 18px rgba(34,211,238,0.04); }
}

/* small screens: center card content and footer button */
@media (max-width:680px){
  .svc-card{ text-align:center; align-items:center; min-height: auto; }
  .svc-top{ flex-direction:column; gap:8px; }
  .svc-foot{ justify-content:center; }
}








:root{
  --accent:#22d3ee;
  --white:#fff;
  --bg:#07101a;
}

.clients-section{
  background: var(--bg);
  color: var(--white);
  padding: clamp(60px,6vw,100px) 20px;
  overflow:hidden;
}

.clients-header{
  text-align:center;
  margin-bottom:50px;
  opacity:0;
  transform: translateY(-50px);
  transition: all 0.6s ease;
}
.clients-header .kicker{color:var(--accent); font-weight:700; margin-bottom:10px;}
.clients-header .clients-title{font-size:clamp(24px,4vw,36px); margin:0 0 12px 0; font-weight:800;}
.clients-header .clients-lead{color:#a7b3c7; max-width:600px; margin:0 auto;}

/* Carousel */
.clients-carousel-wrapper{
  overflow:hidden;
  width:100%;
}

.clients-track{
  display:flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.client-card{
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding:20px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-right:40px;
  transition: transform 0.3s ease;
}
.client-card img{
  max-width:100%;
  height:auto;
  display:block;
}
.client-card:hover{
  transform: scale(1.1);
}

/* Infinite scroll animation */
@keyframes scroll{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* half because we duplicated the set */
}

/* Responsive */
/* @media(max-width:720px){
  .client-card{ margin-right:20px; }
} */












:root{
    --accent:#22d3ee;
    --accent-hover:#06b6d4;
    --white:#fff;
    --muted:#a7b3c7;
    --bg:#07101a;
    --glass: rgba(255,255,255,0.05);
  }

  .premium-stats{
    padding:clamp(60px,6vw,100px) 20px;
    background:var(--bg);
    color:var(--white);
    overflow:hidden;
  }

  .container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:60px;
  }

  /* ===== Animated Connected Bubbles ===== */
  .bubbles-wrapper{
    display:flex;
    justify-content:center;
    gap:-40px; /* overlap bubbles */
    flex-wrap:wrap;
    position:relative;
  }

  .bubbles {
  display:flex; justify-content:center; align-items:center; gap:20px; flex-wrap:wrap; position:relative;
}
.bubble {
  width: 120px; height: 120px; border-radius:50%; background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px); display:flex; flex-direction:column; align-items:center; justify-content:center;
  color:white; font-weight:700; font-size:0.9rem; text-align:center; cursor:pointer;
  transform: scale(0); opacity:0;
  transition: transform 0.8s cubic-bezier(.2,.9,.2,1), opacity 0.8s ease-out;
}
.bubble i {
  font-size:1.6rem; margin-bottom:6px; transition: transform 0.3s ease, color 0.3s ease;
}
.bubble:hover i {
  transform: scale(1.3) rotate(15deg);
  color:#06b6d4;
}


  /* ===== Features Grid ===== */
  .features-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
  }

  .feature-card{
    background: var(--glass);
    backdrop-filter: blur(12px);
    padding:20px;
    border-radius:16px;
    display:flex;
    flex-direction:column;
    gap:12px;
    text-align:center;
    opacity:0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .feature-card i{
    font-size:2rem;
    color:var(--accent);
    transition: transform 0.4s ease, color 0.4s ease;
  }

  .feature-card:hover i{
    transform: scale(1.3) rotate(10deg);
    color: var(--accent-hover);
  }

  .feature-card h4{
    margin:0;
    font-size:1.1rem;
  }

  .feature-card p{
    margin:0;
    font-size:0.9rem;
    color:var(--muted);
  }

  /* ===== Labels Grid ===== */
  .labels-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
  }

  .label-card {
  display: flex;
  align-items: center; /* icon + text inline */
  gap: 8px; /* spacing between icon and text */
  padding: 12px 18px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.label-card i {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s ease, color 0.3s ease;
}

.label-card:hover i {
  transform: scale(1.3) rotate(15deg);
  color: var(--accent-hover);
}


  /* Responsive */
  @media(max-width:720px){
    .bubble{ width:100px; height:100px; font-size:0.9rem;}
    .bubble i{ font-size:1.6rem; }
  }








  :root{
  --accent:#22d3ee;
  --accent-hover:#06b6d4;
  --white:#fff;
  --bg:#07101a;
  --glass: rgba(255,255,255,0.05);
}

.projects-section{
  background: var(--bg);
  color: var(--white);
  padding: clamp(60px,6vw,100px) 20px;
}
.projects-header{
  text-align:center;
  margin-bottom:40px;
  opacity:0;
  transform: translateY(-50px);
  transition: all 0.6s ease;
}
.projects-header .kicker{
  display:inline-block;
  color: var(--accent);
  font-weight:700;
  margin-bottom:10px;
}
.projects-header .projects-title{
  font-size: clamp(24px,4vw,36px);
  margin:0 0 12px 0;
  font-weight:800;
}
.projects-header .projects-lead{
  color: #a7b3c7;
  max-width:600px;
  margin:0 auto;
}

/* Grid */
.projects-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

/* Card */
.project-card{
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  opacity:0;
  transform: translateY(50px);
  transition: all 0.6s ease;
  text-align:center;
}
.project-card img{
  width:100%;
  height:auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display:block;
}
.project-card h4{
  margin:12px 0;
}

/* Modal */
.project-modal{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.85);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}
.project-modal.show{
  opacity:1;
  pointer-events:auto;
}
.project-modal .modal-content{
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align:center;
}
.project-modal .modal-img{
  width:100%;
  max-height:70vh;
  object-fit: cover;
  border-radius:12px;
}
.modal-indicators{
  display:flex;
  justify-content:center;
  margin-top:8px;
  gap:8px;
}
.modal-indicators span{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#aaa;
  cursor:pointer;
  transition: all 0.3s ease;
}
.modal-indicators span.active{
  background: var(--accent);
}
.close-btn, .prev-btn, .next-btn{
  position:absolute;
  background: rgba(255,255,255,0.1);
  color:#fff;
  border:none;
  padding:10px;
  border-radius:50%;
  cursor:pointer;
  font-size:24px;
  transition: all 0.3s ease;
}
.close-btn{ top:-20px; right:-20px; }
.prev-btn{ top:50%; left:-50px; transform:translateY(-50%); }
.next-btn{ top:50%; right:-50px; transform:translateY(-50%); }
.close-btn:hover, .prev-btn:hover, .next-btn:hover{
  background: var(--accent);
  color:#000;
}

/* Responsive */
@media(max-width:720px){
  .projects-grid{ grid-template-columns:1fr; }
  .prev-btn{ left:10px; }
  .next-btn{ right:10px; }
}








.testimonials-section{background:#07101a; color:#fff; padding:clamp(60px,6vw,100px) 20px;}
.testimonials-header{text-align:center; margin-bottom:50px; opacity:0; transform:translateY(-50px); transition:all 0.6s ease;}
.testimonials-header .kicker{color:#22d3ee; font-weight:700; margin-bottom:10px;}
.testimonials-header .testimonials-title{font-size:clamp(24px,4vw,36px); margin:0 0 12px 0; font-weight:800;}
.testimonials-header .testimonials-lead{color:#a7b3c7; max-width:600px; margin:0 auto;}

/* Carousel */
.testimonials-carousel-wrapper{overflow:hidden; position:relative;}
.testimonials-carousel{display:flex; gap:30px; animation:testimonial-slide 20s linear infinite;}
.testimonial-card{background: rgba(34,211,238,0.05); backdrop-filter:blur(16px); border-radius:24px; flex-shrink:0; padding:40px; min-width:350px; max-width:380px; position:relative; opacity:0; transform:translateY(60px); transition: all 0.8s ease; box-shadow:0 8px 24px rgba(0,0,0,0.4);}
.testimonial-topbar{display:flex; justify-content:flex-start; gap:10px; margin-bottom:14px;}
.pin{width:14px; height:14px; background:#22d3ee; border-radius:50%; box-shadow:0 0 10px #22d3ee; animation:pinPulse 2s infinite;}
.testimonial-stars{color:#22d3ee; font-size:1.3rem; margin-bottom:14px; letter-spacing:1px;}
.testimonial-text{font-size:1.05rem; line-height:1.6; margin-bottom:22px;}
.testimonial-profile{display:flex; align-items:center; gap:16px;}
.profile-circle{width:60px; height:60px; border-radius:50%; background:#22d3ee; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:1.3rem; color:#000; box-shadow:0 4px 12px rgba(34,211,238,0.6);}
.profile-info h4{margin:0; font-size:1.1rem; font-weight:700;}
.profile-info span{font-size:0.9rem; color:#a7b3c7;}

@keyframes testimonial-slide{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}
@keyframes pinPulse{0%,100%{transform:scale(1);}50%{transform:scale(1.3);}}
@media(max-width:720px){.testimonials-carousel{gap:20px;}.testimonial-card{min-width:300px;}}







:root{
    --pkg-bg: #203162;
    --card-bg: #ffffff;
    --accent: #00aaff;
    --muted-white: rgba(255,255,255,0.95);
    --muted-white-2: rgba(255,255,255,0.85);
    --maxw: 1200px;
  }

  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

  .packages-section {
    background: var(--pkg-bg);
    color: var(--muted-white);
    padding: clamp(48px, 8vw, 96px) 0;
  }

  .packages-inner { text-align: center; max-width: 1100px; margin: 0 auto; }

  .packages-title {
    font-size: clamp(1.8rem, 4.4vw, 2.8rem);
    margin: 0 0 8px;
    font-weight: 900;
    color: #ffffff;
  }

  .packages-sub {
    margin: 0 0 28px;
    color: var(--muted-white-2);
    font-weight: 700;
    letter-spacing: .02em;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
  }

  /* grid of cards */
  .packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(18px, 3.5vw, 28px);
    margin-top: 18px;
    align-items: start;
    align-content: start;
  }

  .pkg-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.04));
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    color: #072043;
    box-shadow: 0 22px 60px rgba(4,10,30,0.45);
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s ease;
    display:flex;
    flex-direction:column;
    min-height: 420px;
    position: relative;
  }

  .pkg-card:focus { outline: 3px solid rgba(255,255,255,0.08); outline-offset: 6px; }

  .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 30px 100px rgba(4,10,30,0.55); }

  /* featured card styling */
  .pkg-card.featured {
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
    transform: translateY(-6px);
    border: 1px solid rgba(255,255,255,0.06);
  }

  .pkg-head { display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom: 12px; }
  .pkg-price { font-weight: 900; color: #fff; background: rgba(255,255,255,0.06); padding:8px 12px; border-radius: 999px; font-size: 1rem; }
  .pkg-price span { font-size:1.6rem; color: var(--accent); margin-left:6px; font-weight:900; }
  .pkg-name { margin: 0; font-size: 1.25rem; color: #fff; font-weight:800; }

  .pkg-features { margin: 10px 0 16px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; color: rgba(255,255,255,0.95); }
  .pkg-feature { font-weight:700; font-size: .98rem; background: rgba(255,255,255,0.02); padding: 10px 12px; border-radius: 10px; }

  .pkg-cta { margin-top: auto; display:flex; gap:10px; align-items:center; }
  .pkg-btn {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 16px; border-radius: 999px; text-decoration:none; font-weight:800;
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.12);
    transition: background .28s ease, color .28s ease, transform .18s ease;
  }
  .pkg-btn:focus { outline: 3px solid rgba(255,255,255,0.08); outline-offset: 4px; }
  .pkg-btn:hover { background: rgba(255,255,255,0.12); color: #072043; transform: translateY(-3px); }

  .pkg-btn-primary {
    background: linear-gradient(90deg, var(--accent), #0077dd);
    color: #072043;
    border: none;
    box-shadow: 0 10px 36px rgba(0,170,255,0.12);
  }

  /* animate-item base */
  .animate-item {
    opacity: 0;
    transform: translateX(0) translateY(0);
    transition: transform 0.72s cubic-bezier(.16,.9,.32,1) var(--delay, 0ms),
                opacity 0.42s ease var(--delay, 0ms);
    will-change: transform, opacity;
  }
  .animate-item[data-direction="left"]  { transform: translateX(-32px); }
  .animate-item[data-direction="right"] { transform: translateX(32px);  }
  .animate-item[data-direction="top"]   { transform: translateY(-24px);  }
  .animate-item[data-direction="bottom"]{ transform: translateY(24px);   }
  .animate-item.in-view { opacity: 1; transform: translateX(0) translateY(0); }

  /* responsive */
  @media (max-width: 1100px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 720px) {
    .packages-grid { grid-template-columns: 1fr; }
    .pkg-card { min-height: auto; padding: 18px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .animate-item { transition: none !important; transform: none !important; opacity: 1 !important; }
    .pkg-card:hover { transform: none; box-shadow: 0 18px 40px rgba(4,10,30,0.45); }
  }







  .cta-section {
  background: #07101a;
  color: #00c6ff;
  text-align: center;
  padding: clamp(80px,8vw,140px) 20px;
  overflow: hidden;
}

.cta-header {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.7s ease;
}

.cta-header .kicker {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.cta-header .cta-title {
  font-size: clamp(28px,5vw,48px);
  font-weight: 800;
  margin: 10px 0 15px;
}

.cta-header .cta-lead {
  font-size: clamp(16px,2vw,20px);
  max-width: 600px;
  margin: 0 auto 40px auto;
  color:#fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
  flex-wrap: wrap;
}

.btn.primary-btn {
  background: #00c6ff;
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn.primary-btn:hover {
  background: rgba(255,255,255,0.9);
  transform: scale(1.05);
  color: #00c6ff;
}

.btn.secondary-btn {
  background: transparent;
  border: 2px solid #00c6ff;
  color: #00c6ff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.secondary-btn:hover {
  background: rgb(255, 255, 255);
  transform: scale(1.05);
}

@media(max-width:720px){
  .cta-buttons { flex-direction: column; gap: 15px; }
}











:root {
  --accent: #22d3ee;
  --accent-hover: #06b6d4;
  --bg: #07101a;
  --white: #fff;
  --ease: cubic-bezier(.4,0,.2,1);
}

.contact-section {
  background: var(--bg);
  color: var(--white);
  padding: clamp(60px,6vw,100px) 20px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Form Styles */
.contact-form .contact-title {
  font-size: clamp(28px,4vw,36px);
  margin-bottom: 16px;
  font-weight: 800;
}
.contact-form .contact-lead {
  margin-bottom: 30px;
  color: #a7b3c7;
  line-height: 1.6;
}
.contact-form .form input,
.contact-form .form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 16px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form input:focus,
.contact-form .form textarea:focus {
  border-color: var(--accent);
  outline: none;
  background: rgba(34,211,238,0.05);
}
.contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  border: 2px solid var(--accent);
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-btn .fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  z-index: 0;
  transition: width 0.4s var(--ease);
}
.contact-btn span { position: relative; z-index: 1; }
.contact-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(19,33,68,0.2);}
.contact-btn:hover .fill { width: 110%; }

/* Image */
.contact-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Animations */
.animate-item { opacity:0; transform: translateY(12px) scale(.995); will-change: transform, opacity; }
.contact-section.play .animate-item { animation-duration: 640ms; animation-fill-mode: both; animation-timing-function: var(--ease); animation-delay: var(--delay,0ms); }
.contact-section.play .animate-item[data-direction="left"] { animation-name: fromLeft; }
.contact-section.play .animate-item[data-direction="right"]{ animation-name: fromRight; }
.contact-section.play .animate-item[data-direction="top"]  { animation-name: fromTop; }
.contact-section.play .animate-item[data-direction="bottom"]{ animation-name: fromBottom; }
.contact-section.play .animate-item[data-direction="scale"]{ animation-name: scaleIn; }

@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; } }
@keyframes scaleIn   {0%{opacity:0;transform:scale(.92) translateY(8px);}60%{opacity:1;transform:scale(1.02) translateY(-4px);}100%{opacity:1;transform:none;}}

/* Responsive */
@media(max-width:920px){
  .contact-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-image { order: -1; }
}







.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; }
}