@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
body {
  font-family: "Inter", sans-serif;
  background-color: #0b0f19;
}

.cyber-grid {
  background-image: linear-gradient(rgba(16, 24, 48, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 48, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}

.glow-effect {
  box-shadow: 0 0 40px -10px rgba(14, 165, 233, 0.2);
}

/* 0. Global Variable Definitions (Required for all components) */

:root {
  --bg: #0b0f19;
  --bg2: #0b0f19;
  --text: #ffffff;
  --muted: #94a3b8;
  --accent: #0ea5e9;
  --accent2: #4f46e5;
  --border: #1e293b;
  --surface: #1e293b;
  --font-head: "Inter", sans-serif;
  --font-mono: monospace;
}

/* 1. Global Body Reset */

body {
  background-color: var(--bg) !important;
  padding-top: 0 !important;
  font-family: var(--font-head);
  margin: 0;
}



/* 1. Sticky Navbar Container */
.sticky-nav {
  position: fixed !important;
  top: 0 !important;
  margin: 0 5% !important;
  width: 90% !important;
  z-index: 9999 !important;
  padding: 0 20px !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: rgba(4, 6, 16, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

/* 2. Logo Styling */
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  text-decoration: none !important;
  color: var(--text) !important;
  margin-top: 5px;
}

.logo-img {
  width: 90px !important;
  height: 80px !important;
  object-fit: contain !important;
  display: block !important;
}

/* 3. Desktop Nav Links */
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 2rem;
  list-style: none !important;
  margin: 0 !important;
}

.nav-links a {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent) !important;
}

/* 4. CTA Button */
.nav-cta {
  display: flex !important;
  gap: 12px !important;
}

.btn {
  display: inline-flex !important;
  align-items: center !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: none !important;
  border: none !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent)) !important;
  color: #fff !important;
}

/* 5. Hamburger Menu */
.menu-toggle {
  display: none !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 10px !important;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text) !important;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* 6. Mobile Responsive Logic */
@media (max-width: 992px) {
  .menu-toggle { display: block !important; }
  
  .nav-menu-wrapper {
    display: none !important; 
    width: 100%;
    flex-direction: column !important;
    position: absolute !important;
    top: 80px !important; /* Aligned with 80px sticky-nav height */
    left: 0;
    background: rgba(4, 6, 16, 0.98) !important;
    padding: 30px !important;
    border: 1px solid var(--border) !important;
    border-radius: 0 0 12px 12px !important;
    text-align: center;
    gap: 1.5rem !important;
  }
  
  .nav-menu-wrapper.active {
    display: flex !important;
  }

  .nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  .nav-cta {
    display: flex !important;
    justify-content: center !important;
  }
}

@media (min-width: 993px) {
  .menu-toggle { display: none !important; }
  .nav-menu-wrapper { display: flex !important; align-items: center; gap: 2rem; }
}



/* 8. Footer CSS */

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 70px 5% 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--muted);
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: var(--text);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-cert {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-tag {
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
}

:root {
  --neon-blue: #00d4ff;
  --neon-cyan: #00fff7;
  --neon-green: #00ff88;
  --dark-bg: #020812;
  --dark-card: #050e1a;
  --dark-border: #0a2040;
  --mid-blue: #0057b8;
  --accent: #ff3d71;
  --gold: #f5c842;
  --text-main: #cde8ff;
  --text-dim: #5a8cb0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark-bg);
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ── Custom Cursor ── */

.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

/* ── Scrollbar ── */

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 2px;
}

/* ── Grid bg ── */

.grid-bg {
  background-image: linear-gradient(
      rgba(0, 212, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ── Scanline ── */

@keyframes scanline {
  0% {
    top: -5%;
  }
  100% {
    top: 110%;
  }
}

.scanline-wrap {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  overflow: hidden;
}

.scanline-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.04),
    transparent
  );
  animation: scanline 7s linear infinite;
}

/* ── Animations ── */

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes borderPulse {
  0%,
  100% {
    border-color: rgba(0, 212, 255, 0.15);
  }
  50% {
    border-color: rgba(0, 212, 255, 0.5);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowLine {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes typeIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes slideRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes hexSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ── Navbar ── */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(2, 8, 18, 0.93);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-link {
  color: var(--text-dim);
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-blue);
  box-shadow: 0 0 6px var(--neon-blue);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--neon-cyan);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--neon-cyan);
}

.nav-link.active::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #0057b8, #00a8cc);
  color: #fff;
  font-family: "Orbitron", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.4s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 168, 204, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  font-family: "Orbitron", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-lg {
  padding: 14px 28px;
  /* Larger padding */
  font-size: 1rem;
  /* Slightly larger text */
}

/* ── Glass ── */

.glass {
  background: rgba(5, 14, 26, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 14px;
}

/* ── Neon line ── */

.neon-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-blue),
    var(--neon-cyan),
    transparent
  );
  box-shadow: 0 0 8px var(--neon-blue);
  opacity: 0.5;
}

