/* -------------------- Variables / Brand Colors -------------------- */
:root {
  --green-dark: #064E3B;   /* Authority, trust */
  --green-primary: #16A34A; /* Action, growth */
  --gold: #FFD700;        /* Hope, highlights */
  --white: #FFFFFF;
  --yellow-soft: #FFFF75;
}


/* -------------------- Global Body -------------------- */
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #1f2933;
  padding-top: 60px; /* fixed navbar */
  scroll-behavior: smooth;
}

/* -------------------- Headings -------------------- */
h1, h2, h3, h4 {
  font-weight: 700;
  color: var(--green-dark);
}

.btn-primary {
  background: var(--green-primary);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #12813a;
}

.btn-outline {
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green-primary);
  color: #fff;
}


/* Section titles */
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #064E3B;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -------------------- Buttons -------------------- */
.btn-donate {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-donate:hover, .btn-donate:focus {
  background-color: #e6c200;
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  color: #000;
}

.navbar .nav-link:hover {
  color: var(--brand-gold);
  transition: color 0.3s ease;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* =========================
   NAVBAR
========================= */

.sisdi-navbar {
  background-color: rgba(6, 78, 59, 0.95);
  backdrop-filter: blur(6px);
}

.navbar-brand {
  color: #FFD700;
}

.navbar-brand:hover {
  color: #FFFF75;
}

.nav-link {
  color: #ffffff !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #FFD700 !important;
}


/* -------------------- Hero Sections -------------------- */
section[class*="-hero"] {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

section[class*="-hero"]::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,78,59,0.6); /* deep green overlay */
  z-index: 1;
}

section[class*="-hero"] .container {
  position: relative;
  z-index: 2;
}

/* -------------------- Cards -------------------- */
.program-card,
.impact-card,
.testimonial-card,
.involve-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(30px);
}

.program-card:hover,
.impact-card:hover,
.testimonial-card:hover,
.involve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Card text */
.donation-card p,
.program-card p,
.impact-card p,
.testimonial-card p,
.involve-card p {
  color: var(--brand-deep-green);
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .card {
    border-radius: 14px;
  }
}

/* Card headings */
.donation-card h4,
.program-card h4,
.impact-card h3,
.testimonial-card strong,
.involve-card h4 {
  color: var(--brand-green);
  font-weight: 700;
}

/* -------------------- Sections -------------------- */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Light backgrounds */
.bg-light {
  background-color: #f8f9fa !important;
}

/* -------------------- Footer -------------------- */
footer {
  background-color: var(--brand-deep-green);
  color: var(--white);
  padding: 40px 0;
}

footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--brand-gold);
}

