:root {
  --primary:#0a3d62;
  --accent:#1e90ff;
  --bg:#f4f6f8;
}

* { margin:0; padding:0; box-sizing:border-box; font-family:Inter,Arial; }
body { background:var(--bg); overflow-x:hidden; }

/* SCROLL BAR */
#scroll-progress {
  position:fixed;
  top:0; left:0;
  height:4px;
  width:0%;
  background:var(--accent);
  z-index:9999;
}

/* NAV */
.nav-wrapper {
  position:fixed;
  width:100%;
  background:#fff;
  border-bottom:1px solid #ddd;
  z-index:999;
}
.nav {
  max-width:1200px;
  margin:auto;
  padding:15px;
  display:flex;
  justify-content:space-between;
}
.nav-links { display:flex; gap:30px; list-style:none; }

/* HERO */
.hero {
  height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  
}
.hero .bg {
  position:absolute;
  inset:0;
  background:url('assets/bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-content {
  position:relative;
  color:#fff;
  text-align:center;
}

/* SECTIONS */
.section {
  padding:120px 10%;
  text-align:center;
}
.section.light {
  background:#fff;
}

/* CARDS */
.card {
  background:#fff;
  padding:40px;
  margin:20px auto;
  max-width:320px;
  border-left:5px solid var(--primary);
}

/* FOOTER */
.mega-footer {
  background:#0a3d62;
  color:#fff;
  padding:60px 10%;
}
.footer-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}
.footer-grid a { color:#ccc; display:block; margin:8px 0; }
.footer-bottom {
  text-align:center;
  margin-top:40px;
  font-size:14px;
}

/* ===============================
   DARK ZONE (SOC STYLE CONTAINER)
   =============================== */

.dark-zone {
  background: radial-gradient(circle at top, #0b132b, #020617);
  padding: 140px 8%;
}

.dark-box {
  background: rgba(8, 12, 28, 0.75);
  border: 1px solid rgba(0, 170, 255, 0.15);
  border-radius: 18px;
  padding: 80px 60px;
  box-shadow:
    0 0 40px rgba(0, 170, 255, 0.08),
    inset 0 0 30px rgba(0, 170, 255, 0.05);
}

/* TITLE */
.section-title {
  text-align: center;
  color: #e6f1ff;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

/* GRID */
.neon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* ===============================
   NEON CARD
   =============================== */

.neon-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(12, 18, 42, 0.9),
    rgba(8, 12, 28, 0.95)
  );
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  color: #cbd5f5;
  border: 1px solid rgba(0, 170, 255, 0.25);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* NEON BORDER GLOW */
.neon-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 200, 255, 0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ICON */
.neon-card i {
  font-size: 38px;
  color: #38bdf8;
  margin-bottom: 18px;
  text-shadow:
    0 0 10px rgba(56, 189, 248, 0.6),
    0 0 25px rgba(56, 189, 248, 0.4);
}

/* TEXT */
.neon-card h3 {
  margin-bottom: 10px;
  color: #e6f1ff;
}

.neon-card p {
  font-size: 14px;
  opacity: 0.85;
}

/* HOVER EFFECT */
.neon-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 25px rgba(0, 200, 255, 0.35),
    0 0 60px rgba(0, 200, 255, 0.15);
  border-color: rgba(0, 200, 255, 0.6);
}

.neon-card:hover::before {
  opacity: 1;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {
  .dark-box {
    padding: 50px 25px;
  }

  .neon-card {
    padding: 30px 20px;
  }
}

a{
    text-decoration: none;
}