* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Layout variables to keep navbar height in sync and avoid overlap */
:root {
  --navbar-height: 70px;
  --navbar-z: 2000;
}

/* Ensure fixed navbar does not cover page content */
body {
  color: #fff;
  padding-top: var(--navbar-height);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Premium Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

p, body {
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

/* ============================================
   MODERN NAVBAR STYLES
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: var(--navbar-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999 !important;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}

.navbar.scrolled {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(var(--navbar-height));
  gap: 20px;
  overflow: visible;
  flex-wrap: nowrap;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  /* Premium fade-in + subtle entrance from top-left */
  opacity: 0;
  transform: translateY(-8px) translateX(-12px);
  animation: logoPremiumFadeIn 1000ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.logo-text {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  font-weight: 700;
  font-size: 18px;
  color: #16a34a;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(-8px);
  animation: textPremiumFadeIn 1100ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 150ms;
  position: relative;
  display: inline-block;
  min-width: 220px;
  overflow: hidden;
  white-space: nowrap;
  height: 1.5em;
  line-height: 1.5;
}

/* Animated cycling logo text (CSS-only keyframes for enter/exit) */
.logo-text .logo-text-item {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  opacity: 0;
  transform: translateY(calc(-50% + 6px));
  transition: none;
  white-space: nowrap;
}

/* Entering state */
.logo-text .enter {
  animation: logoTextEnter 560ms cubic-bezier(.2,.9,.3,1) forwards;
}

/* Exiting state */
.logo-text .exit {
  animation: logoTextExit 420ms cubic-bezier(.2,.9,.3,1) forwards;
}

@keyframes logoTextEnter {
  0% { opacity: 0; transform: translateY(calc(-50% + 8px)) scale(0.98); }
  60% { opacity: 1; transform: translateY(calc(-50% - 2px)) scale(1.01); }
  100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes logoTextExit {
  0% { opacity: 1; transform: translateY(-50%) scale(1); }
  100% { opacity: 0; transform: translateY(calc(-50% - 8px)) scale(0.98); }
}

/* Elegant hover: refined grow + soft shadow */
.navbar-logo:hover .logo-img,
.navbar-logo:focus .logo-img,
.navbar-logo:hover .logo-text,
.navbar-logo:focus .logo-text {
  transform: scale(1.08);
  opacity: 1;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 400ms ease, filter 400ms ease;
  filter: drop-shadow(0 2px 8px rgba(22, 163, 74, 0.25));
}

/* Premium smooth keyframes inspired by Zeus The Agency */
@keyframes logoPremiumFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-8px) translateX(-12px);
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@keyframes textPremiumFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  40% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-img { width: 40px; height: 40px; }
  .logo-text { font-size: 16px; }
}

@media (max-width: 480px) {
  .logo-img { width: 36px; height: 36px; }
  .logo-text { font-size: 15px; }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo-img, .logo-text { animation: none !important; transition: none !important; }
}

/* End of logo animation styles */

/* Navigation Links */
.navbar-nav {
  display: flex;
  gap: 50px;
  list-style: none;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.navbar-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 8px 0;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: width 0.3s ease;
}

.navbar-nav a:hover {
  color: #16a34a;
}

.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-nav a.active {
  color: #16a34a;
}

.navbar-nav a.active::after {
  width: 100%;
}

/* Donate Button */
.navbar-cta {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
}

.navbar-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.45);
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
}

.navbar-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.35);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #111827;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  overflow-y: auto;
  z-index: 9998;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
}

.mobile-nav-content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-content a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.3s ease;
}

.mobile-nav-content a:hover,
.mobile-nav-content a.active {
  color: #16a34a;
}

.mobile-nav-cta {
  margin-top: 20px;
  width: 100%;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

/* Old navbar structure support */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo span {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #16a34a;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #16a34a;
}

.nav-links a.active::after {
  width: 100%;
}

.donate-btn {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}
/* PROGRAMS SECTION */
.programs {
  position: relative;
  padding: 120px 80px;
  background: #f9fafb;
  overflow: hidden;
}

/* decorative shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
}

.shape-1 {
  width: 420px;
  height: 420px;
  top: 100px;
  left: -150px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  bottom: 120px;
  right: -180px;
}

/* zigzag row */
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
  position: relative;
  z-index: 2;
}

.program-row.reverse {
  direction: rtl;
}

.program-row.reverse > * {
  direction: ltr;
}

/* image */
.program-image {
  position: relative;
}

.program-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* stat badge */
.stat-badge {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: #16a34a;
  color: white;
  padding: 18px 28px;
  font-size: 32px;
  font-weight: 700;
  border-radius: 20px;
}

/* content */
.program-content .track {
  color: #16a34a;
  font-weight: 600;
  letter-spacing: 1px;
}

.program-content h2 {
  font-size: 44px;
  margin: 16px 0;
  color: #111827;
}

.program-content p {
  color: #4b5563;
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 24px;
}

.program-content ul {
  list-style: none;
  margin-bottom: 32px;
}

.program-content li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: #374151;
  font-weight: 500;
}

.program-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

/* button */
.apply-btn {
  display: inline-block;
  background: #16a34a;
  color: white;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(22,163,74,0.4);
}

