/* =========================
   DESIGN TOKENS (USHAF)
========================= */

:root {
  /* Brand */
  --primary: #0f2a44;        /* Governance blue */
  --accent: #c9a227;         /* Authority gold */
  --green: #006400;
  --yellow: #f4c430;

  /* Neutrals */
  --black: #1f2933;
  --white: #ffffff;
  --muted: #6b7280;
  --bg-soft: #f4f6f8;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 8px 20px rgba(0,0,0,.05);
  --shadow-md: 0 12px 30px rgba(0,0,0,.08);
}
/* =========================
   BASE / TYPOGRAPHY
========================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
}

p {
  margin: 0;
  color: var(--muted);
}

/* =========================
   LAYOUT
========================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container.narrow {
  max-width: 820px;
}

.section {
  padding: 90px 0;
}

.section.bg-light {
  background: var(--bg-soft);
}

.text-center {
  text-align: center;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .3s ease;
}

.btn--primary {
  background: var(--accent);
  color: #000;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--outline {
  border: 2px solid var(--white);
  color: var(--white);
}

/* =========================
   GALLERY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 18px;
  text-align: center;
}

/* =========================
   BADGE
========================= */

.badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(0, 100, 0, .1);
  color: var(--green);
}


/* =========================
   PROGRAMS PAGE
========================= */

.programs-page .hero {
  padding: 100px 0;
  text-align: center;
}

.programs-page .hero h1 {
  font-size: 2.8rem;
}




/* =========================
   GLOBAL RESET & BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.7;
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background: #ffffff;
}*/

/* =========================
   HEADER / NAVIGATION
========================= */

/* LOGO + FULL NAME INLINE */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px; /* space between logo and full name */
}

.logo {
  height: 48px;
  width: auto;
}


.logo-fullname {
  font-size: 0.95rem;
  color: #ffcc00; /* Yellow */
  font-weight: 600;
  white-space: nowrap; /* Prevent wrapping */
}

/* NAVIGATION */
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.main-nav a:hover {
  color: #ffcc00;
}

/* HEADER CTA */
.header-cta .btn-header {
  background: #ffcc00;
  color: #000000;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.header-cta .btn-header:hover {
  background: #e6b800;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.main-nav a {
  color: var(--text-primary);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}





.btn-secondary {
  background: var(--green);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
}



.site-header .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 48px;
}

/* NAV LINKS */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover {
  color: #ffcc00; /* Yellow hover */
}

/* HEADER CTA BUTTON */
.header-cta .btn-header {
  background: #ffcc00; /* Yellow */
  color: #000000;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease-in-out;
}