/* -------------------- Fade-in Animation -------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- Responsive Adjustments -------------------- */
@media (max-width: 768px) {
  .btn-donate {
    width: 100%;
  }
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .involve-card, .program-card, .impact-card, .testimonial-card, .donation-card {
    padding: 25px 20px;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/images/hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(6, 78, 59, 0.85),
    rgba(6, 78, 59, 0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

.hero-cta .btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
}

.hero {
  position: relative;
  background: url('/images/hero.jpeg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0.55);
}

.hero > .container {
  position: relative;
  z-index: 2;
}

/* Donate button brand styling */
.btn-donate {
  background-color: #FFD700;
  color: #064E3B;
  border-radius: 999px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
}

.btn-donate:hover {
  background-color: #e6c200;
  color: #064E3B;
}

/* =========================
   WHY THIS MATTERS
========================= */

.why-matters-section {
  background-color: #F0FDF4;
}

.section-title {
  color: #064E3B;
  font-weight: 800;
  font-size: 2.2rem;
}

.section-lead {
  max-width: 700px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  color: #374151;
}

.why-card {
  background-color: #ffffff;
  padding: 2rem;
  height: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-card-title {
  color: #16A34A;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-card-text {
  color: #4B5563;
  line-height: 1.6;
}


/* =========================
   OUR APPROACH
========================= */

.our-approach-section {
  background-color: #ffffff;
}

.approach-card {
  background-color: #F9FAFB;
  padding: 2.5rem 1.5rem;
  height: 100%;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.approach-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: #064E3B;
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.approach-title {
  color: #064E3B;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.approach-text {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================
   IMPACT SECTION
========================= */

.impact-section {
  background-color: #064E3B;
  color: #ffffff;
}

.impact-section .section-title,
.impact-section .section-lead {
  color: #ffffff;
}

.jtm {
  color: #FFD700;
}

.impact-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 2rem 1rem;
  border-radius: 1rem;
  height: 100%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.15);
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
}

.impact-label {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.impact-footnote {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* =========================
   GET INVOLVED
========================= */

.get-involved-section {
  background-color: #F9FAFB;
}

.involve-card {
  background-color: #ffffff;
  padding: 2.5rem 2rem;
  height: 100%;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.involve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.involve-title {
  color: #064E3B;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.involve-text {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

.involve-card .btn-outline-primary {
  border-color: #064E3B;
  color: #064E3B;
}

.involve-card .btn-outline-primary:hover {
  background-color: #064E3B;
  color: #ffffff;
}

.involve-card.highlight {
  border: 2px solid #FFD700;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section {
  background-color: #064E3B;
  color: #ffffff;
}

.final-cta-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.final-cta-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.95;
}

.final-cta-actions .btn {
  padding: 0.8rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
}

/* =========================
   FOOTER
========================= */

.sisdi-footer {
  background: linear-gradient(135deg, #064E3B 0%, #022C22 100%);
  color: #ffffff;
  position: relative;
}

.footer-title {
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

.footer-divider {
  border-color: rgba(255, 215, 0, 0.3);
  margin: 2rem 0 1rem;
}

.footer-bottom {
  font-size: 0.85rem;
  opacity: 0.8;
}

.sisdi-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #FFD700, transparent);
}

/* =========================
   FOOTER SOCIALS
========================= */

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover {
  color: #FFD700;
  transform: translateY(-3px);
}

/* =========================
   ABOUT PAGE
========================= */

.page-hero {
  background-color: #F9FAFB;
}

.page-title {
  color: #FFD700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-lead {
  font-size: 1.1rem;
  color: #4B5563;
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  background-color: #ffffff;
}

.about-alt-section {
  background-color: #F9FAFB;
}

/* =========================
   IMPACT PAGE STYLES
========================= */

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
}

.impact-story,
.impact-programs,
.impact-reach {
  background-color: #ffffff;
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}


/* =========================
   ABOUT PAGE – COLOUR & IMAGES
========================= */

.about-hero {
  background:
    linear-gradient(rgba(6, 78, 59, 0.7), rgba(6, 78, 59, 0.7)),
    url("/images/about-hero.jpeg") center / cover no-repeat;
  padding: 6rem 0;
}

.bg-soft-gold {
  background-color: #FFF9DB;
}

.bg-soft {
  background: #f6faf8;
}

.bg-brand {
  background: #064E3B;
  color: #ffffff;
}

.bg-dark,
.bg-brand {
  color: #e5f3ee;
}

.bg-dark h1,
.bg-dark h2 {
  color: #ffffff;
}

.bg-cta.bg-cta {
  background: linear-gradient(
    135deg,
    var(--green-dark),
    rgba(255,215,0,0.4)
  );
  color: #fff;
}
/* =========================
   BASE CARD
========================= */

.card {
  border: none;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.10);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--green-dark);
}

.card-img-soft {
  height: 140px;
  background: linear-gradient(
    135deg,
    rgba(6,78,59,0.85),
    rgba(255,215,0,0.45)
  );
}

.card-body {
  padding: 1.8rem;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.card-text {
  color: #4b5563;
  line-height: 1.6;
}

.card-accent::before {
  content: "";
  display: block;
  height: 4px;
  width: 48px;
  background: var(--gold);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(22,163,74,0.1);
  color: var(--green-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-accent {
  border-top: 4px solid var(--gold);
}

.footer {
  background: linear-gradient(
    135deg,
    #043c2c,
    #064E3B
  );
  color: #cfe9df;
}

.footer a {
  color: #cfe9df;
}

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


.bg-blend {
  background: linear-gradient(
    to bottom,
    rgba(6,78,59,0.08),
    rgba(255,255,255,0)
  );
}

.section-divider::before {
  content: "";
  width: 60px;
  height: 3px;
  background: #FFD700;
  display: block;
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(#FFD700 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.15;
}

.section-overlap {
  margin-top: -80px;
  padding-top: 120px;
}

@media (max-width: 768px) {
  .section-overlap {
    margin-top: 0;
    padding-top: 5rem;
  }
}

.about-pan-african {
  background:
    linear-gradient(
      135deg,
      rgba(6, 78, 59, 0.9),
      rgba(255, 215, 0, 0.55)
  );
}

.info-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

/* =========================
   PROGRAMS PAGE
========================= */

.programs-hero {
  background:
    linear-gradient(rgba(6, 78, 59, 0.75), rgba(6, 78, 59, 0.75)),
    url("/images/programs-hero.jpeg") center / cover no-repeat;
  padding: 6rem 0;
}

.program-section {
  background-color: #ffffff;
}

.program-alt-section {
  background-color: #F9FAFB;
}

/* =========================
   IMPACT PAGE
========================= */

.impact-hero {
  background:
    linear-gradient(rgba(6, 78, 59, 0.75), rgba(6, 78, 59, 0.75)),
    url("/images/impact-hero.jpeg") center / cover no-repeat;
  padding: 6rem 0;
}

.impact-stats {
  background-color: #FFF9DB;
}

.impact-stat h2 {
  color: var(--green-dark);
  font-size: 3rem;
  font-weight: 800;
}

.impact-stat p {
  color: #555;
  margin-top: 0.5rem;
}

.stat-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.stat-card h2 {
  font-weight: 800;
  color: #064E3B !important;
  opacity: 1 !important;
}

.stat-card p {
  margin: 0;
  font-weight: 500;
  color: #4B5563;
}

.impact-section {
  background-color: #ffffff;
}

.impact-alt-section {
  background-color: #F9FAFB;
}

/* =========================
   IMPACT PAGE TEXT FIX
========================= */

.impact-section,
.impact-alt-section,
.impact-stats {
  color: #1F2933; /* dark neutral */
}

.impact-section p,
.impact-alt-section p,
.impact-stats p {
  color: #4B5563;
}

.impact-section h2,
.impact-alt-section h2,
.impact-stats h2 {
    opacity: 1 !important;
  transform: none !important;
  color: #064E3B !important;
}

.fade-in * {
  opacity: 1;
  transform: none;
}

/* =========================
   CONTACT PAGE (NO IMAGE)
========================= */

.contact-header {
  background-color: #064E3B;
  color: #ffffff;
  padding: 5rem 0 4rem;
}

.contact-header .page-title {
  color: #ffffff;
}

.contact-header .page-lead {
  max-width: 700px;
  margin: 1rem auto 0;
  color: #E5E7EB;
}

.contact-options {
  background-color: #F9FAFB;
}

.involve-card.simple {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.icon-circle {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: #064E3B;
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.contact-form-section {
  background-color: #ffffff;
}

.contact-form .form-control {
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

.form-control:focus {
  border-color: #064E3B;
  box-shadow: 0 0 0 0.15rem rgba(6,78,59,0.25);
  transform: translateY(-1px);
}

form label {
  transition: color 0.2s ease;
}

.form-control:focus + label,
.form-control:focus-visible + label {
  color: #064E3B;
}

button:active,
.btn:active {
  transform: scale(0.97);
}

/* =========================
   GET INVOLVED PAGE
========================= */

.get-involved-header {
  background-color: #064E3B;
  color: #ffffff;
  padding: 5rem 0 4rem;
}

.get-involved-header .page-title {
  color: #ffffff;
}

.get-involved-header .page-lead {
  max-width: 750px;
  margin: 1rem auto 0;
  color: #E5E7EB;
}

.get-involved-options {
  background-color: #F9FAFB;
}

.get-involved-cta {
  background-color: #FFF9DB;
}

/* =========================
   DONATIONS PAGE (POLISHED)
========================= */

.donate-header {
  background-color: #064E3B;
  color: #ffffff;
  padding: 5rem 0 4rem;
}

.donate-header .page-title {
  color: #ffffff;
}

.donate-header .page-lead {
  max-width: 700px;
  margin: 1rem auto 0;
  color: #E5E7EB;
}

.donation-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card.featured {
  border: 2px solid #FFD700;
}

.donation-card.dark {
  background-color: #022C22;
  color: #ffffff;
}

.donation-card.dark h4 {
  color: #FFD700;
}

.donation-card.dark h4,
.donation-card.dark p,
.donation-card.dark strong {
  color: #ffffff;
}

.donation-card.dark .text-light-muted {
  color: #CBD5E1;
}

.text-light-muted {
  color: #CBD5E1;
}

.donation-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.donation-card-body h4 {
  color: #064E3B;
  font-weight: 700;
}

.bank-details p {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.dark-section {
  background: linear-gradient(135deg, #064E3B, #022C22);
  color: #ffffff;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 1.25rem auto 2rem;
}

.section {
  padding: 5.5rem 1rem;
  position: relative;
}

.donation-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMPACT STATS — LIGHT BAND
========================= */

.light-band {
  background-color: #F9FAFB;
}

.stat-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #064E3B;
  font-weight: 500;
}

.info-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.nav-link.active {
  color: #FFD700 !important;
  font-weight: 600;
}

/* =========================
   HERO SECTION (HOMEPAGE)
========================= */

.hero-section {
  background: linear-gradient(
      rgba(2, 44, 34, 0.85),
      rgba(2, 44, 34, 0.85)
    ),
    url('/images/hero-bg.jpeg') center / cover no-repeat;
  padding: 6rem 0;
  overflow: hidden;
}

.hero-text .lead {
  color: #e5f3ee;
  max-width: 520px;
}

/* Buttons */
.hero-section .btn-outline-light {
  border-radius: 999px;
  padding: 0.75rem 2rem;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.hero-section .btn-outline-light:hover {
  background-color: #ffffff;
  color: #064E3B;
}

/* =========================
   HERO IMAGES
========================= */

.hero-images {
  min-height: 420px;
}

.hero-img {
  position: absolute;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.hero-img-1 {
  width: 65%;
  top: 0;
  left: 10%;
  z-index: 2;
}

.hero-img-2 {
  width: 55%;
  bottom: -40px;
  right: 0;
  z-index: 1;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .hero-images {
    min-height: 380px;
    position: relative;
  }

  .hero-img-1 {
    position: absolute;
    width: 85%;
    top: 0;
    left: 5%;
    z-index: 2;
  }

  .hero-img-2 {
    position: absolute;
    width: 75%;
    bottom: -20px;
    right: 0;
    z-index: 1;
  }
}

/* =========================
   WHY THIS MATTERS
========================= */

.why-matters-section {
  background-color: #ffffff;
}

.why-card {
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.why-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.why-card-body {
  padding: 1.75rem;
}

.why-card-body h4 {
  color: #064E3B;
  margin-bottom: 0.75rem;
}

.why-card-body p {
  color: #555;
  margin-bottom: 0;
}

/* =========================
   IMPACT SECTION
========================= */

.impact-section {
  background-color: #f8f9fa; /* subtle light background */
}

.stat-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

/* Impact Images Mosaic */
.impact-img-wrapper {
  overflow: hidden;
  border-radius: 1rem;
  width: 100%;
}

.impact-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  max-width: 100%;
  height: auto;
}

.impact-img:hover {
  transform: scale(1.05);
}

/* =========================
   TESTIMONIAL / STORY BLOCK
========================= */

.testimonial-section {
  background-color: #f9fafb;
}

.testimonial-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.testimonial-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #FFD700;
  font-weight: 600;
}

.testimonial-content p {
  color: #555;
  max-width: 600px;
}

.testimonial-author {
  color: #064E3B;
}

/* Subtle accent line */
.testimonial-content::before {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin-bottom: 1rem;
  border-radius: 999px;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section {
  background: linear-gradient(
    135deg,
    #022C22 0%,
    #064E3B 100%
  );
  padding: 6rem 1rem;
}

.final-cta-section .lead {
  max-width: 700px;
  margin: 0 auto;
  color: #e5f3ee;
}

.final-cta-section .btn-outline-light {
  border-radius: 999px;
  padding: 0.75rem 2.25rem;
}

/* =========================
   INNER PAGE HERO
========================= */

.page-hero {
  background: linear-gradient(
    rgba(2, 44, 34, 0.85),
    rgba(2, 44, 34, 0.85)
  ),
  url('/images/page-hero-bg.jpeg') center / cover no-repeat;

    padding: 6.5rem 1rem;
}

.hero-about {
  background:
    linear-gradient(
      rgba(6, 78, 59, 0.88),
      rgba(6, 78, 59, 0.88)
    ),
    url('/images/hero-about.jpeg');
}


.page-hero .lead {
  max-width: 700px;
  margin: 0 auto;
  color: #e5f3ee;
}
.page-hero {
  background-size: cover;
  background-position: center;
}

.hero-default {
  background:
    linear-gradient(
      rgba(6, 78, 59, 0.88),
      rgba(6, 78, 59, 0.88)
    ),
    url('/images/hero-default.jpeg');
}

.hero-impact {
  background:
    linear-gradient(
      135deg,
      rgba(6, 78, 59, 0.9),
      rgba(255, 215, 0, 0.55)
    ),
    url('/images/hero-impact.jpeg');
}

.hero-programs {
  background:
    linear-gradient(
      rgba(22, 163, 74, 0.85),
      rgba(22, 163, 74, 0.85)
    ),
    url('/images/hero-programs.jpeg');
}

.hero-donate {
  background:
    linear-gradient(
      rgba(6, 78, 59, 0.92),
      rgba(255, 215, 0, 0.4)
    ),
    url('/images/hero-donate.jpeg');
}

.hero-involved {
  background:
    linear-gradient(
      rgba(22, 163, 74, 0.9),
      rgba(255, 255, 255, 0.15)
    ),
    url('/images/hero-involved.jpeg');
}

.hero-contact {
  background:
    linear-gradient(
      rgba(91, 137, 45, 0.85),
      rgba(2, 44, 34, 0.85)
    ),
    url('/images/hero-contact.jpeg');
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}

/* =========================
   VALUES ACCORDION
========================= */

.values-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.value-toggle {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.value-toggle:hover {
  background: rgba(6,78,59,0.05);
}

.chevron {
  transition: transform 0.35s ease;
}

.value-item.active .chevron {
  transform: rotate(180deg);
}

/* Hidden by default */
.value-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.value-item.active .value-content {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 1.25rem;
}

.value-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(6,78,59,0.08);
  color: var(--green-dark);
  flex-shrink: 0;
}

.value-item {
  position: relative;
}

.value-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
  opacity: 0.85;
}

.value-integrity::before {
  background: var(--gold);
}

.value-community::before {
  background: var(--green-primary);
}

.value-holistic::before {
  background: #34d399; /* soft mint */
}

.value-partnership::before {
  background: #a7f3d0; /* pale green */
}

.value-impact::before {
  background: #064E3B; /* pale green */
}

.value-item.active .value-icon {
  background: rgba(255,215,0,0.15);
}

.value-item.active {
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

@media (max-width: 576px) {
  .values-accordion {
    gap: 0.75rem;
  }

  .value-toggle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .value-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    text-align: left;
    width: 100%;
  }

  .value-icon {
    width: 42px;
    height: 42px;
  }

  .chevron {
    align-self: flex-end;
  }
}

.hero-impact {
  background:
    linear-gradient(
      rgba(6,78,59,0.85),
      rgba(6,78,59,0.85)
    ),
    url('/images/hero-impact.jpeg') center/cover no-repeat;
  padding: 6rem 0;
}

.impact-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.impact-mosaic img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.impact-mosaic img:hover {
  transform: scale(1.05);
}

.impact-slider {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.impact-slider::-webkit-scrollbar {
  display: none;
}

.impact-track {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.impact-track img {
  flex: 0 0 280px;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  scroll-snap-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.impact-track img:hover {
  transform: scale(1.05) rotate(-0.5deg);
}

.impact-track img {
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.slider-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,215,0,0.9);
  color: #000;
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: -10px;
}

.slider-next {
  right: -10px;
}

.impact-slider {
  overflow-x: scroll;
  width: 100%;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider-btn:hover {
  box-shadow: 0 0 0 6px rgba(255,215,0,0.15);
}

.impact-preview {
  background: #f9fafb;
}

.impact-preview .impact-stat h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--green-dark);
}

.impact-preview .impact-stat p {
  color: #555;
  margin-top: 0.25rem;
}

.contact-details p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.contact-details a {
  color: var(--green-primary);
}

.contact-form .form-control {
  padding: 0.85rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--green-primary);
  box-shadow: none;
}

.contact-image-wrapper img {
  width: 100%;
  object-fit: cover;
}

/* Contact icons */
.contact-icon {
  color: var(--green-primary);
  font-size: 1.1rem;
}

/* Social icons */
.contact-socials h5 {
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(6,78,59,0.08);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.ntd {
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateY(-2px);
}

.card,
.content-card,
.impact-stat,
.program-card,
.value-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.card:hover,
.content-card:hover,
.program-card:hover,
.value-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.18),
    0 8px 16px rgba(0, 0, 0, 0.12);
}

.card-featured {
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.22),
    0 12px 24px rgba(0, 0, 0, 0.15);
}

.bg-dark .card,
.bg-dark .content-card {
  box-shadow:
    0 12px 30px rgba(255, 255, 255, 0.06),
    0 4px 10px rgba(255, 255, 255, 0.04);
}

.card img {
  border-radius: 16px 16px 0 0;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.section-separator {
  line-height: 0;
  overflow: hidden;
}

.section-separator svg {
  width: 100%;
  height: 80px;
  display: block;
}

.section-separator path {
  fill: #f9fafb; /* light neutral */
}

.gradient-separator {
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(6, 78, 59, 0.08),
    rgba(255, 255, 255, 0)
  );
}

.gradient-separator.dark {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0)
  );
}

.wave-green path {
  fill: #064E3B;
}

.wave-gold path {
  fill: #FFD700;
}

.wave-light path {
  fill: #f9fafb;
}

/* =========================
   HOMEPAGE HERO – MOBILE FIX
========================= */

@media (max-width: 768px) {

  /* Hide overlapping images */
  .hero-images {
    display: none;
  }

  /* Center hero content */
  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-inline: auto;
  }

  /* Center buttons */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {

  .hero-images {
    opacity: 0.85;
    transform: scale(0.9);
  }

  .hero-buttons {
    justify-content: center;
  }
}

.statement-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #064E3B;
}

.statement-text span {
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #16A34A 0%,
    #064E3B 50%,
    #FFD700 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientShift 6s ease infinite;
}

@media (max-width: 768px) {
  .statement-text {
    font-size: 2rem;
  }
}

/* @media (max-width: 576px) {
  .statement-text span {
      background: linear-gradient(
      90deg,
      #16A34A 0%,
      #064E3B 50%,
      #FFD700 100%
    );
    -webkit-text-fill-color: initial;
  }
} */


@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.football-highlight {
  position: relative;
  font-weight: 800;
  color: #064E3B;
}

.football-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15em;
  width: 100%;
  height: 0.35em;
  background: #FFD700;
  z-index: -1;
  opacity: 0.6;
  border-radius: 4px;
}

.cta-text {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
}

.cta-text span {
  color: #FFD700;
}

.gold-gradient-text {
  font-weight: 900;
  background: linear-gradient(
    90deg,
    #FFD700 0%,
    #FFF4B0 45%,
    #FFD700 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-gradient-text.glow {
  text-shadow: 0 2px 12px rgba(255, 215, 0, 0.25);
}

.impact-stat h3 {
  font-size: 3rem;
  margin-bottom: 0.25rem;
}

.impact-stat p {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-top: 0.25rem;
}

@media (max-width: 576px) {
  .gold-gradient-text {
    background: none;
    color: #FFD700;
    -webkit-text-fill-color: initial;
  }
}

.impact-bg {
  background: linear-gradient(
    135deg,
    #064E3B 0%,
    #0B6B4F 60%,
    #064E3B 100%
  );
  padding: 4rem 1.5rem;
}

.center-align-text {
    max-width: 700px !important;
    margin: 1rem auto 0 !important;
}

.disabled-link {
  pointer-events: none;
  color: #9CA3AF;          /* muted gray */
  cursor: not-allowed;
  text-decoration: none;
}

.navbar-brand img {
  max-height: 40px;
}

.navbar-brand span {
  color: #064E3B;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 32px;
  }

  footer img {
    height: 40px;
  }
}

.program-stack {
  max-width: 1000px;
  margin: 0 auto;
}

.program-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* HEADER */
.program-header {
  width: 100%;
  background: linear-gradient(90deg, #064E3B, #0B6B4F);
  color: #fff;
  padding: 1.5rem;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.program-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.program-header h3 {
  margin: 0;
  font-weight: 700;
}

.program-header i {
  color: #FFD700;
  font-size: 1.4rem;
}

/* CONTENT */
.program-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #f9fafb;
}

.program-content p {
  font-size: 1rem;
}

.program-content-inner {
  padding: 2rem;
}

/* LIST */
.program-points {
  list-style: none;
  padding: 0;
}

.program-points li {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-points i {
  color: #16A34A;
  margin-right: 0.4rem;
}

/* ACTIVE STATE */
.program-item.active .program-content {
  max-height: 3000px;
}

.program-item.active .program-toggle-icon i {
  transform: rotate(45deg);
}

.program-toggle-icon i {
  transition: transform 0.3s ease;
}

button.disabled {
  opacity: 0.7;
  cursor: not-allowed;
}