    :root {
      --bg-dark: #030712;
      --card-bg: rgba(9, 14, 26, 0.7);
      --accent-cyan: #38bdf8;
      --accent-blue: #2563eb;
      --accent-emerald: #10b981;
      --border-glow: rgba(56, 189, 248, 0.25);
    }

    body {
      background-color: var(--bg-dark);
      color: #f8fafc;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    .font-mono {
      font-family: 'JetBrains Mono', monospace;
    }

    /* --- Telemetry Top Bar --- */
    .telemetry-ticker {
      background: rgba(3, 7, 18, 0.92);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.75rem;
      letter-spacing: 0.05em;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: var(--accent-emerald);
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 10px var(--accent-emerald);
      animation: pulse-glow 2s infinite;
    }

    @keyframes pulse-glow {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.85); }
    }

    /* --- Navbar Styling --- */
    .navbar-glass {
      background: rgba(3, 7, 18, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .nav-link {
      font-size: 0.88rem;
      font-weight: 500;
      color: #94a3b8 !important;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--accent-cyan) !important;
    }

    .btn-glow-primary {
      background: linear-gradient(135deg, #0284c7, #2563eb);
      border: 1px solid rgba(56, 189, 248, 0.4);
      color: #ffffff;
      font-weight: 600;
      padding: 0.6rem 1.4rem;
      border-radius: 9999px;
      box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-glow-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
      color: #fff;
    }

    .btn-outline-tech {
      background: rgba(15, 23, 42, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #e2e8f0;
      font-weight: 500;
      padding: 0.6rem 1.4rem;
      border-radius: 9999px;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .btn-outline-tech:hover {
      border-color: var(--accent-cyan);
      color: var(--accent-cyan);
      background: rgba(56, 189, 248, 0.08);
    }

    /* --- Hero Section with Full-Bleed Video Background --- */
    .hero-wrapper {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding: 90px 0;
      overflow: hidden;
    }

    .video-background-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .hero-bg-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      opacity:0.7;
    }

    /* Multi-layered cinematic gradient overlays */
    /* --- Linear Overlay Faded to 10% --- */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 18, 0.10) 0%,
    rgba(3, 7, 18, 0.00) 50%,
    rgba(3, 7, 18, 0.10) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* --- Radial Overlay Faded to 10% --- */
.video-radial-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 40%,
    rgba(3, 7, 18, 0.10) 100%
  );
  z-index: 2;
  pointer-events: none;
}

    /* HUD Radar Accent Rings */
    .radar-circle {
      position: absolute;
      top: 50%;
      right: 8%;
      transform: translate(50%, -50%);
      border-radius: 50%;
      border: 1px dashed rgba(56, 189, 248, 0.18);
      pointer-events: none;
      z-index: 2;
    }

    .radar-1 { width: 440px; height: 440px; animation: spin 45s linear infinite; }
    .radar-2 { width: 660px; height: 660px; animation: spin-rev 65s linear infinite; }

    @keyframes spin { 100% { transform: translate(50%, -50%) rotate(360deg); } }
    @keyframes spin-rev { 100% { transform: translate(50%, -50%) rotate(-360deg); } }

    /* Typography & Badges */
    .tech-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.85rem;
      border-radius: 9999px;
      border: 1px solid rgba(56, 189, 248, 0.35);
      background: rgba(14, 165, 233, 0.12);
      color: var(--accent-cyan);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-size: 3.6rem;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .gradient-text {
      background: linear-gradient(135deg, #ffffff 20%, #38bdf8 70%, #818cf8 100%);
      /* -webkit-background-clip: text; */
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      color: #cbd5e1;
      font-size: 1.125rem;
      line-height: 1.75;
      font-weight: 300;
    }

    /* --- Telemetry HUD Terminal Card --- */
    .telemetry-card {
      background: var(--card-bg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(56, 189, 248, 0.25);
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.1);
      position: relative;
      z-index: 3;
    }

    .floating-card-animation {
      animation: float-slow 7s ease-in-out infinite;
    }

    @keyframes float-slow {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .terminal-header {
      background: rgba(3, 7, 18, 0.9);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 12px 18px;
    }

    .terminal-body {
      padding: 20px;
      font-size: 0.78rem;
      line-height: 1.8;
    }

    .terminal-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }

    .stat-metric-card {
      background: rgba(15, 23, 42, 0.75);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 0.75rem;
      padding: 12px 14px;
    }

    @media (max-width: 991.98px) {
      .hero-title { font-size: 2.6rem; }
      .radar-circle { display: none; }
    }
  /* --- AeroTech Planet.com Brand Typography --- */
.aerotech-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.navbar-brand:hover .aerotech-logo-mark {
  transform: rotate(180deg) scale(1.06);
}

.logo-text-primary {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;

}

.logo-dot {
  font-size: 1.6rem;
  font-weight: 800;
  color: #38bdf8; /* Cyan signature accent */
  line-height: 0;
  margin-left: 1px;
}

.logo-text-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #94a3b8;
  margin-top: 3px;
  line-height: 1;
}
/* Our Team css */
/* --- Team Section Atmosphere & Cards --- */
.bg-darker {
  background-color: #02050e;
}

.team-ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(2, 5, 14, 0) 70%);
  top: 10%;
  left: -100px;
  pointer-events: none;
  z-index: 1;
}