/* ── Section labels ── */

.section-label {
  font-family: "inter", sans-serif;
  font-size: 0.7rem;
  color: var(--neon-blue);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
}

/* ── Blobs ── */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.1;
  pointer-events: none;
  animation: float 9s ease-in-out infinite;
}

/* ── HERO ── */

.hero-bg {
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(0, 87, 184, 0.18) 0%,
    transparent 70%
  );
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  background: linear-gradient(135deg, #fff 0%, #00d4ff 55%, #00fff7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hexagon frame for avatar ── */

.hex-wrap {
  position: relative;
  display: inline-block;
  width: 130px;
  height: 150px;
  flex-shrink: 0;
}

.hex-wrap svg.hex-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hex-wrap .hex-ring {
  position: absolute;
  inset: -6px;
  animation: hexSpin 12s linear infinite;
  opacity: 0.4;
}

.hex-avatar {
  position: absolute;
  inset: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(
    135deg,
    rgba(0, 87, 184, 0.4),
    rgba(0, 212, 255, 0.15)
  );
}

.hex-avatar .avatar-icon {
  font-size: 3rem;
  color: rgba(0, 212, 255, 0.5);
}

.hex-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Leadership card ── */

.leader-card {
  background: rgba(5, 14, 26, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  animation: borderPulse 6s ease-in-out infinite;
}

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-blue),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.leader-card:hover::before {
  transform: scaleX(1);
}

.leader-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 87, 184, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 212, 255, 0.08);
  animation: none;
}

.leader-card .corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(0, 212, 255, 0.3);
  border-style: solid;
  transition: border-color 0.3s;
}

.leader-card:hover .corner {
  border-color: var(--neon-cyan);
}

.corner-tl {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
}

.corner-tr {
  top: 10px;
  right: 10px;
  border-width: 1px 1px 0 0;
}

.corner-bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 1px 1px;
}

.corner-br {
  bottom: 10px;
  right: 10px;
  border-width: 0 1px 1px 0;
}

/* ── Role badge ── */

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--neon-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Cert tag ── */

.cert-tag {
  display: inline-block;
  background: rgba(0, 87, 184, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 3px;
  padding: 2px 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.cert-tag:hover {
  background: rgba(0, 212, 255, 0.12);
  color: var(--neon-cyan);
  border-color: rgba(0, 212, 255, 0.35);
}

/* ── Stat pill ── */

.stat-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s;
}

.stat-pill:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
}

/* ── Advisory card ── */

.advisory-card {
  background: rgba(5, 14, 26, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 12px;
  padding: 24px 22px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.advisory-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.3),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s;
}

.advisory-card:hover::after {
  transform: scaleX(1);
}

.advisory-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 87, 184, 0.08);
  transform: translateY(-4px);
}

/* ── Values ── */

.value-card {
  background: rgba(5, 14, 26, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s;
}

.value-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 87, 184, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 212, 255, 0.08);
}

.value-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.1),
    rgba(0, 87, 184, 0.2)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--neon-blue);
  transition: all 0.3s;
}

.value-card:hover .value-icon {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  color: var(--neon-cyan);
}

/* ── Timeline join line ── */

.join-line {
  width: 2px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(0, 212, 255, 0.4), transparent);
}

/* ── CTA ── */

.cta-section {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 184, 0.18),
    rgba(0, 212, 255, 0.04)
  );
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 87, 184, 0.1) 0%,
    transparent 60%
  );
  animation: pulseGlow 5s ease-in-out infinite;
}

/* ── Back to top ── */

#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: rgba(0, 87, 184, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 900;
}

#back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-top:hover {
  background: rgba(0, 212, 255, 0.18);
  box-shadow: 0 0 14px rgba(0, 212, 255, 0.3);
}

/* ── Mobile ── */

#mobile-menu {
  display: none;
  background: rgba(2, 8, 18, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

#mobile-menu.open {
  display: block;
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  .hero-title {
    font-size: 1.7rem;
  }
  .section-title {
    font-size: 1.0rem;
  }
  .hex-wrap {
    width: 100px;
    height: 116px;
  }
}