.header-cta .btn-header:hover {
  background: #e6b800;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(to right, #ffcc00, #009933); /* Yellow → Green */
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* HERO BUTTONS */
.hero .btn-primary {
  background: #000000;
  color: #ffcc00;
  padding: 0.8rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 1rem;
  display: inline-block;
}

.hero .btn-secondary {
  background: #009933;
  color: #ffffff;
  padding: 0.8rem 1.4rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* HERO IMAGE */
.hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-top: 2.5rem;
  border-radius: 8px;
}

/* =========================
   PROGRAMS SECTION
========================= */
.programs {
  padding: 4rem 2rem;
  text-align: center;
}

.programs h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.program-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.card {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* =========================
   IMPACT METRICS
========================= */

.impact {
  padding: 4rem 2rem;
  text-align: center;
  background: #fafafa;
}

.counters {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.counter {
  background: #000000;
  color: #ffcc00;
  padding: 1.5rem;
  border-radius: 8px;
  width: 180px;
}

/* =========================
   BLOG PREVIEW
========================= */
.blog-preview {
  padding: 4rem 2rem;
  text-align: center;
}

/* =========================
   NEWSLETTER
========================= */
.newsletter {
  padding: 4rem 2rem;
  text-align: center;
  background: #009933;
  color: #ffffff;
}

#newsletter-form input {
  padding: 0.6rem;
  width: 260px;
  border-radius: 4px;
  border: none;
  margin-right: 0.5rem;
}

#newsletter-form button {
  padding: 0.6rem 1.2rem;
  background: #ffcc00;
  color: #000000;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #000000;
  color: #ffffff;
  padding: 2.5rem 2rem;
  text-align: center;
}

footer .social-links a {
  color: #ffcc00;
  margin: 0 0.5rem;
  text-decoration: none;
}

/* =========================
   ABOUT PAGE – GLOBAL
========================= */
.about-page section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-page h1,
.about-page h2 {
  color: #000;
  margin-bottom: 1rem;
}

.about-page p {
  max-width: 800px;
  margin: 0 auto 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.about-hero {
  position: relative;
  background: url('../images/outreach01.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 120px 20px 80px;
  text-align: center;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(31, 122, 77, 0.65);
}

.about-hero .hero-content {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.fluid-section {
  width: 100%;
  background: var(--bg-section);
  padding: 90px 20px;
}

.fluid-section.green {
  background: var(--green);
  color: var(--white);
}

.container {
  max-width: var(--container-width);
  margin: auto;
}


/* =========================
   ABOUT HERO
========================= */
.about-page .hero {
  background: linear-gradient(to right, #ffcc00, #009933);
  color: #ffffff;
  text-align: center;
}

.about-page .hero h1 {
  font-size: 3rem;
}

.about-page .hero p {
  font-size: 1.25rem;
  color: #ffffff;
}

/* =========================
   MISSION & VISION CARDS
========================= */
.about-page .impact {
  background: #f9f9f9;
}

.about-page .counter {
  background: #ffffff;
  color: #000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-page .counter h3 {
  color: #009933;
  margin-bottom: 0.5rem;
}

/* =========================
   PROGRAM / VALUES CARDS
========================= */
.about-page .program-cards .card {
  background: #ffffff;
  border-top: 4px solid #ffcc00;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page .program-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.about-page .card h3,
.about-page .card strong {
  color: #000;
  margin-bottom: 0.5rem;
}

/* =========================
   APPROACH LIST
========================= */
.about-page .blog-preview ul {
  list-style: none;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 0;
}

.about-page .blog-preview li {
  background: #ffffff;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid #009933;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* =========================
   CTA SECTION
========================= */
.about-page .newsletter {
  text-align: center;
}

.about-page .newsletter a {
  display: inline-block;
  margin: 1rem 0.5rem 0;
}

/* =========================
   HERO IMAGE SLIDER
========================= */
/* =========================
   HERO IMAGE SLIDER
========================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 8px;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 260px;
  }
}

/* SLIDER CONTROLS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #ffcc00;
  border: none;
  padding: 10px 14px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.2s ease;
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
  left: 12px;
}

.slider-btn.next {
  right: 12px;
}

/* =========================
   MISSION & VISION SECTION
========================= */
.mission-vision {
  padding: 4rem 2rem;
  text-align: center;
  background: #ffffff;
}

.mission-vision h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #000;
}

.mission-vision .section-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #555;
  font-size: 1.05rem;
}

.mv-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mv-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  max-width: 480px;
  text-align: left;
  border-top: 4px solid #ffcc00;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.mv-card h3 {
  color: #000;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.mv-card p {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

.what-we-do {
  padding: 80px 0;
  background-color: #f9f9f9;
}



/* =========================
   CARD GRID – ALIGNMENT
========================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 36px;
  justify-content: center;
}

/* =========================
   CARD BASE – REFINED
========================= */
.card {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 16px;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.12);
}


.card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #0a3d2f;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}


.card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 204, 0, 0.15); /* soft yellow */
}

.card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card:nth-child(1) .card-icon {
  background: rgba(255, 204, 0, 0.18);
}

.card:nth-child(2) .card-icon {
  background: rgba(0, 153, 51, 0.18);
}

.card:nth-child(3) .card-icon {
  background: rgba(0, 0, 0, 0.12);
}

/* =========================
   ABOUT PAGE STYLES
========================= */

/* ---------- HERO SECTION ---------- */
/* =========================
   GENERAL RESET & BASE
========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.about-page {
  font-family: 'Arial', sans-serif;
  line-height: 1.7;
  color: #000; /* Black text for readability */
  background-color: #fff; /* White main background */
}

/* =========================
   HEADER
========================== */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header .logo {
  height: 50px;
  width: auto;
}

.site-header .logo-fullname {
  font-size: 14px;
  font-weight: bold;
  color: #FFD700; /* Yellow */
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #28a745; /* Green */
}

.header-cta .btn-primary {
  background-color: #FFD700; /* Yellow */
  color: #000; 
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* =========================
   HERO SECTION
========================== */
.about-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #28a745 url('../images/outreach01.jpg') center/cover no-repeat;
  color: #fff;
  padding: 140px 20px 80px;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.about-hero .hero-content {
  max-width: 800px;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.about-hero .btn-primary,
.about-hero .btn-secondary {
  margin: 10px 10px 0 0;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
}

.about-hero .btn-primary {
  background-color: #FFD700; /* Yellow CTA */
  color: #000;
}

.about-hero .btn-secondary {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid #fff;
}

/* Hero Divider */
.hero-divider {
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  margin-top: -40px;
}

/* =========================
   ABOUT SECTION
========================== */
.about-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.about-section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: #28a745; /* Green */
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  color: #000;
}

/* =========================
   MISSION & VISION
========================== */
.mission-vision {
  padding: 80px 20px;
  background-color: #f9f9f9; /* soft neutral background */
}

.mv-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.mv-card {
  background-color: #28a745; /* Green cards */
  color: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 450px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #FFD700; /* Yellow accent for headings */
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

/* =========================
   WHAT WE DO
========================== */
.what-we-do {
  padding: 80px 20px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.cards-grid .card {
  background-color: #fff;
  color: #000;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.cards-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.card-icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* =========================
   IMPACT COUNTERS
========================== */
.impact {
  padding: 80px 20px;
  background-color: #FFD700; /* Yellow background for highlight */
  text-align: center;
  color: #000;
}

.impact .counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.impact .counter h3 {
  font-size: 2.5rem;
  color: #28a745; /* Green numbers */
  margin-bottom: 8px;
}

.impact .counter p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* =========================
   CTA SECTION
========================== */
.cta-section {
  background-color: #28a745; /* Green CTA section */
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-section .btn-primary {
  background-color: #FFD700; /* Yellow button */
  color: #000;
}

.cta-section .btn-secondary {
  background-color: #000; /* Black secondary */
  color: #fff;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
  margin: 10px;
  padding: 12px 30px;
  border-radius: 6px;
}

/* =========================
   NEWSLETTER
========================== */
.newsletter {
  padding: 80px 20px;
  background-color: #FFD700; /* Yellow section */
  color: #000;
  text-align: center;
}

.newsletter input[type="email"] {
  padding: 12px 15px;
  border-radius: 6px;
  border: none;
  margin-right: 10px;
  width: 280px;
  max-width: 90%;
}

.newsletter button {
  padding: 12px 25px;
  border-radius: 6px;
  border: none;
  background-color: #28a745; /* Green button */
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.newsletter button:hover {
  background-color: #1e7e34;
}

/* =========================
   FOOTER
========================== */
footer {
  background-color: #000; /* Black footer */
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: #FFD700; /* Yellow links */
  margin: 0 10px;
  text-decoration: none;
}

footer a:hover {
  color: #28a745; /* Green hover */
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
  .mv-cards, .cards-grid, .impact .counters {
    flex-direction: column;
    gap: 20px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }
}

.sponsors-section {
  background: var(--white);
  text-align: center;
}

.sponsors-section h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--green);
}

.sponsors-section .section-intro {
  max-width: 650px;
  margin: 0 auto 50px;
  color: var(--text-muted);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  align-items: center;
}

.sponsors-grid img {
  max-width: 140px;
  margin: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sponsors-grid img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.team-section {
  background: #f9f9f9;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.team-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid var(--green);
}

.team-card h3 {
  margin-bottom: 6px;
  color: #000;
}

.team-card span {
  font-size: 0.9rem;
  color: #555;
}

/* =========================
   Card Inline CTA
   ========================= */

.card-cta {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.card-cta:hover,
.card-cta:focus-visible {
  color: var(--yellow);
}


/* =========================
   Section CTA Wrapper
   ========================= */

.section-cta {
  margin-top: 50px;
  text-align: center;
}


/* =========================
   Pillar CTA Button
   ========================= */

.pillar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: auto; /* enables uniform vertical alignment inside flex cards */
  padding: 10px 22px;

  background-color: var(--yellow);
  color: var(--black);

  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;

  border-radius: 999px; /* pill shape */
  align-self: center;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.pillar-cta:hover,
.pillar-cta:focus-visible {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}


/* =========================
   Card Layout Support
   ========================= */

.cards-grid .card {
  display: flex;
  flex-direction: column;
}


/* =========================
   Responsive Adjustments
   ========================= */

@media (max-width: 768px) {
  .pillar-cta {
    font-size: 15px;
    padding: 12px 26px;
  }
}


/* =========================
   Modal Base
   ========================= */



/* =========================
   PILLAR MODAL
========================= */

/* =========================
   PILLAR MODAL (SCOPED)
========================= */

.pillar-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pillar-modal.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.pillar-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.pillar-modal-content {
  position: relative;
  max-width: 520px;
  margin: 10vh auto;
  background: var(--white);
  padding: 32px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.pillar-modal-content h2 {
  color: var(--green);
  margin-bottom: 14px;
}

.pillar-modal-content p {
  color: var(--black);
  line-height: 1.6;
}

.pillar-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--black);
}

/* Mobile */
@media (max-width: 600px) {
  .pillar-modal-content {
    margin: 15vh 16px;
    padding: 24px;
  }
}


/* Animation */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .modal-dialog {
    width: calc(100% - 32px);
    margin: 12vh auto;
  }
}

/* Program Styling */

/* =========================
   PROGRAMS PAGE (USHAF)
========================= */

.programs-page {

  /* ---------- HERO ---------- */
  .page-hero {
    background: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.55)
      ),
      url('../images/outreach01.jpg') center / cover no-repeat;
    color: var(--white);
    padding: 120px 20px 90px;
    text-align: center;
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3rem);
    margin-bottom: 16px;
    font-weight: 700;
  }

  .page-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
  }

  /* ---------- INTRO ---------- */
  .section-intro {
    font-size: 1.05rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    color: #444;
  }

  /* ---------- PROGRAMS GRID ---------- */
  .cards-grid {
    margin-top: 50px;
  }

  .cards-grid .card {
    background-color: var(--white);
    border-radius: 18px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cards-grid .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.12);
  }

  .cards-grid h3 {
    color: var(--green);
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .cards-grid p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #555;
    flex-grow: 1;
  }

  /* CTA already exists — refine only */
  .pillar-cta {
    margin-top: 18px;
  }

  /* ---------- MUTED SECTION ---------- */
  .section-muted {
    background-color: #f8faf8;
  }

  /* ---------- CTA SECTION ---------- */
  .cta-section {
    background: linear-gradient(
      135deg,
      var(--green),
      #0b5f2b
    );
    color: var(--white);
    text-align: center;
    padding: 90px 20px;
  }

  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 14px;
  }

  .cta-section p {
    max-width: 620px;
    margin: 0 auto 28px;
    opacity: 0.95;
  }

  .cta-section .btn-primary {
    background-color: var(--yellow);
    color: var(--black);
    margin-right: 10px;
  }

  .cta-section .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
  }

  .cta-section a:hover {
    opacity: 0.9;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .programs-page .page-hero {
    padding: 90px 16px 70px;
  }

  .programs-page .page-hero h1 {
    font-size: 2rem;
  }

  .programs-page .cards-grid .card {
    padding: 26px 20px;
  }
}