/* responsive */
@media (max-width: 900px) {
  .program-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .program-row.reverse {
    direction: ltr;
  }

  .program-content h2 {
    font-size: 34px;
  }
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo span {
  font-weight: 700;
  font-size: 22px;
  color: #16a34a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}



/* 🔹 STYLE THE LINKS, NOT THE LI */
.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

/* 🔹 HOVER EFFECT */
.nav-links a:hover {
  background: #f0fdf4;
  color: #166534;
}

/* 🔹 ACTIVE PAGE */
.nav-links a.active {
  background: #dcfce7;
  color: #166534;
}

.donate-btn {
  background: #16a34a;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
}




/* CHAT FLOAT */
.chat-bubble {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #16a34a;
  color: white;
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    padding: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .nav-links {
    display: none;
  }

  .navbar .donate-btn {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}

/* PROGRAMS SECTION */
.programs {
  position: relative;
  padding: 120px 80px;
  background: #f9fafb;
  overflow: hidden;
}

/* decorative shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.08);
}

.shape-1 {
  width: 420px;
  height: 420px;
  top: 100px;
  left: -150px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  bottom: 120px;
  right: -180px;
}

/* zigzag row */
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
  position: relative;
  z-index: 2;
}

.program-row.reverse {
  direction: rtl;
}

.program-row.reverse > * {
  direction: ltr;
}

/* image */
.program-image {
  position: relative;
}

.program-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* stat badge */
.stat-badge {
  position: absolute;
  bottom: -30px;
  left: 30px;
  background: #16a34a;
  color: white;
  padding: 18px 28px;
  font-size: 32px;
  font-weight: 700;
  border-radius: 20px;
}

/* content */
.program-content .track {
  color: #16a34a;
  font-weight: 600;
  letter-spacing: 1px;
}

.program-content h2 {
  font-size: 44px;
  margin: 16px 0;
  color: #111827;
}

.program-content p {
  color: #4b5563;
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 24px;
}

.program-content ul {
  list-style: none;
  margin-bottom: 32px;
}

.program-content li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  color: #374151;
  font-weight: 500;
}

.program-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

/* button */
.apply-btn {
  display: inline-block;
  background: #16a34a;
  color: white;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(22,163,74,0.4);
}

/* responsive */
@media (max-width: 900px) {
  .program-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .program-row.reverse {
    direction: ltr;
  }

  .program-content h2 {
    font-size: 34px;
  }
}

/* FOOTER CTA */
.footer-cta {
  background: radial-gradient(circle at top, rgba(11,18,32,0.9), rgba(2,6,23,0.9)), url('images/blogna.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 120px 20px;
  text-align: center;
}

.footer-cta h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.footer-cta p {
  color: #9ca3af;
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.cta-btn {
  display: inline-block;
  background: #16a34a;
  color: white;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(22,163,74,0.4);
}

/* MAIN FOOTER */
.footer {
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
  color: #9ca3af;
  padding: 100px 80px 40px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer h4,
.footer h3 {
  color: #ffffff;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer h3::after,
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #16a34a;
  border-radius: 1px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.footer a:hover {
  color: #16a34a;
  padding-left: 6px;
}

/* BRAND */
.footer-brand .brand {
  font-size: 22px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 14px;
}

.footer-brand span {
  color: #22c55e;
}

.footer-brand p {
  margin-bottom: 20px;
  font-size: 15px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  margin-right: 12px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #9ca3af;
}

.socials a:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

/* CONTACT */
.contact li {
  font-size: 14px;
  line-height: 1.6;
}

/* NEWSLETTER */
.newsletter {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(15, 23, 42, 0.8);
  color: white;
  transition: all 0.3s ease;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: #6b7280;
}

.newsletter input:focus {
  outline: none;
  border-color: #16a34a;
  background: rgba(15, 23, 42, 1);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.newsletter button {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  margin-top: 60px;
  padding-top: 32px;
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}

.footer-copyright {
  flex: 1;
  text-align: left;
}

.footer-legal {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-legal a {
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #16a34a;
}

/* ============================================
   MODERN FOOTER STYLES
   ============================================ */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #16a34a 0%, #10b981 100%);
  border-radius: 2px;
}

/* About Column */
.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #d1d5db;
}

.footer-about .brand {
  font-size: 24px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 16px;
}

/* Links Column */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #d1d5db;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #16a34a;
  transform: translateX(4px);
}

/* Contact Column */
.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 16px;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: #16a34a;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #16a34a;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #374151;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #16a34a;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  padding: 12px 24px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

/* Social Icons */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icon:hover {
  background: #16a34a;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.2) 0%, rgba(22, 163, 74, 0) 100%);
  margin-bottom: 32px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 13px;
  color: #9ca3af;
}

.footer-legal {
  display: flex;
  gap: 30px;
  list-style: none;
}

.footer-legal a {
  text-decoration: none;
  color: #9ca3af;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #16a34a;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: #16a34a;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer {
    padding: 60px 30px;
  }

  .footer-cta h2 {
    font-size: 36px;
  }
}
/* IMPACT STATS */
.impact-stats {
  background: #f8faf9;
  padding: 80px 40px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.stat-card {
  background: #ffffff;
  border: 2px solid #22c55e;
  border-radius: 26px;
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.25s ease;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card h3 {
  font-size: 64px;
  color: #16a34a;
  margin: 12px 0;
  font-weight: 700;
  line-height: 1.2;
  min-height: 76px;
}

.stat-card p {
  color: #374151;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 12px;
  margin: 0 0 16px 0;
  flex-shrink: 0;
  font-size: 28px;
  color: #22c55e;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: rgba(34, 197, 94, 0.2);
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}

/* IMPACT STORY SECTION */
.impact-story {
  background: #16a34a;
  padding: 120px 40px;
  color: #ffffff;
}

.impact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.impact-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.impact-content h2 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.impact-content p {
  font-size: 19px;
  line-height: 1.8;
  max-width: 520px;
  opacity: 0.95;
  font-weight: 400;
}

.impact-stats-inline {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 35px 0;
}

.impact-stats-inline h3 {
  font-size: 36px;
  margin-bottom: 6px;
}

.impact-stats-inline span {
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.divider {
  width: 2px;
  height: 50px;
  background: rgba(255,255,255,0.4);
}

.impact-btn {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.impact-btn:hover {
  transform: translateY(-2px);
}

/* IMAGE SIDE */
.impact-image {
  position: relative;
}

.impact-image img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
}

.impact-quote {
  position: absolute;
  bottom: -40px;
  left: 40px;
  background: #ffffff;
  color: #1f2937;
  padding: 26px 28px;
  border-radius: 22px;
  max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.impact-quote p {
  font-style: italic;
  margin-bottom: 12px;
}

.impact-quote span {
  font-weight: 600;
  color: #16a34a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .impact-wrapper {
    grid-template-columns: 1fr;
  }

  .impact-quote {
    position: static;
    margin-top: 20px;
  }
}

/* ================================
   HERO SECTION – FINAL CLEAN VERSION
================================ */
.hero {
  position: relative;
  min-height: calc(var(--vh, 1vh) * 100 - var(--navbar-height));
  /* explicit background properties for better control */
  background-image: url("images/hero-youth-farming.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* slightly reduced overlay by default to keep image visible */
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #ffffff;
}

/* Improve hero clarity & viewing on wider screens */
@media (min-width: 900px) {
  .hero {
    /* keep image fixed for a richer, wider presentation on desktop */
    background-attachment: fixed;
  }

  /* lighten overlay on larger devices so image reads clearer */
  .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
  }

  /* give content a bit more horizontal room on large screens */
  .hero-inner {
    max-width: 1100px;
  }
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.9);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 26px;
}

/* Heading */
.hero h1 {
  font-size: 78px;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

/* Text */
.hero p {
  font-size: 20px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto 40px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #16a34a;
  color: white;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(22,163,74,0.45);
}

.btn-secondary {
  background: #ffffff;
  color: #14532d;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #f0fdf4;
}

/* Mobile */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }
  
  /* On smaller viewports use shorter hero to avoid large empty areas and browser UI overlap */
  .hero {
    min-height: calc(var(--vh, 1vh) * 75 - var(--navbar-height));
    padding-top: 24px;
    padding-bottom: 40px;
  }
}
/* ABOUT HERO (split layout for about page) */
.about-hero {
  background: none;
  padding: 80px 20px;
  color: #111827;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-hero-left {
  background: #ffffff;
  padding: 40px 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(2,6,23,0.06);
}

.about-hero-left h1 {
  font-size: 52px;
  margin-bottom: 14px;
  color: #0b1220;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.about-hero-left p {
  color: #374151;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* keep highlight visible on white background */
.about-hero-left .highlight {
  color: #16a34a;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-left {
    padding: 28px;
  }

  .about-hero-left h1 {
    font-size: 32px;
  }
}

/* SECTIONS */
.about-section,
.story-section {
  padding: 100px 60px;
}

.about-grid,
.story-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img,
.story-image img {
  width: 100%;
  border-radius: 24px;
}

/* MISSION VISION VALUES */
.mv-section {
  background: #f9fafb;
  padding: 100px 60px;
}

.mv-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CTA */
.about-cta {
  background: #16a34a;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid,
  .story-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .about-section,
  .story-section,
  .mv-section {
    padding: 80px 30px;
  }
}

/* ================================
   MODERNIZED STYLES FOR ALL PAGES
================================ */

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 42px;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.section-header.text-center {
  text-align: center;
}
/* ================================
   PROFESSIONAL NAVBAR WITH HOVER EFFECTS
================================ */
/* NOTE: Main navbar styles are defined at the top of the file with position: fixed */
/* These responsive overrides maintain the fixed positioning */

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 12px 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 22px;
  color: #16a34a;
  z-index: 101;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.logo:hover {
  transform: scale(1.05);
  color: #15803d;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(2deg) scale(1.1);
}

.logo span {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

nav {
  flex: 1;
  margin: 0 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 8px;
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #16a34a, #15803d);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-links a:hover::before {
  left: 0;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #16a34a;
  transform: translateY(-2px);
  font-weight: 600;
}

.nav-links a.active {
  color: #16a34a;
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

.donate-btn {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  border: none;
  padding: 11px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.donate-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.donate-btn:hover::before {
  width: 300px;
  height: 300px;
}

.donate-btn:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.donate-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

/* RESPONSIVE NAVBAR */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 30px;
  }

  .navbar.scrolled {
    padding: 10px 30px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo span {
    display: none;
  }

  .logo {
    font-size: 20px;
  }

  .logo img {
    height: 36px;
  }

  .donate-btn {
    padding: 9px 20px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 12px 20px;
  }

  .hamburger {
    display: flex !important;
    width: 26px;
    height: 20px;
  }

  .hamburger span {
    width: 26px;
    height: 2.5px;
  }

  .navbar .donate-btn {
    display: none !important;
  }

  .donate-btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
  }

  .logo img {
    height: 32px;
  }

  .mobile-nav-content {
    padding: 35px 30px;
    max-width: 90vw;
  }

  .mobile-nav .nav-links a {
    font-size: 16px;
    padding: 11px 20px;
  }

  .mobile-nav .donate-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* Hamburger / MOBILE NAVIGATION OVERLAY */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #1f2937;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hamburger:hover span {
  background: #16a34a;
  box-shadow: 0 3px 8px rgba(22, 163, 74, 0.3);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: #16a34a;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #16a34a;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(22, 163, 74, 0.1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-nav-content nav {
  display: block;
  width: 100%;
}

.mobile-nav .nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  width: 100%;
  visibility: visible !important;
}

.mobile-nav .nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  min-height: auto;
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-nav .nav-links a {
  font-size: 17px;
  padding: 13px 26px;
  display: block;
  border-radius: 12px;
  color: #1f2937;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: rgba(22, 163, 74, 0.05);
  position: relative;
  overflow: hidden;
}

.mobile-nav .nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(22, 163, 74, 0.15);
  transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
  border-radius: 12px;
}

.mobile-nav .nav-links a:hover::before {
  left: 0;
}

.mobile-nav .nav-links a:hover {
  color: #16a34a;
  font-weight: 600;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.mobile-nav .nav-links a.active {
  background: rgba(22, 163, 74, 0.2);
  color: #16a34a;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.mobile-nav .donate-btn {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 10px;
  display: block !important;
  visibility: visible !important;
  background: #16a34a;
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* ================================
   HERO SECTIONS
================================ */

.about-hero,
.programs-hero,
.partners-hero,
.blog-hero,
.get-involved-hero,
.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url("images/hero-youth-farming.jpg") center/cover no-repeat;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  color: white;
}

.about-hero {
  background: none;
  padding: 80px 20px;
  color: #111827;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.programs-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.programs-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.partners-hero {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url("images/partners-hero.jpg") center/cover no-repeat;
}

.blog-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* keep images crisp — use a light subtle fallback background while photos load */
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* subtle gradient overlay to keep background images clear but ensure text contrast
     darker toward bottom to anchor text, lighter toward top so photos remain visible */
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.42) 100%);
  z-index: 2;
}

/* SCATTERED PHOTOS BACKGROUND */
.scattered-photos-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.scattered-photo {
  position: absolute;
  width: 140px;
  height: 140px;
  object-fit: cover;
  border: 5px solid white;
  border-radius: 3px;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.15);
  rotate: var(--rotation, 0deg);
  left: var(--x, 0%);
  top: var(--y, 0%);
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.9);
  opacity: 0;
  animation: photoFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: var(--delay, 0s);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scattered-photo:hover {
  transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1.05);
  box-shadow: 
    0 8px 16px rgba(0, 0, 0, 0.3),
    0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

