 /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    :root {
      --primary: #004080;
      --accent: #f4c500;
      --dark: #0a1a2f;
      --light: #f8f9fc;
      --gray: #64748b;
      --radius: 16px;
      --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--light);
      color: #1e293b;
      line-height: 1.7;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
    @keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-12px); } }
    @keyframes pulse { 0% { box-shadow:0 0 0 0 rgba(244,197,0,0.4); } 70% { box-shadow:0 0 0 20px rgba(244,197,0,0); } 100% { box-shadow:0 0 0 0 rgba(244,197,0,0); } }
    .animate { opacity:0; animation: fadeInUp 0.8s forwards; }
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }

    /* ===== NAVIGATION ===== */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    .navbar.scrolled { padding: 0.75rem 1.5rem; background: rgba(255,255,255,0.98); }
    .nav-brand {
      display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.5rem; color: var(--primary);
    }
    .nav-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
    .nav-links {
      display: flex; gap: 2rem; list-style: none;
    }
    .nav-links a {
      font-weight: 600; color: var(--primary); position: relative; padding: 0.5rem 0;
      transition: var(--transition);
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px;
      background: var(--accent); border-radius: 2px; transition: var(--transition);
    }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

    /* Mobile Menu */
    .hamburger {
      display: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--primary);
      z-index: 1001;
    }
    .mobile-menu {
      position: fixed;
      top: 0; left: -100%;
      width: 280px; height: 100vh;
      background: var(--primary);
      padding: 5rem 2rem 2rem;
      transition: left 0.4s ease;
      z-index: 1000;
      box-shadow: 5px 0 20px rgba(0,0,0,0.2);
    }
    .mobile-menu.open { left: 0; }
    .mobile-menu a {
      display: block; color: white; font-size: 1.2rem; font-weight: 600;
      padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mobile-menu a:hover { color: var(--accent); }
    .overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(0,0,0,0.6); opacity: 0; visibility: hidden;
      transition: all 0.3s; z-index: 999;
    }
    .overlay.show { opacity: 1; visibility: visible; }

    /* Dark Mode Toggle */
    .dark-toggle {
      background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--primary);
    }

    /* ===== HERO ===== */
    .hero {
      height: 100vh; min-height: 600px; position: relative; display: flex; align-items: center;
      color: white; text-align: center; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,64,128,0.85), rgba(10,26,47,0.9)),
      url('https://images.unsplash.com/photo-1497633763998-76a37f16bc76?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
      z-index: -1; filter: brightness(0.7);
    }
    .hero-content {
      max-width: 900px; margin: 0 auto; padding: 2rem;
    }
    .hero h1 { font-size: 4rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.1; text-shadow: 0 4px 12px rgba(0,0,0,0.4); }
    .hero .highlight { color: var(--accent); }
    .hero p { font-size: 1.4rem; margin-bottom: 2rem; opacity: 0.95; }
    .btn {
      display: inline-block; padding: 1rem 2.5rem; background: var(--accent); color: var(--primary);
      font-weight: 700; font-size: 1.1rem; border-radius: 50px; transition: var(--transition);
      box-shadow: 0 8px 20px rgba(244,197,0,0.3);
    }
    .btn:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(244,197,0,0.4); animation: pulse 1.5s infinite; }

    /* ===== SECTIONS, STATS, CARDS, etc. (same as before) ===== */
    .section { padding: 5rem 0; }
    .section-title {
      text-align: center; font-size: 2.8rem; font-weight: 800; color: var(--primary);
      margin-bottom: 3rem; position: relative;
    }
    .section-title::after {
      content: ''; width: 80px; height: 5px; background: var(--accent); border-radius: 3px;
      position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    }
    .stats {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem; text-align: center; padding: 4rem 1.5rem; background: var(--primary); color: white;
    }
    .stat-num { font-size: 3.5rem; font-weight: 900; display: block; }
    .stat-label { font-size: 1rem; opacity: 0.9; }
    .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
    .card {
      background: white; border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08); transition: var(--transition); text-align: center;
      padding: 2rem; display: flex; flex-direction: column; align-items: center;
    }
    .card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
    .card i { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; }
    .card h3 { font-size: 1.5rem; margin-bottom: 0.75rem; color: var(--primary); }

    .news-card { display: flex; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: var(--transition); }
    .news-card:hover { transform: translateY(-8px); }
    .news-img { width: 40%; object-fit: cover; }
    .news-body { padding: 1.5rem; flex: 1; }
    .news-body h3 { font-size: 1.4rem; margin-bottom: 0.75rem; color: var(--primary); }
    .news-link { color: var(--accent); font-weight: 600; margin-top: 1rem; display: inline-block; }

    .article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
    .article-card { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.1); transition: var(--transition); text-align: center; }
    .article-card img { height: 160px; object-fit: cover; }
    .article-card h4 { padding: 1rem; font-size: 1.1rem; color: var(--primary); }

    .footer { background: var(--dark); color: white; padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
    .footer h3 { color: var(--accent); margin-bottom: 1rem; font-size: 1.3rem; }
    .footer ul { list-style: none; }
    .footer ul li { margin-bottom: 0.75rem; }
    .footer ul a:hover { color: var(--accent); }
    .social a { margin-right: 1rem; font-size: 1.4rem; color: var(--accent); }
    .copy { text-align: center; margin-top: 3rem; opacity: 0.7; font-size: 0.9rem; }

    /* Dark Mode */
    body.dark { background: #0f172a; color: #e2e8f0; }
    body.dark .navbar { background: rgba(15,23,42,0.95);  color: #e2e8f0; }
    body.dark .card, body.dark .news-card, body.dark .article-card { background: #1e293b; }
    body.dark .section-title { color: #60a5fa; }


/* DARK MODE: Make all navbar text & icons white */
body.dark .navbar,
body.dark .nav-brand,
body.dark .nav-links a,
body.dark .hamburger,
body.dark .dark-toggle {
  color: white !important;
}

body.dark .nav-links a::after {
  background: var(--accent); /* Keeps accent underline */
}

body.dark .hamburger,
body.dark .dark-toggle i {
  color: white;
}



    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 768px) {
      .nav-links, .dark-toggle { display:none; }
      .hamburger { display: block; }
      .hero h1 { font-size: 2.8rem; }
      .hero p { font-size: 1.1rem; }
      .stats { grid-template-columns: 1fr; }
      .news-card { flex-direction: column; }
      .news-img { width: 100%; height: 200px; }
      /* REPLACE THIS LINE in your @media (max-width: 768px) */
.dark-toggle { display: none; }

/* WITH THIS (show on mobile too): */
.dark-toggle { display: block; } /* Always visible */
    }