/* ── Counter ── */

.counter-val {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Progress bar ── */

.prog-track {
  height: 3px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.prog-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--mid-blue),
    var(--neon-blue),
    var(--neon-cyan)
  );
  box-shadow: 0 0 6px var(--neon-blue);
  width: 0;
  transition: width 1.6s ease;
}

/* Particles canvas */

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.3;
  pointer-events: none;
}

:root {
  --bg: #040610;
  --bg2: #070d1a;
  --surface: #0b1425;
  --surface2: #101d30;
  --border: rgba(0, 200, 255, 0.1);
  --accent: #00c8ff;
  --accent2: #0066ff;
  --accent3: #7000ff;
  --green: #00ff88;
  --red: #ff3366;
  --text: #e8f4ff;
  --muted: #6a8aac;
  --font-head: "Verdana", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 12px;
  --glow: 0 0 40px rgba(0, 200, 255, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  opacity: 0.4;
}

/* ─── HERO ─── */

/* 1. Force the section to full width */

/* ─── HERO SECTION: FULLY INTEGRATED ─── */

/* Add this to master.css */

#hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px 5% 25px;
  overflow: hidden;
}

#hero .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 5%; /* Adds breathing room for text */
    padding-right: 5%;
}


/* Ensure background elements stretch fully */
#hero {
    width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrollbars */
    position: relative;
}


.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --- HEADLINE & ACCENTS (Preserved) --- */

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -2px;
  margin-bottom: 28px;
  white-space: normal;
  color:white;
  /* Allows the <br> tags to work */
}

.hero-headline .line-accent {
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent2),
    var(--accent3)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- STATS (Preserved & Forced Row) --- */

.hero-stats {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48px;
  flex-wrap: nowrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* --- BACKGROUNDS & ORBS (Your Original Styles) --- */

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
      rgba(0, 200, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 60% at 50% 40%,
    black 40%,
    transparent 100%
  );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.18) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(112, 0, 255, 0.12) 0%,
    transparent 70%
  );
  bottom: 100px;
  left: -50px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 200, 255, 0.1) 0%,
    transparent 70%
  );
  top: 40%;
  left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
}

/* --- OTHER ELEMENTS (Badge, Sub, Buttons) --- */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 100px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 44px auto;
  font-weight: 300;
  line-height: 1.75;
 text-align-last: center !important;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* ─── TICKER ─── */

.ticker-bar {
  background: rgba(0, 102, 255, 0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.ticker-item .dot {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ─── SECTION COMMONS ─── */

section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.section-pad {
  padding: 50px 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
 }

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ─── THREAT COUNTER ─── */

#threat {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.threat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.threat-item {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}

.threat-item:last-child {
  border-right: none;
}

.threat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.threat-item:hover::before {
  transform: scaleX(1);
}

.threat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.threat-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.threat-label {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text);
}


/* --- SERVICES SECTION CSS --- */
.services-section { 
    padding: 80px 5%; 
    background-color: #000000; 
    font-family: 'Inter', sans-serif; 
}

/* Ensure the grid container is responsive and enforces 3 columns */
/* Override any potential Bootstrap or theme conflicts */
.services-grid {
    display: grid;
    /* No !important here - let media queries handle it */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Base style for all cards */
.service-card {
    background: var(--surface);
    padding: 44px 36px;
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,102,255,0.06), rgba(0,200,255,0.03));
    opacity: 0;
    transition: opacity 0.3s;
  }

  .service-card:hover { background: var(--surface2); }
  .service-card:hover::after { opacity: 1; }

/* Optional: Pushes the "Read more" button to the bottom if content length varies */
.service-card a {
    margin-top: auto;
    width: fit-content;
}

/* Responsive: 2 columns for tablets */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Responsive: 1 column for phones */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.06), rgba(0, 200, 255, 0.03));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: var(--surface2);
}

.service-card:hover::after {
    opacity: 1;
}
/* --- HEADING CARD SPECIFIC STYLES --- */