@keyframes photoFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(0.9);
  }
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  color: white;
  /* remove blur; rely on page-level gradient overlay for contrast so background images stay clear */
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.0));
  padding: 40px 56px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
  backdrop-filter: none;
  /* subtle text shadow improves legibility on varied photo backgrounds */
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.blog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-stats .stat {
  text-align: center;
}

.blog-stats .stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 8px;
}

.blog-stats .stat p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* RESPONSIVE SCATTERED PHOTOS */
@media (max-width: 1024px) {
  .scattered-photo {
    width: 120px;
    height: 120px;
  }

  .blog-hero-content {
    padding: 40px 50px;
    max-width: 95%;
  }

  .blog-stats {
    gap: 20px;
  }
}

/* Partners stats cards (after hero) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: stretch;
  margin: 18px 0 36px;
}

.stat-card {
  background: linear-gradient(180deg,#fff,#fbfbfb);
  border: 2px solid rgba(34,197,94,0.18);
  border-radius: 18px;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(16,24,40,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.stat-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(16,24,40,0.10); }

.kpi { text-align: center; }
.kpi .num {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  /* green gradient number */
  background: linear-gradient(90deg,#16a34a,#22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kpi-label {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.6px;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
  .stat-card { padding: 24px; border-radius: 12px; }
  .kpi .num { font-size: 48px; }
}

/* Soft UI Featured Articles Cards (Blog Page Only) */
.featured-articles-soft {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, rgba(16,185,129,0.04) 100%), url('images/blogna.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
}

.soft-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.soft-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(34,197,94,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16,24,40,0.06);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.soft-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(16,24,40,0.12);
  border-color: rgba(34,197,94,0.18);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.soft-card:hover .card-image img {
  transform: scale(1.06);
}

.card-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-content p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.read-more {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  width: fit-content;
}

.read-more::after {
  content: ' →';
  transition: transform 0.2s ease;
}

.read-more:hover::after {
  transform: translateX(4px);
}

/* Responsive Soft Cards */
@media (max-width: 1024px) {
  .soft-cards-grid { gap: 24px; }
  .card-content { padding: 24px; }
  .card-image { height: 180px; }
}

@media (max-width: 768px) {
  .featured-articles-soft { padding: 60px 20px; }
  .soft-cards-grid { grid-template-columns: repeat(1, 1fr); gap: 20px; }
  .section-header h2 { font-size: 32px; }
  .card-image { height: 200px; }
}

