:root {
  --primary-color: #080f5b;     /* dark blue */
  --primary-gradient: linear-gradient(135deg, #080f5b, #3a0ca3); /* hero gradient */
  --accent-color: #6cb4ee;      /* lighter blue */
  --accent-gradient: linear-gradient(135deg, #6cb4ee, #48cae4);
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --text-dark: #333333;
  --text-light: #ffffff;
}

/* =======================
   GENERAL
======================= */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

a {
  transition: 0.3s ease;
}

/* =======================
   NAVBAR
======================= */
.navbar {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 14px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

/* Logo + title */
.usman {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nwis {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff10;
  padding: 4px;
}

.usman span {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: var(--text-light);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
}

/* Underline hover + active */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Optional pill emphasis for one item, e.g. Peer Help */
.nav-links a.highlight {
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
}

.nav-links a.highlight:hover {
  background: var(--accent-color);
  color: #02063a;
}

.footer {
  text-align: center;
  padding: 10px;
  background: var(--primary-gradient);
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.5px;
  bottom:0;
  position:fixed;
  width:100%
}
/* Wrapper that gives the article breathing room */
.news-article-wrapper {
  background: #f5f7fa;              /* same light bg as home */
  padding: 60px 20px 80px;
}

/* White card for the article */
.news-article {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 36px 30px 40px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

/* Tiny label above the title */
.news-article-tag {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #6b7280;
  margin-bottom: 8px;
  text-align: center;
}

/* Main headline */
.news-article-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: #080f5b;
  text-align: center;
}

/* Meta line under the title */
.news-article-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 22px;
  text-align: center;
}

/* Body paragraphs */
.news-article p {
  line-height: 1.8;
  font-size: 15px;
  color: #374151;
  margin-bottom: 16px;
}

/* Optional: emphasize any subheadings in the article */
.news-article-subheading {
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 6px;
  color: #111827;
}

/* Link back to main news page */
.news-back-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  color: #080f5b;
  font-weight: 600;
}

  MOBILE NAVBAR FIX (ALL-IN-ONE)
   =============================== */

.hamburger {
  display: none;
}

@media (max-width: 768px) {

  /* NAVBAR CONTAINER */
  .navbar {
    position: relative;
    padding: 14px 18px;
    height: 64px;
  }

  /* LOGO */
  .logo {
    font-size: 20px;
    line-height: 1.1;
  }

  .usman {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* HAMBURGER */
  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: white;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1100;
  }

  /* NAV LINKS (HIDDEN BY DEFAULT) */
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #080f5b;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 12px 0;
    z-index: 1000;
    animation: slideDown 0.25s ease-out;
  }

  /* SHOW MENU WHEN ACTIVE */
  .nav-links.show {
    display: flex;
  }

  /* NAV ITEMS */
  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
  }
}

/* SLIDE ANIMATION */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