.team-card {
  background: rgba(9, 14, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 189, 248, 0.12);
}

/* Image Reticle & Zoom Effect */
.team-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #0b1120;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(105%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.team-card:hover .team-img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(100%);
}

.team-hud-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.65rem;
}

/* Reticle Corners on Hover */
.reticle-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #38bdf8;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

.team-card:hover .reticle-corner {
  opacity: 1;
}

.reticle-corner.top-l { top: 8px; left: 8px; border-top: 2px solid #38bdf8; border-left: 2px solid #38bdf8; transform: translate(3px, 3px); }
.reticle-corner.top-r { top: 8px; right: 8px; border-top: 2px solid #38bdf8; border-right: 2px solid #38bdf8; transform: translate(-3px, 3px); }
.reticle-corner.bot-l { bottom: 8px; left: 8px; border-bottom: 2px solid #38bdf8; border-left: 2px solid #38bdf8; transform: translate(3px, -3px); }
.reticle-corner.bot-r { bottom: 8px; right: 8px; border-bottom: 2px solid #38bdf8; border-right: 2px solid #38bdf8; transform: translate(-3px, -3px); }

.team-card:hover .reticle-corner.top-l { transform: translate(0, 0); }
.team-card:hover .reticle-corner.top-r { transform: translate(0, 0); }
.team-card:hover .reticle-corner.bot-l { transform: translate(0, 0); }
.team-card:hover .reticle-corner.bot-r { transform: translate(0, 0); }

/* Typography & Links */
.team-role {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hover-info {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.hover-info:hover {
  color: #38bdf8 !important;
  transform: translateY(-2px);
}
/* Footer */
/* --- Aero Tech Planet-Style Footer --- */
.aerotech-footer {
  background-color: #02050e;
}

.footer-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, rgba(2, 5, 14, 0) 70%);
  bottom: 0;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}

.newsletter-input {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.7rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.85rem;
}

.newsletter-input:focus {
  background: rgba(15, 23, 42, 0.95);
  border-color: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.newsletter-input::placeholder {
  color: #64748b;
}

.ground-control-badge {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.25);
  font-size: 0.7rem;
  color: #94a3b8;
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icon:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  background: rgba(56, 189, 248, 0.1);
}
/* Our mission */
/* --- Mission & Focus Atmosphere --- */
.mission-ambient-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, rgba(2, 5, 14, 0) 70%);
  top: 15%;
  right: -50px;
  pointer-events: none;
  z-index: 1;
}

/* Mission Statement Glass Card */
.mission-statement-card {
  background: rgba(14, 165, 233, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 0 20px rgba(56, 189, 248, 0.05);
}

/* Strategic Focus Cards */
.focus-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-card:hover {
  transform: translateY(-4px);
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.6), 0 0 15px rgba(56, 189, 248, 0.15);
}

.focus-icon-box {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Visual Showcase Mosaic */
.visual-pane {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #0b1120;
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%) contrast(105%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.visual-pane:hover .visual-img {
  transform: scale(1.06);
  filter: brightness(100%) contrast(100%);
}

.visual-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  backdrop-filter: blur(8px);
}

/* Orbit Telemetry Pill */
.mission-orbit-indicator {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(3, 7, 18, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  z-index: 3;
}
/* Projects */
/* --- Completed Projects Atmosphere --- */
.projects-ambient-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(2, 5, 14, 0) 70%);
  top: 20%;
  left: -150px;
  pointer-events: none;
  z-index: 1;
}

.project-card {
  background: rgba(9, 14, 26, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8), 0 0 25px rgba(56, 189, 248, 0.12);
}

/* Image & Scanline Effects */
.project-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #0b1120;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%) contrast(105%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.project-card:hover .project-img {
  transform: scale(1.08);
  filter: brightness(100%) contrast(100%);
}

.project-id-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.project-sector-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.68rem;
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* Scanline Sweep on Hover */
.scanline-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(56, 189, 248, 0.15) 51%,
    transparent 55%
  );
  background-size: 100% 200%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.project-card:hover .scanline-overlay {
  opacity: 1;
  animation: scanline 2.5s linear infinite;
}

@keyframes scanline {
  0% { background-position: 0 0; }
  100% { background-position: 0 200%; }
}

/* Additional Capabilities Box */
.additional-capabilities-box {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(14px);
}

.capability-icon-pill {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.capability-item:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-2px);
}

@media (min-width: 992px) {
  .border-end-lg {
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }
}