@media (max-width: 480px) {
  .featured-articles-soft { padding: 40px 16px; }
  .soft-card { border-radius: 12px; }
  .card-content { padding: 20px; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 16px; }
}

@media (max-width: 768px) {
  .scattered-photo {
    width: 100px;
    height: 100px;
  }

  .blog-hero-content {
    padding: 26px 28px;
    /* keep content background minimal on small screens — rely on overlay for contrast */
    background: linear-gradient(180deg, rgba(0,0,0,0.36), rgba(0,0,0,0.06));
  }

  .blog-hero-content h1 {
    font-size: 32px;
  }

  .blog-hero-content p {
    font-size: 16px;
  }

  .blog-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
  }

  .blog-stats .stat h3 {
    font-size: 24px;
  }

  .blog-stats .stat p {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .scattered-photo {
    width: 80px;
    height: 80px;
  }

  .blog-hero-content {
    padding: 25px 30px;
  }

  .blog-hero-content h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .blog-hero-content p {
    font-size: 14px;
  }

  .blog-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }

  .blog-stats .stat h3 {
    font-size: 20px;
  }
}

.get-involved-hero {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url("images/get-involved-hero.jpg") center/cover no-repeat;
}

.contact-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/contact-hero.jpg") center/cover no-repeat;
}

/* Contact Methods Section */
.contact-methods {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, rgba(16,185,129,0.04) 100%);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.method-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border: 1px solid rgba(34,197,94,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16,24,40,0.06);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(16,24,40,0.12);
  border-color: rgba(34,197,94,0.2);
}

.method-icon {
  font-size: 42px;
  color: #16a34a;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64px;
}

.method-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.method-card p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 16px;
}

.method-details {
  background: rgba(34,197,94,0.05);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.method-details p {
  font-size: 14px;
  margin: 8px 0;
  color: #374151;
}

.method-link {
  display: inline-block;
  color: #16a34a;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
}

.method-link:hover {
  transform: translateX(2px);
  color: #15803d;
}

/* Location Section */
.location-section {
  padding: 80px 20px;
  background: #ffffff;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.location-info {
  padding: 20px 0;
}

.section-badge {
  display: inline-block;
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0;
}

.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-item i {
  font-size: 24px;
  color: #16a34a;
  margin-top: 4px;
  flex-shrink: 0;
}

.detail-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.detail-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.office-features {
  background: rgba(34,197,94,0.05);
  padding: 24px;
  border-radius: 16px;
  margin-top: 28px;
}

.office-features h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.features-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

.features-grid span i {
  color: #16a34a;
  font-size: 18px;
}

.location-map {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.google-map-embed {
  width: 100%;
  height: 500px;
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(16,185,129,0.08) 100%);
  border: 2px dashed rgba(34,197,94,0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.map-placeholder i {
  font-size: 64px;
  color: #16a34a;
  margin-bottom: 16px;
  opacity: 0.7;
}

.map-placeholder h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
}

.map-placeholder p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(34,197,94,0.04) 0%, rgba(16,185,129,0.04) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 48px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(34,197,94,0.1);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(16,24,40,0.08);
  border-color: rgba(34,197,94,0.2);
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive Contact Methods */
@media (max-width: 1024px) {
  .methods-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .location-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .contact-methods { padding: 60px 20px; }
  .methods-grid { grid-template-columns: repeat(1, 1fr); }
  .location-section { padding: 60px 20px; }
  .location-map { min-height: 300px; }
  .google-map-embed { height: 350px; }
  .faq-grid { grid-template-columns: repeat(1, 1fr); }
  .faq-section { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .google-map-embed { height: 280px; }
}

.hero-badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.9);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 26px;
}

.about-hero-content h1,
.programs-hero-content h1,
.partners-hero-content h1,
.blog-hero-content h1,
.get-involved-hero-content h1,
.contact-hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-hero-content p,
.programs-hero-content p,
.partners-hero-content p,
.blog-hero-content p,
.get-involved-hero-content p,
.contact-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto 40px;
}

.highlight {
  color: #22c55e;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #22c55e;
  border-radius: 2px;
}

/* ================================
   ABOUT PAGE STYLES
================================ */

.about-section {
  padding: 100px 20px;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  font-size: 42px;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-content p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #374151;
}

.about-features .feature i {
  color: #16a34a;
  font-size: 20px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 250px;
}

.overlay-content h4 {
  color: #111827;
  margin-bottom: 8px;
  font-size: 16px;
}

.overlay-content p {
  color: #6b7280;
  font-size: 14px;
}

/* MISSION VISION VALUES */
.mv-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.mv-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.mv-card .card-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #16a34a;
}