.heading-card {
  background: var(--surface2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Reset padding slightly if needed for the heading content */
  padding: 44px 36px;
}

.heading-card .section-label {
  display: block;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.heading-card .section-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.heading-card .service-desc {
  margin-bottom: 0;
}

/* --- SERVICE CARD ELEMENTS --- */

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

/* Icon Styles */

.icon-cyber {
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
}

.icon-iam {
  background: rgba(112, 0, 255, 0.15);
  border: 1px solid rgba(112, 0, 255, 0.3);
}

.icon-ai {
  background: rgba(0, 200, 255, 0.12);
  border: 1px solid rgba(0, 200, 255, 0.3);
}

.icon-learn {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.icon-cloud {
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
}

.icon-consult {
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid rgba(255, 51, 102, 0.25);
}

.service-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color:white;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  background: rgba(0, 200, 255, 0.07);
  border: 1px solid rgba(0, 200, 255, 0.15);
  color: var(--accent);
}

/* --- RESPONSIVE LAYOUT --- */

@media (max-width: 992px) {
        .services-grid { grid-template-columns: repeat(2, 1fr); } /* 2 columns on Tablets */
    }

    @media (max-width: 600px) {
        .services-grid { grid-template-columns: 1fr; } /* 1 column on Mobile */
    }

/* ─── SOC VISUAL ─── */

#soc {
  background: var(--bg2);
  overflow: hidden;
}

.soc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.soc-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}

.soc-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.panel-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.status-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--green);
}

.status-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

.threat-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  animation: slideIn 0.5s ease-out backwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feed-severity {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sev-critical {
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 51, 102, 0.6);
}

.sev-high {
  background: #ff8800;
  box-shadow: 0 0 8px rgba(255, 136, 0, 0.5);
}

.sev-medium {
  background: #ffd000;
}

.sev-low {
  background: var(--green);
}

.feed-text {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text);
}

.feed-time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
}

.soc-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.metric-box {
  background: rgba(0, 102, 255, 0.06);
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 10px;
  padding: 16px;
}

.metric-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── FEATURES / WHY ARFA ─── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: rgba(0, 200, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.feature-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 200, 255, 0.09);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 102, 255, 0.12);
  border: 1px solid rgba(0, 102, 255, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color:white;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── INDUSTRIES ─── */

#industries {
  background: var(--bg2);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-card {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.industry-card:hover {
  border-color: var(--accent);
  background: var(--surface2);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.08);
  transform: translateY(-4px);
}

.industry-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.industry-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color:white;
}

.industry-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color 0.3s;
  position: relative;
}

.testi-card:hover {
  border-color: rgba(0, 200, 255, 0.25);
}

.quote-mark {
  font-size: 4rem;
  color: var(--accent2);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: -10px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color:white;
}

.author-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── CTA BANNER ─── */

#cta-demo {
  background: linear-gradient(
    135deg,
    rgba(0, 102, 255, 0.12),
    rgba(0, 200, 255, 0.06),
    rgba(112, 0, 255, 0.08)
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-eyebrow {
  margin-bottom: 14px;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  color:white;
}

.cta-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.7;
}

.cta-form {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

input[type="email"],
input[type="text"] {
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}

input:focus {
  border-color: var(--accent);
}

/* ─── PARTNERS ─── */

.partners-row {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.partner-badge {
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--muted);
  letter-spacing: 1px;
  transition: all 0.3s;
}

.partner-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─── ABOUT ─── */

#about {
  background: var(--bg2);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--glow);
}

.africa-map {
  width: 100%;
  height: 320px;
  background: radial-gradient(
      ellipse 60% 80% at 40% 45%,
      rgba(0, 102, 255, 0.08) 0%,
      transparent 70%
    ),
    var(--surface2);
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.map-svg {
  width: 60%;
  opacity: 0.6;
}

.africa-dots {
  position: absolute;
  inset: 0;
}

.city-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: cityPulse 2s ease-in-out infinite;
}

@keyframes cityPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.city-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  animation: ripple 2s linear infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.value-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(0, 200, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-text .vt-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 3px;
  color:white;
}

.value-text .vt-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── CONTACT ─── */

#contact {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--glow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.form-group.full {
  grid-column: 1 / -1;
}

input[type="email"],
input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}

select option {
  background: var(--surface);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
}

.cert-tag {
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
}

/* ─── ANIMATIONS ─── */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.visible > *:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger.visible > *:nth-child(3) {
  transition-delay: 0.15s;
}

.stagger.visible > *:nth-child(4) {
  transition-delay: 0.2s;
}

.stagger.visible > *:nth-child(5) {
  transition-delay: 0.25s;
}

.stagger.visible > *:nth-child(6) {
  transition-delay: 0.3s;
}

.stagger.visible > *:nth-child(7) {
  transition-delay: 0.35s;
}

.stagger.visible > *:nth-child(8) {
  transition-delay: 0.4s;
}

/* ─── GRADIENT TEXT UTILITY ─── */

.grad-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── MOBILE ─── */