body.program-page {
  background: var(--white);
}

.program-hero {
  background: linear-gradient(
    135deg,
    var(--green),
    #0b5f2b
  );
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.program-image-block {
  background: url('../images/outreach02.jpg') center / cover no-repeat;
  min-height: 320px;
  border-radius: 16px;
}


/* =========================
   Programs Hero
========================= */

/* =========================
   PROGRAM HERO
========================= */

.program-hero {
  background: linear-gradient(
    180deg,
    rgba(0, 128, 96, 0.08),
    rgba(0, 128, 96, 0.02)
  );
  padding: 90px 0 70px;
  text-align: center;
}

.program-hero {
  padding: 120px 20px 100px;
  background: linear-gradient(
      rgba(15, 42, 68, 0.85),
      rgba(15, 42, 68, 0.85)
    ),
    url("assets/images/civic-bg.jpg") center/cover no-repeat;
  color: var(--white);
  text-align: center;
}


.program-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
}


.program-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.9;
}


/* =========================
   Gallery Section
========================= */

.programs-gallery {
  background-color: var(--white);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

/* =========================
   Gallery Item
========================= */

.gallery-item {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Caption */
.gallery-item figcaption {
  padding: 16px;
  font-weight: 600;
  color: var(--green);
  text-align: center;
  background-color: var(--yellow);
}

/* =========================
   Mobile Refinement
========================= */

@media (max-width: 600px) {
  .gallery-item img {
    height: 200px;
  }
}

.programs-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.programs-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  opacity: 0.95;
}

.gallery-item figcaption {
  padding: 18px 16px 20px;
  text-align: center;
  background-color: var(--white);
}


/* Program Name */
.gallery-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin: 6px 0 0;
}