.mv-card h3 {
  font-size: 28px;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.mv-card p {
  color: #6b7280;
  line-height: 1.8;
  font-weight: 400;
  font-size: 16px;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.values-list span {
  background: #f0fdf4;
  color: #166534;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* STORY SECTION */
.story-section {
  padding: 100px 20px;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-size: 42px;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 700;
}

.story-content p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.story-stats {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.story-stat {
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 80px;
}

.story-stat h4 {
  color: #16a34a;
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 700;
}

.story-stat p {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

/* TIMELINE */
.story-timeline {
  margin-top: 40px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 40px;
  width: 2px;
  height: calc(100% - 20px);
  background: #e5e7eb;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content h4 {
  color: #16a34a;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.5;
}

/* TEAM SECTION */
.team-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-image {
  height: 250px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.team-content {
  padding: 25px;
}

.team-content h3 {
  color: #111827;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.team-role {
  color: #16a34a;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-content p {
  color: #6b7280;
  line-height: 1.5;
  font-size: 14px;
}

/* CTA SECTION */
.about-cta,
.program-cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.cta-content p {
  font-size: 19px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ================================
   PROGRAMS PAGE STYLES
================================ */

.program-tracks {
  padding: 100px 20px;
  background: white;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.track-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.track-card:hover {
  transform: translateY(-10px);
}

.track-header {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  padding: 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.track-number {
  font-size: 48px;
  font-weight: 700;
  opacity: 0.3;
}

.track-content {
  padding: 40px 30px;
}

.track-content h3 {
  font-size: 28px;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 700;
}

.track-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.track-features {
  margin-bottom: 30px;
}

.track-features .feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
  font-weight: 500;
}

.track-features .feature i {
  color: #16a34a;
  flex-shrink: 0;
}

.track-stats {
  display: flex;
  gap: 30px;
}

.track-stats .stat h4 {
  color: #16a34a;
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 700;
}

.track-stats .stat span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.track-image {
  overflow: hidden;
}

.track-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.track-card:hover .track-image img {
  transform: scale(1.05);
}

/* PROGRAM FEATURES */
.program-features {
  padding: 100px 20px;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #16a34a;
}

.feature-card h3 {
  color: #111827;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* SUCCESS STORIES */
.success-stories {
  padding: 100px 20px;
  background: white;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.story-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-image {
  overflow: hidden;
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-content {
  padding: 25px;
}

.story-content h3 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.story-content p {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 16px;
  font-size: 14px;
}

.story-author {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.story-author strong {
  color: #111827;
  display: block;
  font-size: 14px;
}

.story-author span {
  color: #6b7280;
  font-size: 12px;
}

/* ================================
   PARTNERS PAGE STYLES
================================ */

.partnership-types {
  padding: 100px 20px;
  background: white;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.type-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.type-card:hover {
  transform: translateY(-5px);
}

.type-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #16a34a;
}

.type-card h3 {
  color: #111827;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.type-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.type-card ul {
  text-align: left;
  color: #6b7280;
  font-size: 14px;
}

.type-card li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.type-card li::before {
  content: "•";
  color: #16a34a;
  position: absolute;
  left: 0;
}

/* FEATURED PARTNERS */
.featured-partners {
  padding: 100px 20px;
  background: #f8fafc;
}

.partner-category {
  margin-bottom: 60px;
}

.partner-category h3 {
  color: #111827;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.partner-logo {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-3px);
}

.partner-logo img {
  height: 60px;
  object-fit: contain;
  margin-bottom: 20px;
}

.partner-logo h4 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}

.partner-logo p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* PARTNERSHIP IMPACT */
.partnership-impact {
  padding: 100px 20px;
  background: white;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact-content h2 {
  font-size: 52px;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.impact-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.metric h3 {
  color: #16a34a;
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 700;
}

.metric p {
  color: #6b7280;
  font-size: 14px;
}

.impact-visual {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
}

.chart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.chart-bar {
  height: 8px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 4px;
  transition: width 1s ease;
}

.chart-item span {
  color: #6b7280;
  font-weight: 500;
  min-width: 120px;
}

/* BECOME A PARTNER */
.become-partner {
  padding: 100px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  text-align: center;
  color: white;
}

.partner-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.partner-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.partnership-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.partnership-options .option {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

/* ================================
   BLOG PAGE STYLES
================================ */

.blog-categories {
  padding: 100px 20px;
  background: white;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #16a34a;
}

.category-card h3 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}

.category-card p {
  color: #6b7280;
  line-height: 1.5;
}

/* FEATURED ARTICLE */
.featured-article {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(248,250,252,0.95) 0%, rgba(248,250,252,0.95) 100%), url('images/blogna.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.featured-content .article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 14px;
}

.article-category {
  background: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.article-date {
  color: #6b7280;
}

.featured-content h2 {
  font-size: 52px;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
}

.featured-content p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 400;
}

.article-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #6b7280;
}

.article-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more-btn {
  background: #16a34a;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  background: #15803d;
  transform: translateY(-2px);
}

.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.featured-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #16a34a;
  backdrop-filter: blur(10px);
}

/* LATEST ARTICLES */
.latest-articles {
  padding: 100px 20px;
  background: white;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.article-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #166534;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.article-content {
  padding: 25px;
}

.article-content h3 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.article-content p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 400;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.article-date {
  color: #6b7280;
  font-size: 12px;
}

.read-more {
  color: #16a34a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #15803d;
}

.load-more {
  text-align: center;
  margin-top: 60px;
}

/* NEWSLETTER */
.blog-newsletter {
  padding: 100px 20px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.newsletter-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border-radius: 25px;
  border: none;
  font-size: 16px;
}

.newsletter-form button {
  background: white;
  color: #16a34a;
  padding: 15px 30px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.newsletter-form button:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
}

.newsletter-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 15px;
}

/* POPULAR TOPICS */
.popular-topics {
  padding: 100px 20px;
  background: white;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.topic-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.topic-card h3 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.topic-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.topic-card h3 a:hover {
  color: #16a34a;
}

.topic-card p {
  color: #6b7280;
  margin-bottom: 16px;
  font-size: 14px;
}

.topic-progress {
  background: #f3f4f6;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  border-radius: 3px;
}

/* ================================
   GET INVOLVED PAGE STYLES
================================ */

.get-involved-hero .hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.get-involved-hero .hero-stats .stat {
  text-align: center;
}

.get-involved-hero .hero-stats h3 {
  color: #22c55e;
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 700;
}

.get-involved-hero .hero-stats p {
  font-size: 14px;
  opacity: 0.9;
}

.ways-to-help {
  padding: 100px 20px;
  background: white;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.way-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.way-card:hover {
  transform: translateY(-5px);
}

.way-card.featured {
  border: 2px solid #16a34a;
  position: relative;
}

.way-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.way-header {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  padding: 30px;
  color: white;
  text-align: center;
}

.way-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border-radius: 8px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.3s ease;
  font-size: 32px;
  color: white;
}

.way-card:hover .way-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.way-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  display: inline-block;
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.way-content {
  padding: 30px;
}

.way-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.way-content ul {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 30px;
}

.way-content li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.way-content li::before {
  content: "✓";
  color: #16a34a;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.way-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* IMPACT CALCULATOR */
.impact-calculator {
  padding: 100px 20px;
  background: #f8fafc;
}

.calculator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calculator-text h2 {
  font-size: 42px;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
}

.calculator-text p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.impact-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.impact-example h3 {
  color: #16a34a;
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.impact-example p {
  color: #6b7280;
  font-size: 14px;
}

.calculator-widget {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.calculator-widget h3 {
  color: #111827;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

.calculator-input {
  margin-bottom: 30px;
}

.calculator-input label {
  display: block;
  color: #374151;
  margin-bottom: 12px;
  font-weight: 600;
}

.calculator-input input[type="range"] {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #16a34a;
  border-radius: 50%;
  cursor: pointer;
}

.amount-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}

.impact-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.result {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.result-number {
  color: #16a34a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.result-label {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.impact-summary {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.impact-summary p {
  color: #374151;
  font-size: 16px;
  font-weight: 500;
}

/* DONOR TESTIMONIALS */
.donor-testimonials {
  padding: 100px 20px;
  background: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  color: #6b7280;
  line-height: 1.6;
  font-style: italic;
  font-size: 16px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: #111827;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
}

.author-info span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 500;
}

/* DONATION FAQ */
.donation-faq {
  padding: 100px 20px;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.faq-item h4 {
  color: #111827;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.faq-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* ================================
   DONATE PAGE STYLES
================================ */

/* DONATE HERO SLIDER */
.donate-hero-slider {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  min-height: 100vh;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* ensure slide <img> fills the slide and is visible */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100vh;
}


.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  /* slightly lighter overlay to keep images visible while preserving contrast */
  background: linear-gradient(180deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0.42) 100%);
  z-index: 3;
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 4;
  max-width: 900px;
  padding: 0 40px;
  width: 100%;
  animation: fadeInContent 0.6s ease-in-out;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translate(-50%, -48%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.slider-content h1 {
  font-size: clamp(40px, 10vw, 72px);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.slider-content p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0.98;
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-stats .stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: clamp(16px, 2vw, 24px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 140px;
  transition: all 0.3s ease;
}

.hero-stats .stat:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
}

.hero-stats .stat h3 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 8px;
  color: #22c55e;
}

.hero-stats .stat p {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 5;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.slider-prev,
.slider-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(34, 197, 94, 0.8);
  border-color: #22c55e;
  transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  align-items: center;
  justify-content: center;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator.active {
  width: 24px;
  border-radius: 5px;
  background: #22c55e;
}

.indicator:hover {
  background: rgba(34, 197, 94, 0.8);
}

/* DONATE HERO (old styles preserved for compatibility) */
.donate-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  color: white;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("images/donate-hero.jpg") center/cover no-repeat;
}

.donate-hero .container {
  max-width: 800px;
}

.donate-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
}

.donate-hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 720px;
  margin: 0 auto 40px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-stats .stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  min-width: 120px;
}

.hero-stats h3 {
  color: #22c55e;
  font-size: 36px;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero-stats p {
  font-size: 14px;
  opacity: 0.9;
}

/* DONATION OPTIONS */
.donation-options {
  padding: 100px 20px;
  background: white;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.donation-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  cursor: pointer;
}

.donation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border-color: #16a34a;
}

.donation-card.selected {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.donation-card.featured {
  border-color: #16a34a;
  position: relative;
  transform: scale(1.02);
}

.donation-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #16a34a;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
}

.donation-amount {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.donation-card h3 {
  padding: 30px 30px 16px;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.donation-card p {
  padding: 0 30px 20px;
  color: #6b7280;
  line-height: 1.6;
  text-align: center;
}

.donation-card ul {
  padding: 0 30px 30px;
  color: #6b7280;
  font-size: 14px;
}

.donation-card li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.donation-card li::before {
  content: "✓";
  color: #16a34a;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.custom-donation {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: #f8fafc;
  border-radius: 20px;
}

.custom-donation h3 {
  color: #111827;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
}

.custom-donation p {
  color: #6b7280;
  margin-bottom: 30px;
}

.custom-options {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-options input {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  width: 120px;
}

.custom-options select {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
}

/* DONATION FORM */
.donation-form-section {
  padding: 100px 20px;
  background: #f8fafc;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

/* ================================
   NAVBAR RESPONSIVE FIX (override duplicates)
   Ensures a single, predictable behavior across breakpoints.
   ================================ */

/* Desktop: show full nav, hide hamburger/mobile overlay */
@media (min-width: 901px) {
  .navbar-nav { display: flex !important; gap: 40px !important; align-items: center !important; }
  .hamburger { display: none !important; }
  .mobile-nav { display: none !important; }
  .navbar-cta { display: inline-block !important; }
}

/* Mobile: hide desktop nav, show hamburger which toggles mobile-nav */
@media (max-width: 900px) {
  .navbar-nav { display: none !important; }
  .hamburger { display: flex !important; }
  .navbar-container { padding-left: 20px !important; padding-right: 20px !important; }
  .navbar { padding: 10px 0 !important; }
  .navbar-cta { display: none !important; }
}

/* Mobile overlay active state
   .mobile-nav should be controlled by JS adding/removing .active */
.mobile-nav { display: none; }
.mobile-nav.active { display: flex !important; flex-direction: column !important; z-index: 1200 !important; }

/* ensure hamburger sits above overlay */
.hamburger { z-index: 1300; }

/* small polish: prevent nav links wrapping awkwardly on narrow screens */
.navbar-nav a { white-space: nowrap; }


.form-header h2 {
  font-size: 42px;
  color: #111827;
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
}

.form-header p {
  color: #6b7280;
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.donation-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-section {
  margin-bottom: 40px;
}

.form-section h3 {
  color: #111827;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

/* PAYMENT METHODS */
.payment-methods {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.method-option {
  flex: 1;
  min-width: 120px;
  padding: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.method-option:hover {
  border-color: #16a34a;
}

.method-option.active {
  border-color: #16a34a;
  background: #dcfce7;
}

.method-option i {
  font-size: 24px;
  color: #6b7280;
  margin-bottom: 8px;
  display: block;
}

.method-option.active i {
  color: #16a34a;
}

.method-option span {
  font-weight: 600;
  color: #374151;
}

.method-option.active span {
  color: #166534;
}

/* PAYMENT DETAILS */
.payment-details {
  display: none;
}

.payment-details.active {
  display: block;
}

.paypal-notice {
  text-align: center;
  padding: 30px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.paypal-notice i {
  font-size: 48px;
  color: #0070ba;
  margin-bottom: 16px;
}

.paypal-notice p {
  color: #6b7280;
  font-size: 16px;
}

.bank-details {
  background: #f8fafc;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.bank-details h4 {
  color: #111827;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.bank-info p {
  margin-bottom: 12px;
  color: #374151;
}

.bank-info strong {
  color: #111827;
}

.transfer-note {
  margin-top: 20px;
  padding: 16px;
  background: #fef3c7;
  border-radius: 8px;
  color: #92400e;
  font-size: 14px;
  border: 1px solid #f59e0b;
}

/* DONATION TYPES */
.donation-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.radio-option:hover {
  background: #f3f4f6;
}

.radio-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #16a34a;
}

.radio-option span {
  font-weight: 500;
  color: #374151;
}

/* CHECKBOX GROUP */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #374151;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #16a34a;
  margin-top: 2px;
}

/* IMPACT CALCULATOR */
.impact-calculator {
  padding: 100px 20px;
  background: white;
}

.calculator-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.calculator-text h2 {
  font-size: 42px;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
}

.calculator-text p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.impact-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.impact-example h3 {
  color: #16a34a;
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.impact-example p {
  color: #6b7280;
  font-size: 14px;
}

.calculator-widget {
  background: #f8fafc;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.calculator-widget h3 {
  color: #111827;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

.calculator-input {
  margin-bottom: 30px;
}

.calculator-input label {
  display: block;
  color: #374151;
  margin-bottom: 12px;
  font-weight: 600;
}

.calculator-input input[type="range"] {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.calculator-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #16a34a;
  border-radius: 50%;
  cursor: pointer;
}

.amount-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #16a34a;
}

.impact-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.result {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.result-number {
  color: #16a34a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.result-label {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
}

.impact-summary {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.impact-summary p {
  color: #374151;
  font-size: 16px;
  font-weight: 500;
}

/* Social icons — responsive circular modern look */
.socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.social-icon {
  --size: clamp(36px, 4.2vw, 52px);
  width: var(--size);
  height: var(--size);
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, opacity .12s;
  font-size: calc(var(--size) * 0.45);
  box-shadow: 0 4px 12px rgba(16,24,40,0.06);
  border: 1px solid rgba(16,24,40,0.04);
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f7f7f9);
}

/* Brand-aware colors (fall back to neutral for unknown links) */
.socials a[href*="x.com"],
.socials a[href*="twitter.com"] { background: #0f1419; color: #fff; border-color: rgba(0,0,0,0.12); }
.socials a[href*="facebook.com"] { background: #1877f2; color: #fff; border-color: rgba(24,119,242,0.14); }
.socials a[href*="instagram.com"] { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; border-color: transparent; }
.socials a[href*="youtube.com"] { background: #ff0000; color: #fff; border-color: rgba(255,0,0,0.14); }
.socials a[href*="tiktok.com"] { background: #010101; color: #fff; border-color: rgba(0,0,0,0.14); }
.socials a[href*="linkedin.com"] { background: #0077b5; color: #fff; border-color: rgba(0,119,181,0.14); }
.socials a[href^="mailto:"] { background: linear-gradient(180deg,#ffffff,#fbfbfb); color: #333; border-color: rgba(0,0,0,0.04); }

/* Interactions + accessibility */
.social-icon:hover,
.social-icon:focus,
.social-icon:active { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 30px rgba(16,24,40,0.12); opacity: 1; }
.social-icon:focus-visible { outline: 3px solid rgba(59,130,246,0.18); outline-offset: 4px; }

/* Icon sizing inside */
.social-icon i { line-height: 1; display: inline-block; font-size: inherit; transform: translateY(1%); }

/* Slight adjustments for very small screens */
@media (max-width: 420px) {
  .socials { gap: 0.4rem; }
  .social-icon { --size: 40px; }
}

/* Responsive Slider Styles */
@media (max-width: 1024px) {
  .slider-content {
    padding: 0 30px;
  }

  .slider-content h1 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .hero-stats {
    gap: clamp(16px, 3vw, 30px);
  }
}

@media (max-width: 768px) {
  .donate-hero-slider {
    min-height: 80vh;
  }

  .slider-content {
    padding: 0 20px;
  }

  .slider-content h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
  }

  .slider-content p {
    font-size: clamp(13px, 1.8vw, 16px);
    margin-bottom: 24px;
  }

  .hero-stats {
    gap: clamp(12px, 2.5vw, 24px);
  }

  .hero-stats .stat {
    padding: clamp(12px, 1.5vw, 20px);
    min-width: 120px;
  }

  .hero-stats .stat h3 {
    font-size: clamp(20px, 3.5vw, 32px);
  }

  /* RESPONSIVE NAVBAR */
  .navbar-container {
    height: 60px;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    top: 60px;
  }

  /* RESPONSIVE FOOTER */
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .slider-prev,
  .slider-next {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .slider-controls {
    bottom: 30px;
    gap: 12px;
  }

  .slider-indicators {
    bottom: 14px;
    gap: 8px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .donate-hero-slider {
    min-height: 70vh;
  }

  .slider-content {
    padding: 0 16px;
  }

  .slider-content h1 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 12px;
  }

  .slider-content p {
    font-size: clamp(12px, 1.5vw, 14px);
    margin-bottom: 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats .stat {
    padding: 16px;
    min-width: 100%;
  }

  .hero-stats .stat h3 {
    font-size: 24px;
  }

  .slider-prev,
  .slider-next {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .slider-controls {
    bottom: 20px;
    gap: 10px;
  }

  .slider-indicators {
    bottom: 12px;
    gap: 6px;
  }

  .indicator {
    width: 6px;
    height: 6px;
  }

  .indicator.active {
    width: 16px;
  }
}

/* ================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
================================ */

/* TABLET BREAKPOINT: 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Navbar */
  .navbar {
    padding: 14px 30px;
  }

  .logo span {
    display: inline;
    font-size: 18px;
  }

  /* Sections padding */
  .programs {
    padding: 80px 40px;
  }

  .about-section,
  .story-section,
  .mv-section {
    padding: 80px 30px;
  }

  .footer {
    padding: 60px 30px;
  }

  /* Hero text */
  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }

  .about-hero-left h1 {
    font-size: 36px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  /* Stat cards grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-card {
    padding: 28px 20px;
  }

  /* Contact methods */
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .method-card {
    padding: 28px 20px;
  }

  /* Blog stats */
  .blog-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  /* Program sections */
  .program-content h2 {
    font-size: 32px;
  }

  .program-content p {
    font-size: 16px;
  }

  /* Impact stats inline */
  .impact-stats-inline {
    gap: 20px;
  }

  .impact-stats-inline h3 {
    font-size: 28px;
  }
}

/* MOBILE BREAKPOINT: Under 768px */
@media (max-width: 767px) {
  /* ===== GENERAL ===== */
  * {
    font-family: 'Poppins', sans-serif;
  }

  body {
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  /* Main navbar positioning is fixed at the top - only override responsive padding here */
  .navbar {
    padding: 12px 16px !important;
  }

  .navbar.scrolled {
    padding: 10px 16px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }

  .logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
  }

  .logo span {
    display: none;
  }

  /* Hide regular nav, show hamburger */
  nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hamburger span {
    width: 26px;
    height: 2.5px;
    background: #1f2937;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .hamburger:hover span {
    background: #16a34a;
    box-shadow: 0 3px 8px rgba(22, 163, 74, 0.3);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: #16a34a;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: #16a34a;
  }

  .donate-btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 20px;
    background: #16a34a;
    color: white;
    border: none;
    cursor: pointer;
  }

  /* ===== MOBILE NAVIGATION OVERLAY ===== */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
  }

  .mobile-nav.active {
    display: flex !important;
  }

  .mobile-nav-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
    padding: 30px 24px;
    border-radius: 25px;
    text-align: center;
    max-width: 80vw;
    width: 90%;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
    animation: slideInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(22, 163, 74, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 101;
  }

  .mobile-nav .nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .mobile-nav .nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav .nav-links a {
    display: block;
    font-size: 15px;
    padding: 11px 18px;
    border-radius: 12px;
    color: #1f2937;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(22, 163, 74, 0.05);
    position: relative;
    overflow: hidden;
  }

  .mobile-nav .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(22, 163, 74, 0.15);
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: 12px;
  }

  .mobile-nav .nav-links a:hover::before {
    left: 0;
  }

  .mobile-nav .nav-links a:hover {
    color: #16a34a;
    font-weight: 600;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
  }

  .mobile-nav .nav-links a.active {
    background: rgba(22, 163, 74, 0.2);
    color: #16a34a;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
  }

  .mobile-nav .donate-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-top: 10px;
  }
  .hero,
  .about-hero,
  .programs-hero,
  .partners-hero,
  .blog-hero,
  .get-involved-hero,
  .contact-hero {
    padding: 60px 16px;
    min-height: auto;
  }

  .hero {
    min-height: 70vh;
    padding: 40px 16px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 14px;
    margin: 0 auto 24px;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* About hero */
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero-left {
    padding: 24px;
  }

  .about-hero-left h1 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .about-hero-left p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Blog hero */
  .blog-hero-content {
    padding: 20px 16px;
    max-width: 100%;
  }

  .blog-hero-content h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .blog-hero-content p {
    font-size: 13px;
  }

  .scattered-photo {
    display: none;
  }

  .blog-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 20px;
  }

  .blog-stats .stat h3 {
    font-size: 18px;
  }

  .blog-stats .stat p {
    font-size: 11px;
  }

  /* ===== SECTIONS ===== */
  .programs,
  .about-section,
  .story-section,
  .mv-section,
  .impact-story,
  .contact-methods,
  .footer-cta {
    padding: 60px 16px;
  }

  .container {
    padding: 0 16px;
  }

  /* ===== GRID LAYOUTS ===== */
  .program-row,
  .about-grid,
  .story-grid,
  .mv-grid,
  .impact-wrapper,
  .methods-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-row.reverse {
    direction: ltr;
  }

  .program-image {
    order: -1;
  }

  .program-content h2 {
    font-size: 24px;
    margin: 12px 0;
  }

  .program-content p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .program-content ul {
    margin-bottom: 20px;
  }

  .program-content li {
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 13px;
  }

  .apply-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  /* ===== SECTION HEADERS ===== */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-header p {
    font-size: 14px;
    max-width: 100%;
  }

  .section-header .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* ===== CARDS ===== */
  .stat-card {
    padding: 24px 16px;
  }

  .stat-card h3 {
    font-size: 24px;
  }

  .stat-card p {
    font-size: 12px;
  }

  .kpi .num {
    font-size: 32px;
  }

  .method-card {
    padding: 24px 16px;
  }

  .method-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .method-card p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .method-icon {
    font-size: 32px;
    height: 50px;
  }

  .method-details {
    padding: 12px;
  }

  .method-details p {
    font-size: 12px;
  }

  .method-link {
    font-size: 13px;
  }

  /* ===== IMPACT/STATS ===== */
  .impact-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .impact-content p {
    font-size: 14px;
    max-width: 100%;
  }

  .impact-stats-inline {
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
  }

  .impact-stats-inline h3 {
    font-size: 24px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .impact-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .impact-quote {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 40px 16px 20px;
  }

  .footer-grid {
    gap: 24px;
  }

  .footer h4 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer ul li {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-brand .brand {
    font-size: 18px;
  }

  .footer-brand p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .socials a {
    width: 32px;
    height: 32px;
    margin-right: 8px;
    font-size: 14px;
  }

  .newsletter {
    flex-direction: column;
    gap: 8px;
  }

  .newsletter input,
  .newsletter button {
    padding: 10px 12px;
    font-size: 13px;
  }

  .newsletter button {
    width: 100%;
  }

  .footer-cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .footer-cta p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-bottom {
    margin-top: 30px;
    padding-top: 16px;
    font-size: 12px;
  }

  /* ===== BACKGROUND SHAPES ===== */
  .shape-1,
  .shape-2 {
    display: none;
  }

  /* ===== CHAT/FLOAT BUTTONS ===== */
  .chat-bubble {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 16px;
    font-size: 20px;
  }

  .chatbot-toggle {
    width: 55px;
    height: 55px;
    right: 16px;
    bottom: 16px;
  }

  /* ===== STAT BADGE ===== */
  .stat-badge {
    font-size: 24px;
    padding: 14px 20px;
  }

  /* ===== BUTTONS ===== */
  .donate-btn:hover {
    transform: translateY(-1px);
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .apply-btn:hover,
  .cta-btn:hover,
  .impact-btn:hover {
    transform: translateY(-1px);
  }

  /* ===== WAY CARDS (Get Involved) ===== */
  .way-card {
    padding: 24px 16px;
  }

  .way-header {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
  }

  .way-icon {
    font-size: 24px;
  }

  .way-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .way-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .way-card a {
    font-size: 13px;
    padding: 10px 18px;
  }

  /* ===== DROPDOWN/MODALS ===== */
  .mobile-nav-content {
    max-width: 80vw;
    padding: 30px 24px;
  }

  .mobile-nav .nav-links a {
    font-size: 15px;
    padding: 11px 18px;
  }

  .mobile-nav .donate-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* EXTRA SMALL PHONE BREAKPOINT: Under 480px */
@media (max-width: 479px) {
  /* ===== GENERAL ===== */
  .navbar {
    padding: 10px 12px;
  }

  .navbar-logo span {
    display: none;
  }

  .logo img {
    height: 28px;
  }

  .donate-btn {
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 18px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-column h3::after {
    width: 30px;
  }

  /* ===== HERO ===== */
  .hero,
  .about-hero,
  .programs-hero,
  .partners-hero,
  .blog-hero,
  .get-involved-hero,
  .contact-hero {
    padding: 40px 12px;
    min-height: auto;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 10px 16px;
    font-size: 12px;
  }

  /* ===== SECTIONS ===== */
  .programs,
  .about-section,
  .story-section,
  .mv-section,
  .impact-story,
  .contact-methods,
  .footer-cta {
    padding: 40px 12px;
  }

  .container {
    padding: 0 12px;
  }

  /* ===== SECTION HEADERS ===== */
  .section-header h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 12px;
  }

  /* ===== CARDS ===== */
  .stat-card {
    padding: 20px 12px;
  }

  .stat-card h3 {
    font-size: 20px;
  }

  .stat-card p {
    font-size: 11px;
  }

  .kpi .num {
    font-size: 28px;
  }

  .method-card {
    padding: 20px 12px;
  }

  .method-card h3 {
    font-size: 16px;
  }

  .method-card p {
    font-size: 12px;
  }

  .method-icon {
    font-size: 28px;
  }

  .way-card {
    padding: 20px 12px;
  }

  .way-header {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .way-icon {
    font-size: 20px;
  }

  .way-card h3 {
    font-size: 16px;
  }

  .way-card p {
    font-size: 12px;
  }

  /* ===== PROGRAM CONTENT ===== */
  .program-content h2 {
    font-size: 20px;
    margin: 10px 0;
  }

  .program-content p {
    font-size: 12px;
  }

  .program-content li {
    font-size: 12px;
    padding-left: 24px;
  }

  .apply-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* ===== FOOTER ===== */
  .footer {
    padding: 30px 12px 16px;
  }

  .footer h4 {
    font-size: 13px;
  }

  .footer ul li {
    font-size: 12px;
  }

  .footer-brand .brand {
    font-size: 16px;
  }

  .footer-brand p {
    font-size: 12px;
  }

  .socials a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter button {
    font-size: 12px;
  }

  .footer-cta h2 {
    font-size: 22px;
  }

  .footer-cta p {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  /* ===== MOBILE NAV ===== */
  .mobile-nav-content {
    max-width: 85vw;
    padding: 24px 16px;
  }

  .mobile-nav .nav-links a {
    font-size: 14px;
    padding: 9px 14px;
  }

  /* ===== CHAT BUTTON ===== */
  .chat-bubble,
  .chatbot-toggle {
    width: 45px;
    height: 45px;
    right: 12px;
    bottom: 12px;
    font-size: 18px;
  }

  /* ===== STAT BADGE ===== */
  .stat-badge {
    font-size: 20px;
    padding: 12px 16px;
  }

  /* ===== IMPACT STATS ===== */
  .impact-content h2 {
    font-size: 22px;
  }

  .impact-content p {
    font-size: 12px;
  }

  .impact-stats-inline h3 {
    font-size: 20px;
  }

  .impact-btn {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* ===== ABOUT HERO ===== */
  .about-hero-left h1 {
    font-size: 20px;
  }

  .about-hero-left p {
    font-size: 12px;
  }

  /* ===== BLOG HERO ===== */
  .blog-hero-content h1 {
    font-size: 18px;
  }

  .blog-hero-content p {
    font-size: 12px;
  }

  .blog-stats .stat h3 {
    font-size: 16px;
  }

  .blog-stats .stat p {
    font-size: 10px;
  }
}


