 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 }
    }










   body {
      margin: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      background: #0a0f1c;
      color: #fff;
    }

    /* Hero Layout */
    .contact-hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 10%;
      min-height: 100vh;
      background: linear-gradient(135deg, #0a0f1c, #10182c);
    }

    /* Left Text Section */
    .contact-text {
      flex: 1;
      max-width: 600px;
    }

    .contact-text h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      line-height: 1.2;
      background: linear-gradient(90deg, #00eaff, #00b7ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .contact-text p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: #c9d6f0;
    }

    .contact-btn {
      padding: 14px 32px;
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(90deg, #00b7ff, #0077ff);
      transition: all 0.4s ease;
      box-shadow: 0 0 20px rgba(0,183,255,0.4);
    }

    .contact-btn:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 0 35px rgba(0,183,255,0.7);
    }

    /* Right Side Tech Orb */
    .contact-visual {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tech-orb {
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, #00b7ff 0%, #00111f 80%);
      position: relative;
      box-shadow: 0 0 60px rgba(0,183,255,0.6);
      animation: pulse 4s infinite alternate;
    }

    .tech-orb::before,
    .tech-orb::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 2px dashed rgba(0, 183, 255, 0.5);
      animation: rotate 12s linear infinite;
    }

    .tech-orb::before {
      width: 300px;
      height: 300px;
      top: -40px;
      left: -40px;
    }

    .tech-orb::after {
      width: 380px;
      height: 380px;
      top: -80px;
      left: -80px;
      animation-duration: 20s;
    }

    @keyframes pulse {
      from { transform: scale(1); box-shadow: 0 0 40px rgba(0,183,255,0.5); }
      to { transform: scale(1.05); box-shadow: 0 0 70px rgba(0,183,255,0.8); }
    }

    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Animation (Appear One by One) */
    .animate {
      opacity: 0;
      transform: translateY(40px);
      transition: all 1.2s ease;
    }

    .animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media(max-width: 900px) {
      .contact-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
      }
      .contact-text {
        margin-bottom: 50px;
      }
    }












      /* ---------- Base ---------- */
  :root{
    --bg:#0d1117;
    --fg:#eaf6ff;
    --muted:#a6b6c3;
    --cyan:#00e5ff;
    --glass-bg: rgba(255,255,255,0.03);
    --card-radius:14px;
  }

  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Poppins", sans-serif;
    background:var(--bg);
    color:var(--fg);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.45;
  }

  /* ---------- Layout (keeps your original form) ---------- */
  .contact-section{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap:40px;
    align-items:center;
    justify-content:center;
    padding:80px 7%;
    position:relative;
    overflow:hidden;
  }

  .contact-left{ z-index:6; } /* keep form on top of shapes */
  .contact-left h2{
    font-size:2.4rem;
    margin:0 0 10px;
    background: linear-gradient(90deg,var(--cyan), #00b7ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  .contact-left p{ color:var(--muted); margin-bottom:26px; max-width:60ch; }

  form{ display:flex; flex-direction:column; gap:18px; }
  .form-group{ position:relative; }
  .form-group input,
  .form-group textarea{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:2px solid #222;
    background: rgba(255,255,255,0.03);
    color:var(--fg);
    outline:none;
    transition: box-shadow .32s ease, border-color .28s ease, transform .28s ease;
    font-size:1rem;
  }
  .form-group label{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:.95rem;
    pointer-events:none;
    transition: all .28s ease;
    background:transparent;
    padding:0 6px;
    border-radius:4px;
  }
  .form-group input:focus,
  .form-group textarea:focus{
    border-color:var(--cyan);
    box-shadow: 0 0 18px rgba(0,229,255,0.12);
  }
  .form-group input:focus + label,
  .form-group textarea:focus + label,
  .form-group input:not(:placeholder-shown) + label,
  .form-group textarea:not(:placeholder-shown) + label{
    top:-10px;
    left:10px;
    font-size:.75rem;
    color:var(--cyan);
    background:var(--bg);
  }
  textarea{ min-height:120px; resize:none; }

  button[type="submit"]{
    padding:14px 22px;
    border-radius:30px;
    border:0;
    background:linear-gradient(90deg,var(--cyan), #00b7ff);
    color:#002;
    font-weight:700;
    cursor:pointer;
    box-shadow: 0 8px 30px rgba(0,229,255,0.08);
    transition: transform .28s ease, box-shadow .3s ease;
  }
  button[type="submit"]:hover{ transform:translateY(-4px); box-shadow: 0 18px 45px rgba(0,229,255,0.14); }

  /* ---------- Right: Layered Tech Shapes (improved + responsive) ---------- */
  .contact-right{
    position:relative;
    min-height:420px;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none; /* shapes only visual (but we add light parallax) */
  }

  .shape-layer{
    position:absolute;
    transform-origin:center;
    opacity:0; /* will be revealed by JS */
    transition: transform 1.2s cubic-bezier(.2,.9,.2,1), opacity 1.2s ease;
    will-change: transform, opacity;
  }

  /* sizes + stacking, adjust with media queries */
  .layer-sphere{ width:300px; height:300px; border-radius:50%; left:50%; top:50%; transform:translate(-50%,-50%); z-index:1; }
  .layer-hex{ width:340px; height:340px; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2; }
  .layer-polygon{ width:240px; height:240px; left:50%; top:50%; transform:translate(-50%,-50%); z-index:3; }
  .layer-ring{ width:380px; height:380px; left:50%; top:50%; transform:translate(-50%,-50%); z-index:0; }
  .layer-core{ width:90px; height:90px; left:50%; top:50%; transform:translate(-50%,-50%); z-index:4; }

  /* ----------------- individual visuals ----------------- */

  /* 1) Wireframe sphere (SVG lines) */
  .sphere-svg{
    width:100%; height:100%;
    display:block;
  }
  .sphere-svg circle{ fill:none; stroke:rgba(0,229,255,0.18); stroke-width:1.2; }
  .sphere-rotate{ animation: sphere-rotate 18s linear infinite; transform-origin:center; }

  @keyframes sphere-rotate { to{ transform: rotate(360deg); } }

  /* 2) Hex grid - subtle moving pattern */
  .hex-grid{
    width:100%; height:100%;
    background-image:
      radial-gradient(circle at 10px 10px, rgba(0,229,255,0.14) 1px, transparent 1px),
      radial-gradient(circle at 30px 30px, rgba(0,229,255,0.08) 1px, transparent 1px);
    background-size:40px 40px;
    opacity:.22;
    filter: blur(.2px);
    animation: hex-slide 8s linear infinite;
  }
  @keyframes hex-slide { from{ transform: translateY(-8px) } to{ transform: translateY(8px) } }

  /* 3) Polygon morphing (clip-path animation) */
  .poly{
    width:100%; height:100%;
    background: linear-gradient(180deg, rgba(0,229,255,0.08), rgba(0,229,255,0.02));
    border:1px solid rgba(0,229,255,0.12);
    animation: poly-morph 6.8s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(0,229,255,0.05);
    clip-path: polygon(50% 5%, 95% 25%, 80% 80%, 25% 90%, 5% 30%);
  }
  @keyframes poly-morph{
    0% { clip-path: polygon(50% 5%, 95% 25%, 80% 80%, 25% 90%, 5% 30%); transform:scale(0.98); }
    50% { clip-path: polygon(45% 8%, 92% 18%, 82% 78%, 28% 85%, 6% 24%); transform:scale(1.03); }
    100% { clip-path: polygon(50% 5%, 95% 25%, 80% 80%, 25% 90%, 5% 30%); transform:scale(0.98); }
  }

  /* 4) Cyber ring - rotating dashed + gradient edge */
  .ring{
    width:100%; height:100%;
    border-radius:50%;
    background: conic-gradient(rgba(0,229,255,0.06), rgba(0,229,255,0.18));
    mask: radial-gradient(circle, transparent 50px, black 52px);
    box-shadow: 0 0 40px rgba(0,229,255,0.06);
    animation: ring-spin 24s linear infinite;
  }
  @keyframes ring-spin{ to{ transform: rotate(-360deg) } }

  /* 5) Core (glowing center) */
  .core-glow{
    width:100%; height:100%; border-radius:50%;
    background: radial-gradient(circle at 40% 30%, rgba(0,229,255,0.95), rgba(0,229,255,0.5) 20%, rgba(0,229,255,0.06) 45%, transparent 70%);
    filter: blur(6px);
    animation: core-pulse 2.6s ease-in-out infinite;
  }
  @keyframes core-pulse{ 0%{ transform:scale(.9); opacity:.9 } 50%{ transform:scale(1.06); opacity:1 } 100%{ transform:scale(.9); opacity:.9 } }

  /* subtle parallax translation applied when pointer moves */
  .parallax{ transition: transform .08s linear; will-change: transform; }

  /* ---------- Reveal helpers ---------- */
  .reveal{ opacity:0; }
  .reveal.in-view{ opacity:1; transform:none; }

  /* data-direction initial transforms */
  .reveal[data-direction="left"]{ transform: translateX(-50px); }
  .reveal[data-direction="right"]{ transform: translateX(50px); }
  .reveal[data-direction="top"]{ transform: translateY(-40px); }
  .reveal[data-direction="bottom"]{ transform: translateY(40px); }

  /* when in-view remove transforms (we add .in-view) */
  .reveal.in-view{ transform: translate(0,0); transition: opacity 1.25s ease, transform 1.25s cubic-bezier(.2,.9,.2,1); }

  /* ---------- Responsive ---------- */
  @media (max-width:1100px){
    .layer-ring{ width:300px; height:300px; }
    .layer-hex{ width:280px; height:280px; }
    .layer-sphere{ width:240px; height:240px; }
    .layer-polygon{ width:180px; height:180px; }
    .layer-core{ width:68px; height:68px; }
  }
  @media (max-width:760px){
    .contact-section{ grid-template-columns:1fr; padding:48px 6%; }
    .contact-right{ min-height:260px; order:2; margin-top:18px; }
    .contact-left{ order:1; }
    /* reduce complexity on small screens */
    .layer-ring, .layer-hex{ opacity:.6 }
    .layer-polygon{ opacity:.85 }
    .layer-sphere{ opacity:.9 }
    .parallax{ transform:none !important }
  }

  /* respects reduced motion */
  @media (prefers-reduced-motion: reduce){
    .sphere-rotate, .hex-grid, .poly, .ring, .core-glow{ animation: none !important; transition:none !important; }
  }








      body {
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: #0d0d0d;
      color: #fff;
    }

    /* Section */
    .faq-section {
      padding: 100px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .faq-title {
      text-align: center;
      font-size: 3rem;
      margin-bottom: 60px;
      position: relative;
      display: inline-block;
      background: #00c6ff;
      color: #0d0d0d;
      padding: 8px 18px;
      border-radius: 8px;
      font-weight: 700;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.8s ease;
    }

    .faq-title.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* FAQ Grid */
    .faq-grid {
      display: grid;
      gap: 20px;
    }

    .faq-item {
      background: #1a1a1a;
      border-radius: 12px;
      padding: 20px 24px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transform: translateY(40px);
      opacity: 0;
      transition: all 0.6s ease;
    }

    .faq-item.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .faq-question {
      font-size: 1.2rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question i {
      transition: transform 0.4s ease;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease, opacity 0.6s ease;
      opacity: 0;
      margin-top: 10px;
      line-height: 1.6;
      color: #ccc;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      opacity: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .faq-title {
        font-size: 2rem;
      }
      .faq-question {
        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; }
}