/* =========================
   VOLUNTEER HERO
========================= */

.volunteer-hero {
  background: linear-gradient(
    180deg,
    rgba(0, 128, 96, 0.1),
    rgba(0, 128, 96, 0.03)
  );
  padding: 80px 0 60px;
  text-align: center;
}

.volunteer-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 12px;
}

.volunteer-hero p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.9;
}

/* =========================
   VOLUNTEER FORM
========================= */

.volunteer-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* =========================
   BUTTON
========================= */
:root {
  --primary: #0f2a44;        /* Deep governance blue */
  --accent: #c9a227;         /* Authority gold */
  --text-dark: #1f2933;
  --text-muted: #6b7280;
  --bg-soft: #f4f6f8;
  --white: #ffffff;
}




.btn-primary:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* =========================
   UPCOMING PROGRAM
========================= */

.upcoming-program {
  padding: 80px 20px;
  background: #f9f9f9; /* neutral, clean */
}



.program-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.program-subtitle {
  font-size: 16px;
  font-style: italic;
  color: #555;
  margin-bottom: 24px;
}

.program-description {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

.program-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.program-hero {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
}

.hero-subtitle {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.bg-light {
  background: #f7f7f7;
}

.styled-list {
  padding-left: 20px;
}

.styled-list li {
  margin-bottom: 10px;
}

.cta-section {
  text-align: center;
}


.section {
  padding: 90px 20px;
}

.section.bg-light {
  background: var(--bg-soft);
}

.container.narrow {
  max-width: 820px;
  margin: 0 auto;
}



.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent);
  display: block;
  margin-top: 12px;
}

.styled-list {
  margin-top: 20px;
  padding-left: 0;
  list-style: none;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--text-dark);
}

.styled-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 15px;
}

.program-actions {
  margin-top: 30px;
}



.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
}