@media (max-width: 900px) {
  .services-grid,
  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .threat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .soc-layout,
  .about-layout,
  .contact-layout,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .nav-links {
    display: none;
  }
  .threat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .hero-stats {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .threat-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

:root {
  --neon-blue: #00d4ff;
  --neon-cyan: #00ffea;
  --neon-green: #00ff88;
  --dark-bg: #020b18;
  --glow-blue: 0 0 20px rgba(0, 212, 255, 0.4), 0 0 40px rgba(0, 212, 255, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark-bg);
  color: #c8d8e8;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-blue);
  border-radius: 3px;
}

/* Grid overlay */

/* Glow */

.glow-text {
  color: var(--neon-blue);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.8);
}

.glow-green {
  color: var(--neon-green);
  text-shadow: 0 0 18px rgba(0, 255, 136, 0.8);
}

.glow-yellow {
  color: #ffcc00;
  text-shadow: 0 0 18px rgba(255, 204, 0, 0.8);
}

/* Glass */

.glass-card {
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 14px;
  transition: all 0.35s ease;
}

.glass-card:hover {
  border-color: rgba(0, 212, 255, 0.45);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.18), 0 0 60px rgba(0, 212, 255, 0.06);
  transform: translateY(-4px);
}

/* Section label */

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.section-py {
  padding-top: 96px;
  padding-bottom: 96px;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Alert badge */

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.22);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

/* Stat cards */

.stat-pill {
  background: rgba(10, 22, 40, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.stat-pill:nth-child(2) {
  animation-delay: 0.7s;
}

.stat-pill:nth-child(3) {
  animation-delay: 1.4s;
}

.stat-pill:nth-child(4) {
  animation-delay: 2.1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Challenge table */

.challenge-row {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 18px 24px;
}

.challenge-row:hover {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.04);
}

/* Feature cards */

.feature-card {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-blue),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.14);
  transform: translateY(-4px);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s;
  flex-shrink: 0;
}

.feature-card:hover .icon-box {
  background: rgba(0, 212, 255, 0.14);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.3);
}

/* Process nodes */

.p-node {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 25, 55, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--neon-blue);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);
  transition: all 0.3s;
  flex-shrink: 0;
}

.p-node.lit {
  border-color: var(--neon-blue);
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.45);
  background: rgba(0, 212, 255, 0.08);
}

.p-line {
  height: 2px;
  flex: 1;
  background: linear-gradient(90deg, var(--neon-blue), rgba(0, 212, 255, 0.15));
  position: relative;
  overflow: hidden;
}

.p-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, white, transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  to {
    left: 100%;
  }
}

/* Progress bars */

.prog-track {
  height: 4px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.prog-bar {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 1.6s ease;
}

/* Service chips */

.service-chip {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.service-chip:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.12);
}

/* Quote block */

.quote-block {
  background: rgba(0, 212, 255, 0.04);
  border-left: 3px solid var(--neon-blue);
  border-radius: 0 12px 12px 0;
  padding: 20px 28px;
}

/* CTA section */

.cta-bg {
  background: radial-gradient(
      ellipse 70% 70% at 50% 50%,
      rgba(0, 80, 180, 0.15) 0%,
      transparent 70%
    ),
    var(--dark-bg);
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}


.btn {
    position: relative;
    z-index: 999; /* Force the button to be on top */
}


/* Whatsapp chat button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    /* Updated to your gradient */
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Optional: Slight hover effect for the gradient */
.whatsapp-float:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* Mobile responsive adjustment */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Hover effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Mobile responsive adjustment */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}



@media (max-width: 639.98px) {
        .sm\:text-base {
          font-size: 1.125rem !important;
          line-height: 1.75rem !important;
        }
      }


/* Container for the newsletter section */
/* 5-Column Footer Layout */
.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.footer-col {
  min-width: 0; /* Prevents overflow */
}

/* Compact Newsletter Form */
.newsletter-col h4 {
  margin-bottom: 12px;
}

.newsletter-form-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form-compact input[type="email"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
}

.newsletter-form-compact button {
  padding: 8px;
  background: #0ea5e9;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
}

.newsletter-form-compact button:hover {
  background: #0284c7;
}

/* Compact Social Buttons */
.footer-socials-compact {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f1f5f9;
  color: #334155;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}

.social-btn-small:hover {
  background: #0ea5e9;
  color: white;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #0ea5e9;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-cert {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-tag {
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

/* Responsive - Stack on mobile */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-col {
    grid-column: 1 / -1; /* Full width on tablet */
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}