  :root {
    --sky: #00BFFF;
    --cyan: #00FFFF;
    --sky-dim: rgba(0,191,255,0.25);
    --sky-glow: rgba(0,191,255,0.5);
    --bg: #000000;
    --text: #e0e8f0;
    --muted: rgba(160,185,210,0.65);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-family: 'Rajdhani', sans-serif; overflow-x: hidden; }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: #000; }
  ::-webkit-scrollbar-thumb { background: rgba(0,191,255,0.35); border-radius: 2px; }

  /* ── KEYFRAMES ── */
  @keyframes pulseBorder {
    0%,100% { box-shadow: 0 0 6px rgba(0,191,255,0.18); }
    50%      { box-shadow: 0 0 28px rgba(0,191,255,0.55), 0 0 60px rgba(0,191,255,0.12); }
  }
  @keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
  }
  @keyframes scanLine {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100vh; opacity: 0; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes orbitDot {
    from { transform: rotate(0deg) translateX(52px) rotate(0deg); }
    to   { transform: rotate(360deg) translateX(52px) rotate(-360deg); }
  }
  @keyframes blink {
    0%,100% { opacity: 1; } 50% { opacity: 0; }
  }
  @keyframes counterUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  section { scroll-margin-top: 90px; }
  #grid-bg {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  }
  #grid-bg .grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,191,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,191,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  #grid-bg .radial-glow {
    position: absolute; top: 15%; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,255,0.06) 0%, transparent 70%);
  }
  #grid-bg .scan {
    position: absolute; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,191,255,0.3), transparent);
    animation: scanLine 9s linear infinite;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 5vw; transition: background 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
  }
  nav.scrolled {
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    border-color: rgba(0,191,255,0.15);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; height: 70px;
  }
  .logo {
    display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none;
  }
  .logo-icon {
    width: 32px; height: 32px; border: 1px solid rgba(0,191,255,0.6);
    display: flex; align-items: center; justify-content: center;
    animation: pulseBorder 2.5s infinite;
  }
  .logo-icon svg { color: var(--sky); }
  .logo-text {
    font-family: 'Orbitron', monospace; font-size: 16px; font-weight: 700;
    letter-spacing: 0.1em; color: #fff;
  }
  .logo-text span { color: var(--sky); }
  .nav-links { display: flex; gap: 36px; align-items: center; }
  .nav-link {
    font-family: 'Orbitron', monospace; font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(200,200,200,0.7);
    cursor: pointer; background: none; border: none; transition: color 0.3s;
  }
  .nav-link:hover { color: var(--sky); }
  .nav-link.active { color: var(--cyan) }
   .nav-links .nav-link{ text-decoration:none;}
  .cta-btn {
    font-family: 'Orbitron', monospace; font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
    border: 1px solid rgba(0,191,255,0.6); background: transparent; color: var(--sky);
    padding: 10px 24px; transition: all 0.3s;
    clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
  }
  .cta-btn:hover { background: rgba(0,191,255,0.1); box-shadow: 0 0 20px rgba(0,191,255,0.35); }
  .hamburger {
    display: none; background: none; border: none;
    cursor: pointer; color: var(--sky); padding: 4px;
  }
  .mobile-menu {
    display: none; background: rgba(0,0,0,0.97);
    border-bottom: 1px solid rgba(0,191,255,0.18); padding: 16px 5vw 28px;
  }
  .mobile-menu.open { display: block; }
  .mobile-link {
    display: block; padding: 14px 0;
    border-bottom: 1px solid rgba(0,191,255,0.08);
    font-family: 'Orbitron', monospace; font-size: 12px;
    letter-spacing: 0.15em; color: var(--sky); cursor: pointer; text-transform: uppercase;
  }

  /* ── SECTIONS ── */
  section { position: relative; z-index: 1; padding: 80px 5vw; }
  .container { max-width: 1200px; margin: 0 auto; }

  /* ── HERO ── */
  #hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; padding-bottom: 80px; }
  .badge {
    font-family: 'Courier New', monospace; font-size: 10px; letter-spacing: 0.15em;
    color: var(--sky); border: 1px solid rgba(0,191,255,0.35); padding: 3px 10px; border-radius: 1px;
  }
  .hero-headline {
    font-family: 'Orbitron', monospace;
    font-size: clamp(30px,6vw,70px); font-weight: 900;
    line-height: 1.06; letter-spacing: -0.01em; margin: 20px 0 26px; color: #fff;
  }
  .shimmer-text {
    background: linear-gradient(90deg,#87CEEB,#00BFFF,#00FFFF,#87CEEB);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; animation: shimmer 3s linear infinite;
  }
  .hero-sub {
    font-size: clamp(15px,2vw,19px); color: var(--muted); max-width: 560px;
    line-height: 1.7; letter-spacing: 0.04em; margin-bottom: 44px; font-weight: 400;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
  .ghost-btn {
    font-family: 'Orbitron', monospace; font-size: 11px; letter-spacing: 0.15em;
    background: none; border: none; color: rgba(160,185,210,0.6);
    cursor: pointer; display: flex; align-items: center; gap: 8px; transition: color 0.3s;
  }
  .ghost-btn:hover { color: var(--sky); }
  .stats { display: flex; gap: 48px; flex-wrap: wrap; }
  .stat-val {
    font-family: 'Orbitron', monospace; font-size: clamp(26px,4vw,44px);
    font-weight: 700; color: var(--sky); line-height: 1;
  }
  .stat-label {
    font-size: 11px; letter-spacing: 0.12em; color: rgba(150,175,200,0.55);
    margin-top: 5px; text-transform: uppercase;
  }
  .deco-line {
    position: absolute; right: 8vw; top: 25%; width: 1px; height: 280px;
    background: linear-gradient(to bottom, transparent, rgba(0,191,255,0.4), transparent);
  }

  /* ── GLOW CARD ── */
  .glow-card {
    border: 1px solid var(--sky-dim); border-radius: 2px;
    background: rgba(0,0,0,0.72); backdrop-filter: blur(8px);
    position: relative; overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
    box-shadow: 0 0 8px rgba(0,191,255,0.1);
  }
  .glow-card:hover {
    border-color: rgba(0,191,255,0.8);
    box-shadow: 0 0 30px rgba(0,191,255,0.28), inset 0 0 30px rgba(0,191,255,0.03);
  }
  .glow-card .corner { position: absolute; width: 18px; height: 18px; opacity: 0.4; transition: opacity 0.3s; }
  .glow-card:hover .corner { opacity: 1; }
  .corner.tl { top:0; left:0; border-top:2px solid rgba(0,191,255,0.6); border-left:2px solid rgba(0,191,255,0.6); }
  .corner.br { bottom:0; right:0; border-bottom:2px solid rgba(0,191,255,0.6); border-right:2px solid rgba(0,191,255,0.6); }

  /* ── SECTION HEADER ── */
  .section-header { margin-bottom: 52px; }
  .section-title {
    font-family: 'Orbitron', monospace; font-size: clamp(22px,4vw,38px);
    font-weight: 700; color: #fff; margin-top: 14px; letter-spacing: 0.02em;
  }
  .section-title span { color: var(--sky); }
  .title-line { width: 58px; height: 2px; background: linear-gradient(90deg,var(--sky),transparent); margin-top: 14px; }

  /* ── SERVICES ── */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: 20px;
  }
  .service-card { padding: 30px 26px; cursor: default; }
  .service-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
  .service-icon-box {
    width: 46px; height: 46px; border: 1px solid rgba(0,191,255,0.3);
    background: rgba(0,191,255,0.05); display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .glow-card:hover .service-icon-box {
    border-color: rgba(0,255,255,0.6); box-shadow: 0 0 12px rgba(0,255,255,0.3);
  }
  .service-icon-box svg { transition: filter 0.3s; }
  .glow-card:hover .service-icon-box svg { filter: drop-shadow(0 0 6px rgba(0,255,255,0.7)); }
  .service-tag { font-family:'Courier New',monospace; font-size:10px; color:rgba(0,191,255,0.45); letter-spacing:0.1em; }
  .service-title {
    font-family:'Orbitron',monospace; font-size:12px; font-weight:600;
    color:#fff; letter-spacing:0.05em; line-height:1.4; margin-bottom:10px;
  }
  .service-desc { font-size:14px; color:var(--muted); line-height:1.72; }

  /* ── STRIP ── */
  #strip { padding: 40px 5vw; }
  .strip-card { padding: 36px 44px; animation: pulseBorder 4s infinite; }
  .strip-inner { display:flex; flex-wrap:wrap; gap:32px; align-items:center; justify-content:space-around; }
  .strip-item { display:flex; align-items:center; gap:14px; }
  .strip-item span {
    font-family:'Orbitron',monospace; font-size:12px; letter-spacing:0.1em;
    color:rgba(200,220,240,0.8);
  }

  /* ── TEAM ── */
  .team-grid { display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
  .team-card { flex:1 1 280px; max-width:380px; padding:44px 36px; text-align:center; animation:pulseBorder 3s infinite; }
  .avatar-wrap { position:relative; width:100px; height:100px; margin:0 auto 26px; }
  .avatar-ring {
    width:100px; height:100px; border-radius:50%;
    border:2px solid var(--sky); display:flex; align-items:center; justify-content:center;
    background:radial-gradient(circle at 35% 35%,rgba(0,191,255,0.18),rgba(0,0,0,0.8));
    box-shadow:0 0 20px rgba(0,191,255,0.3), inset 0 0 16px rgba(0,191,255,0.05);
  }
  .avatar-initial { font-family:'Orbitron',monospace; font-size:36px; font-weight:900; color:var(--sky); }
  .orbit-dot {
    position:absolute; top:50%; left:50%; width:8px; height:8px;
    margin:-4px 0 0 -4px; border-radius:50%;
    background:var(--sky); box-shadow:0 0 8px var(--sky);
    animation:orbitDot 4s linear infinite;
  }
  .team-name { font-family:'Orbitron',monospace; font-size:17px; font-weight:700; color:#fff; letter-spacing:0.05em; margin-bottom:6px; }
  .team-role { font-family:'Orbitron',monospace; font-size:9px; color:var(--sky); letter-spacing:0.18em; margin-bottom:14px; }
  .team-divider { width:38px; height:1px; background:linear-gradient(90deg,transparent,var(--sky),transparent); margin:0 auto 14px; }
  .team-focus { font-size:14px; color:var(--muted); line-height:1.7; }

  /* ── CONTACT ── */
  #contact .container { max-width:700px; text-align:center; }
  .contact-card { padding:38px 44px; }
  .contact-row {
    display:flex; justify-content:space-between; align-items:center;
    border-bottom:1px solid rgba(0,191,255,0.08); padding-bottom:18px; margin-bottom:18px;
  }
  .contact-row:last-of-type { border-bottom:none; margin-bottom:0; padding-bottom:0; }
  .contact-label { font-family:'Orbitron',monospace; font-size:9px; letter-spacing:0.2em; color:rgba(0,191,255,0.45); }
  .contact-val { font-size:15px; color:rgba(200,220,240,0.85); letter-spacing:0.05em; }
  .contact-cta { margin-top:28px; width:100%; }
  .contact-input {
    background: transparent;
    border: 1px solid rgba(0,191,255,0.3);
    color: var(--text);
    padding: 8px 12px;
    width: 100%;
    font-family: inherit;
    font-size: 15px;
    border-radius: 2px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .contact-input:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 10px rgba(0,191,255,0.5);
  }
  .contact-input::placeholder {
    color: rgba(200,220,240,0.5);
  }

  /* ── FOOTER ── */
  footer {
    border-top:1px solid rgba(0,191,255,0.1); padding:28px 5vw;
    text-align:center; position:relative; z-index:1;
  }
  .footer-logo { display:flex; justify-content:center; align-items:center; gap:10px; margin-bottom:10px; }
  .footer-pipe { width:1px; height:16px; background:rgba(0,191,255,0.3); }
  .footer-name { font-family:'Orbitron',monospace; font-size:11px; color:var(--sky); letter-spacing:0.15em; }
  .phone-link {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    transition: color 0.3s;
  }
  .phone-link:hover { color: var(--sky); }
  .footer-copy { font-family:'Courier New',monospace; font-size:11px; color:rgba(150,170,190,0.38); letter-spacing:0.1em; }
  .blink { animation:blink 1.2s step-end infinite; color:var(--sky); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s;
  z-index: 1000;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

  /* ── REVEAL ANIMATIONS ── */
  .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.7s cubic-bezier(.23,1,.32,1), transform 0.7s cubic-bezier(.23,1,.32,1); }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* ── RESPONSIVE ── */
  @media(max-width:768px) {
    .nav-links { display:none; }
    .hamburger { display:block; }
    .deco-line { display:none; }
    .contact-card { padding:28px 22px; }
    .strip-card { padding:28px 20px; }
  }