body{
  margin: 0;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'Helvetica Neue', Arial, sans-serif;
  font-weight: 400; /* Roboto Regular */
  background-color: #f9f9f9;
  color: #333;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'Helvetica Neue', Arial, sans-serif;
  font-weight: 400; /* Roboto Regular */
}


.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.60) !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  
}

.top-bar {
  background-color: #077B5F;
  padding: 5px 20px;
  display: flex;
  justify-content: flex-start;
}
.top-bar .social-icons a {
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
  font-size: 1rem;
}

.main-nav .nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-logo .logo {
  height: 80px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #077B5F;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid #FBD118;
}
.cta-buttons a{
    display:block;        
    padding:6px 20px;     
    line-height:1.2;      
}
.btn-half {
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  color: #000;
  background-color: #FBD118;
  transition: background-color 0.3s;
}
.btn-half.left {
  border-right: 0px solid #ffffff33;
}
.btn-half:hover {
  background-color: #c99229;
  color: white;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #077B5F;
}

.side-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  width: 250px;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0,0,0,0.3);
  z-index: 2000;
  padding-top: 60px;
  transition: left 0.3s ease;
}
.side-menu.active {
  left: 0;
  display: block;
}
.side-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #077B5F;
}
.side-menu ul {
  list-style: none;
  padding: 0;
}
.side-menu ul li {
  border-bottom: 1px solid #ddd;
}
.side-menu ul li a {
  display: block;
  padding: 15px;
  color: #077B5F;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 991px) {
  .nav-links,
  .cta-buttons {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}


/* =========================
   HEADER OVERRIDE ONLY
   Goal: logo RIGHT, links + donate LEFT (no middle)
   ========================= */

/* keep your existing container styles, just reorder */
.main-nav .nav-container{
  justify-content: flex-start !important;  /* stop space-between */
}

/* Put logo on the far right */
.main-nav .nav-logo{
  order: 3 !important;
  margin-left: auto !important;            /* pushes it to the right */
}

/* Links on the left */
.main-nav .nav-links{
  order: 1 !important;
  margin-right: 16px !important;           /* spacing (no gap) */
}

/* Donate button right next to links (still on left side) */
.main-nav .cta-buttons{
  order: 2 !important;
  margin-right: 0 !important;
}

/* Make sure the hamburger stays to the left on mobile */
@media (max-width: 991px){
  .main-nav .menu-toggle{
    order: 1 !important;
    margin-right: 0 !important;
  }

  .main-nav .nav-logo{
    order: 2 !important;
    margin-left: auto !important;          /* logo stays right */
  }
}


/* HERO SECTION */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 1000px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-primary{
  background-color: #FBD118;
  color: #000;
  padding: 14px 28px;      /* bigger */
  font-size: 1.05rem;      /* bigger text */
  line-height: 1.2;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 8px;      /* slightly bigger radius to match size */
  transition: background-color 0.3s ease;
  display: inline-block;   /* keeps padding consistent */
}
.btn-primary:hover {
  background-color: #c99229;
  color: #fff;
}
.search-input {
  display: none;
}
@media (max-width: 768px) {
  .nav-left,
  .nav-right {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  animation: bounce 2s infinite;
  text-decoration: none;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, 10px);
  }
  60% {
    transform: translate(-50%, 5px);
  }
}


.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}
.about-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
.about-text {
  max-width: 600px;
}
.about-text h2 {
  font-size: 2rem;
  color: #077B5F;
  margin-bottom: 20px;
}
.about-text h2 span {
  font-weight: bold;
  display: block;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text h2 span {
    display: inline;
  }
}


/* =========================
   IMPACT SECTION (NGO)
========================= */

.impact-section {
  position: relative;
  padding: 0;
  color: #fff;
}

.impact-overlay {
  background: rgba(0, 0, 0, 0.62);
  padding: 70px 20px;
  text-align: center;
}

.impact-header {
  max-width: 920px;
  margin: 0 auto 42px auto;
}

.impact-header h2 {
  font-size: 2.5rem;
  margin: 0 0 12px 0;
}

.impact-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

/* GRID: clearly different desktop/tablet/mobile */
.impact-grid {
  max-width: 1200px;
  margin: 0 auto 34px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.impact-card {
  background: rgba(255, 255, 255, 0.96);
  color: #077B5F;
  padding: 22px 20px;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.25);
}

.impact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 123, 95, 0.12);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.impact-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.impact-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.98rem;
  color: rgba(7, 123, 95, 0.92);
}

/* ACTION BUTTONS: prevents overlap */
.impact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px auto 26px auto;
  max-width: 900px;
}

.impact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 12px 20px;
  border-radius: 10px;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

/* keep your existing .btn-secondary but make sure it behaves */
.btn-secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #077B5F;
}

/* Bottom strip */
.impact-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 14px;
  align-items: center;
  text-align: left;
  backdrop-filter: blur(6px);
}

.impact-strip-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.impact-strip-item span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.95;
}

.impact-strip-cta {
  background: #fff;
  color: #077B5F;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.impact-strip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.22);
}

/* Tablet */
@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  .impact-overlay {
    padding: 56px 16px;
  }

  .impact-header h2 {
    font-size: 2rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-actions {
    flex-direction: column;
    gap: 12px;
  }

  .impact-btn {
    width: 100%;
    min-width: 0;
  }

  .impact-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .impact-strip-cta {
    width: 100%;
    text-align: center;
  }
}

/* ===== Alignment / overlap fixes ===== */

/* make sure nothing is being clipped */
.impact-section,
.impact-section .impact-overlay {
  overflow: visible;
}

/* give a clear gap between cards and buttons */
.impact-section .impact-grid {
  margin-bottom: 48px;     /* increase spacing */
  position: relative;
  z-index: 1;              /* keep cards layer lower */
}

/* force buttons to sit above cards and not “go under” them */
.impact-section .impact-actions {
  position: relative;
  z-index: 10;             /* higher than cards */
  margin-top: 0;
  padding-top: 6px;
}

/* ensure cards don't get a higher stacking context from theme styles */
.impact-section .impact-card {
  position: relative;
  z-index: 1;
}

/* if your theme has weird button floats/blocks, this stabilizes layout */
.impact-section .impact-actions .impact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* ===== Mobile override (NO GAP — margins/paddings only) ===== */
@media (max-width: 768px) {

  /* Force the cards to behave as separate blocks (not one big panel) */
  .impact-section .impact-grid{
    display: block !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 auto 18px auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;

    /* ensure no gap is used anywhere */
    gap: 0 !important;
  }

  .impact-section .impact-card{
    display: block !important;
    width: 100% !important;

    /* spacing between cards using margin only */
    margin: 0 0 14px 0 !important;

    /* keep card look */
    background: rgba(255,255,255,0.96) !important;
    border-radius: 14px !important;
    padding: 18px 16px !important;
    box-sizing: border-box !important;

    /* prevent theme separators */
    border: 0 !important;
  }

  .impact-section .impact-card:last-child{
    margin-bottom: 0 !important;
  }

  /* Buttons stacked with spacing using margin only */
  .impact-section .impact-actions{
    display: block !important;
    width: 100% !important;
    max-width: 520px !important;
    margin: 10px auto 18px auto !important;

    gap: 0 !important; /* just in case */
  }

  .impact-section .impact-actions .impact-btn{
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;

    /* spacing between buttons */
    margin: 0 0 12px 0 !important;
    box-sizing: border-box !important;
  }

  .impact-section .impact-actions .impact-btn:last-child{
    margin-bottom: 0 !important;
  }

  /* Bottom strip: stack items + CTA */
  .impact-section .impact-strip{
    display: block !important;
    padding: 16px !important;
    margin-top: 14px !important;

    gap: 0 !important;
  }

  .impact-section .impact-strip-item{
    margin: 0 0 10px 0 !important;
  }

  .impact-section .impact-strip-item:last-of-type{
    margin-bottom: 0 !important;
  }

  .impact-section .impact-strip-cta{
    display: block !important;
    width: 95% !important;
    text-align: center !important;
    margin-top: 10px !important;
  }
}

/* =========================
   WHY SECTION (Zita Nadege Foundation)
   Full rewrite + NGO tint
========================= */

.why-section{
  padding: 60px 20px;
  text-align: center;
}

.why-section h2{
  font-size: 2.2rem;
  color: #077B5F;
  margin: 0 auto 40px auto;
  max-width: 1300px;
  padding: 0; /* remove old duplicate padding */
}

/* Card blocks */
.why-block{
  width: 70%;
  margin: 30px auto;
  height: 300px;

  display: flex;
  align-items: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 10px;
  overflow: hidden;
  color: #fff;

  position: relative;
}

/* NGO tint overlay */
.why-block::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(50, 42, 42, 0.468);
  z-index: 1;
}

/* Text panel */
.why-text{
  position: relative;
  z-index: 2;

  width: 52%;
  padding: 34px;
  text-align: left;
}

.why-text h3{
  margin: 0 0 12px 0;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.why-text p{
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
  opacity: 0.98;
}

/* CTA button inside card */
.why-text button{
  background: #fff;
  color: #077B5F;
  font-weight: 800;

  border: none;
  padding: 11px 20px;
  margin-top: 16px;

  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease, color 0.3s ease;
}

.why-text button:hover{
  background: #FBD118;
  color: #fff;
  transform: translateY(-2px);
}

/* Reveal animation */
.reveal-on-scroll{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.revealed{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MODALS
========================= */

.custom-modal{
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background-color: rgba(0,0,0,0.6);

  justify-content: center;
  align-items: center;

  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn{
  0%{ opacity: 0; transform: scale(0.95); }
  100%{ opacity: 1; transform: scale(1); }
}

.custom-modal .modal-content{
  background: #fff;
  color: #333;

  width: 90%;
  max-width: 800px;

  padding: 40px 30px;
  border-radius: 10px;

  position: relative;
  text-align: left;

  box-shadow: 0 8px 30px rgba(0,0,0,0.2);

  opacity: 0;
  transform: scale(0.95);
  animation: fadeInContent 0.3s ease forwards;
}

@keyframes fadeInContent{
  to{ opacity: 1; transform: scale(1); }
}

.custom-modal .modal-content h3{
  margin: 0 0 18px 0;
  font-size: 1.8rem;
  color: #077B5F;
}

.custom-modal .close{
  position: absolute;
  right: 15px;
  top: 10px;

  font-size: 24px;
  line-height: 1;
  color: #000;

  cursor: pointer;
}

/* =========================
   RESPONSIVE (NO GAP)
========================= */

@media (max-width: 992px){
  .why-block{
    width: 88%;
  }
  .why-text{
    width: 65%;
  }
}

@media (max-width: 768px){
  .why-section{
    padding: 50px 16px;
  }

  .why-section h2{
    font-size: 1.9rem;
    margin-bottom: 26px;
  }

  .why-block{
    width: 92%;
    height: auto;
    margin: 18px auto;

    /* stacked layout */
    flex-direction: column;
    align-items: flex-start;
  }

  .why-text{
    width: 100%;
    padding: 18px 16px;
    text-align: left;
  }

  .why-text p{
    max-width: 100%;
  }

  .why-text button{
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
  }

  .custom-modal .modal-content{
    padding: 26px 18px;
  }

  .custom-modal .modal-content h3{
    font-size: 1.5rem;
  }
}


/* SPONSOR SECTION */

.sponsors-carousel {
  background: #eeeeee;
  padding: 50px 0;
  text-align: center;
}
.sponsors-carousel h3 {
  color: #077B5F;
  font-size: 1.4rem;
  margin-bottom: 40px;
  letter-spacing: 2px;
}
.sponsorSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsorSwiper img {
  height: 60px;
  max-width: 120px;
  transition: transform 0.3s ease;
}
.sponsorSwiper img:hover {
  transform: scale(1.1);
}


/* =========================
   FOOTER (Zita Nadege Foundation)
   Smooth gradient + dark tint overlay
   No background images, no gap usage
========================= */

.site-footer{
  position: relative;
  color: #fff;
  padding: 60px 20px 0;

  /* REAL gradient blend */
  background: linear-gradient(90deg,
    #077B5F 0%,
    #077B5F 28%,
    #CE2028 52%,
    #FBD118 100%
  );

  overflow: hidden;
}

/* Dark tint overlay for readability */
.site-footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  pointer-events: none;
  z-index: 0;
}

/* Kill old overlay div if still in HTML */
.footer-overlay{ display: none !important; }

.footer-inner{
  position: relative;
  z-index: 1;

  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Columns spacing using margins (no gap) */
.footer-col{
  flex: 1 1 200px;
  margin: 0 22px 34px 22px;
  box-sizing: border-box;
}

/* Logo column */
.footer-logo img,
.logo-col img{
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
}

/* Tagline */
.footer-tagline{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.95;
  max-width: 340px;
}

/* Nav columns */
.footer-nav ul,
.nav-col ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li,
.nav-col li{
  margin: 0 0 10px 0; /* spacing without gap */
}

.footer-nav a,
.nav-col a{
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  font-weight: 650;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-nav a:hover,
.nav-col a:hover{
  opacity: 0.82;
  transform: translateX(2px);
}

/* Newsletter form */
.footer-news .footer-form,
.news-col form{
  display: flex;
  align-items: stretch;
  margin: 0 0 18px 0;
}

/* Input */
.footer-news input,
.news-col input{
  flex: 1;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  outline: none;

  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.95rem;
}

.footer-news input::placeholder,
.news-col input::placeholder{
  color: rgba(255,255,255,0.8);
}

/* Button */
.footer-news button,
.news-col button{
  border: 1px solid rgba(255,255,255,0.25);
  border-left: 0;
  border-radius: 0 10px 10px 0;

  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;

  background: #e5bf16;
  color: #fff;

  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.footer-news button:hover,
.news-col button:hover{
  opacity: 0.95;
  transform: translateY(-1px);
  background: rgba(0,0,0,0.45);
}

/* Reach label */
.footer-reach,
.reach-label{
  margin: 0 0 10px 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: rgba(255,255,255,0.95);
}

/* Social */
.footer-social{
  display: flex;
  align-items: center;
}

/* spacing via margin only */
.footer-social a{
  display: inline-flex;
  width: 36px;
  height: 36px;

  margin-right: 10px;
  border-radius: 50%;
  text-decoration: none;

  background: rgba(255,255,255,0.92);
  color: #077B5F;

  align-items: center;
  justify-content: center;

  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:last-child{
  margin-right: 0;
}

.footer-social a:hover{
  transform: translateY(-3px);
  background: #FBD118;
  color: #111;
}

/* Bottom bar */
.footer-bottom{
  position: relative;
  z-index: 1;

  text-align: center;
  padding: 18px 0;
  margin-top: 24px;

  font-size: 0.86rem;
  color: rgba(255,255,255,0.95);

  border-top: 1px solid rgba(255,255,255,0.22);
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px){
  .footer-inner{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col{
    width: 100%;
    max-width: 520px;
    margin: 0 0 26px 0;
  }

  .footer-logo img,
  .logo-col img{
    margin-left: auto;
    margin-right: auto;
    width: 150px;
  }

  .footer-tagline{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-news .footer-form,
  .news-col form{
    display: block;
  }

  .footer-news input,
  .news-col input{
    width: 100%;
    border-radius: 10px;
    border-right: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 10px;
  }

  .footer-news button,
  .news-col button{
    width: 100%;
    border-radius: 10px;
    border-left: 1px solid rgba(255,255,255,0.25);
  }

  .footer-social{
    justify-content: center;
  }
}



/* Scroll up */
.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FBD118;
  color: white;
  font-size: 1.5rem;
  padding: 12px 16px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 999;
  display: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.scroll-up:hover {
  background-color: #c99229;
}


/* About Page  */

/* Section 1 */

.about-header {
  text-align: center;
  padding: 60px 20px 30px;
}
.about-header h1 {
  font-size: 3rem;
  color: #077B5F;
  font-weight: bold;
  margin-bottom: 10px;
}
.about-header .underline {
  width: 60px;
  height: 4px;
  background-color: #077B5F;
  margin: 0 auto;
  border-radius: 2px;
}


/* =========================
   ABOUT PAGE (Zita Nadege Foundation)
   Full rewrite - aligned, clean, responsive
   No gap (margins/padding only)
========================= */

.zita-about{
  padding: 80px 20px;
  background: #fff;
}

/* Intro */
.zita-about__intro{
  max-width: 1100px;
  margin: 0 auto 55px auto;
  text-align: left;
}

.zita-about__title{
  margin: 0 0 14px 0;
  font-size: 2.6rem;
  line-height: 1.2;
  color: #077B5F;
}

.zita-about__lead{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333;
  max-width: 980px;
}

/* Blocks wrapper */
.zita-about__block{
  max-width: 1100px;
  margin: 0 auto 56px auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* no gap: spacing via padding on children */
}

.zita-about__block--reverse{
  flex-direction: row-reverse;
}

/* Media */
.zita-about__media{
  flex: 0 0 52%;
  padding: 0 18px 0 0; /* spacing */
  box-sizing: border-box;
}

.zita-about__block--reverse .zita-about__media{
  padding: 0 0 0 18px; /* spacing opposite */
}

.zita-about__media img{
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

/* Content */
.zita-about__content{
  flex: 0 0 48%;
  padding: 0 0 0 18px;
  box-sizing: border-box;
  text-align: left;
}

.zita-about__block--reverse .zita-about__content{
  padding: 0 18px 0 0;
}

.zita-about__content h2{
  margin: 0 0 12px 0;
  font-size: 2rem;
  color: #077B5F;
  line-height: 1.25;
}

.zita-about__content p{
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: #333;
  max-width: 520px;
}

/* Fade-in (keeps your existing JS logic) */
.fade-in{
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible{
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 992px){
  .zita-about__title{
    font-size: 2.2rem;
  }

  .zita-about__media img{
    height: 300px;
  }

  .zita-about__content h2{
    font-size: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 768px){
  .zita-about{
    padding: 55px 16px;
  }

  .zita-about__intro{
    margin-bottom: 34px;
  }

  .zita-about__title{
    font-size: 2rem;
  }

  .zita-about__block,
  .zita-about__block--reverse{
    flex-direction: column;
    margin-bottom: 38px;
  }

  .zita-about__media,
  .zita-about__block--reverse .zita-about__media{
    flex: 1 1 auto;
    padding: 0;
    margin: 0 0 16px 0; /* spacing */
  }

  .zita-about__media img{
    height: 220px;
    border-radius: 14px;
  }

  .zita-about__content,
  .zita-about__block--reverse .zita-about__content{
    flex: 1 1 auto;
    padding: 0;
  }

  .zita-about__content h2{
    font-size: 1.55rem;
  }

  .zita-about__content p{
    max-width: 100%;
    font-size: 1.02rem;
  }
}

/* Section 2 */
.methodology-section {
  padding: 130px 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.methodology-wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}
.methodology-text-box {
  background: white;
  color: #000;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.box-title {
  font-size: 2rem;
  font-weight: bold;
  color: #077B5F;
  margin-bottom: 20px;
}
.methodology-video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}
.methodology-video {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .methodology-wrapper {
    flex-direction: column;
  }
  .methodology-text-box, .methodology-video {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .methodology-video iframe {
    height: auto;
  }
}

/* =========================
   OUR VISION (No gap)
========================= */

.vision-section{
  padding: 70px 20px;
  background: #fff;
}

.vision-inner{
  max-width: 1300px;
  margin: 0 auto;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  border-radius: 16px;
  padding: 40px 34px;

  /* subtle panel background */
  background: rgba(7, 123, 95, 0.06);
  box-sizing: border-box;
}

/* Left */
.vision-left{
  width: 42%;
  text-align: left;
  box-sizing: border-box;
  padding-right: 18px; /* spacing without gap */
}

.vision-title{
  margin: 0 0 12px 0;
  font-size: 2.2rem;
  color: #077B5F;
  line-height: 1.2;
}

.vision-lead{
  margin: 0 0 18px 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333;
  max-width: 420px;
}

/* CTA */
.vision-cta{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
}

/* Right */
.vision-right{
  width: 58%;
  box-sizing: border-box;
  padding-left: 18px; /* spacing without gap */
}

.vision-point{
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px;

  margin-bottom: 14px; /* spacing without gap */
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.vision-point:last-child{
  margin-bottom: 0;
}

.vision-point h3{
  margin: 0 0 8px 0;
  font-size: 1.15rem;
  color: #111;
}

.vision-point p{
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

/* Tablet */
@media (max-width: 992px){
  .vision-inner{
    padding: 34px 22px;
  }

  .vision-left{ width: 45%; }
  .vision-right{ width: 55%; }

  .vision-title{ font-size: 2rem; }
}

/* Mobile (no gap) */
@media (max-width: 768px){
  .vision-section{
    padding: 55px 16px;
  }

  .vision-inner{
    display: block;
    padding: 26px 16px;
  }

  .vision-left,
  .vision-right{
    width: 100%;
    padding: 0;
  }

  .vision-left{
    margin-bottom: 16px; /* spacing without gap */
  }

  .vision-lead{
    max-width: 100%;
  }

  .vision-cta{
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .vision-point{
    margin-bottom: 12px;
  }
}

/* =========================
   BOARD MEMBERS (no gap)
========================= */
.board-section{
  padding: 70px 20px;
  background: #fff;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.board-container{
  width: 75%;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}

.board-title{
  margin: 0;
  font-size: 2.2rem;
  color: #077B5F;
  font-weight: 700;
  text-align: left;
}

.board-underline{
  width: 90px;
  height: 4px;
  background: #FBD118;
  border-radius: 99px;
  margin: 12px 0 0 0;
}

.board-subtitle{
  margin: 14px 0 28px 0;
  max-width: 1200px;
  color: rgba(0,0,0,0.62);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Grid: 3 per row (desktop) using margins (no gap) */
.board-grid{
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

/* Card as button */
.board-card{
  width: calc(33.333% - 24px);
  margin: 12px;
  padding: 0;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.board-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.board-card__img{
  height: 240px;
  background-size: cover;
  background-position: center top; /* or just: top */
  position: relative;
}

.board-card__img:after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

.board-card__info{
  padding: 16px 16px 18px 16px;
}

.board-card__name{
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px 0;
}

.board-card__role{
  font-size: 0.95rem;
  font-weight: 600;
  color: #077B5F;
}

/* =========================
   MODAL
========================= */
.board-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.board-modal.is-open{
  display: block;
}

.board-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.board-modal__panel{
  position: relative;
  width: 92%;
  max-width: 920px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  transform: translateY(10px);
  animation: boardPop 0.18s ease forwards;
}

@keyframes boardPop{
  to{ transform: translateY(0); }
}

.board-modal__close{
  position: absolute;
  right: 12px;
  top: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(0,0,0,0.06);
  color: #111;
  font-size: 26px;
  cursor: pointer;
}

.board-modal__close:hover{
  background: rgba(0,0,0,0.10);
}

.board-modal__content{
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}

.board-modal__media{
  width: 42%;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.board-modal__media:before{
  content:"";
  position: absolute;
  inset: 0;
  
}

.board-modal__text{
  width: 58%;
  padding: 26px 24px;
  box-sizing: border-box;
}

.board-modal__name{
  margin: 0 0 8px 0;
  font-size: 1.7rem;
  font-weight: 800;
  color: #077B5F;
}

.board-modal__position{
  display: inline-block;
  font-weight: 700;
  color: #111;
  background: rgba(251, 209, 24, 0.55);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.board-modal__desc{
  margin: 0 0 16px 0;
  color: rgba(0,0,0,0.65);
  line-height: 1.8;
}

.board-modal__email{
  display: inline-block;
  font-weight: 800;
  color: #CE2028;
  text-decoration: none;
}

.board-modal__email:hover{
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px){
  .board-container{ width: 90%; }
  .board-card__img{ height: 220px; }
}

@media (max-width: 900px){
  .board-card{
    width: calc(50% - 24px); /* 2 per row */
  }
  .board-modal__content{
    display: block;
  }
  .board-modal__media{
    width: 100%;
    min-height: 260px;
  }
  .board-modal__text{
    width: 100%;
  }
}

@media (max-width: 520px){
  .board-card{
    width: calc(100% - 24px); /* 1 per row */
  }
  .board-title{ font-size: 1.85rem; }
}


/* Coaches Page */

/* Section 1 */
.coaches-section {
  padding: 60px 20px;
}

.coaches-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.coach-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  background-color: #f9f9f9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.coach-photo {
  position: relative;
  overflow: hidden;
  width: 350px;
  height: 400px;
  flex-shrink: 0;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.coach-photo .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-photo:hover img {
  transform: scale(1.1);
}

.coach-photo:hover .overlay {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd700;
}

.coach-info {
  flex: 1;
  padding-right: 30px;
}

.coach-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.coach-role {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 20px;
}

.coach-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .coach-card {
    flex-direction: column;
    text-align: center;
  }

  .coach-photo {
    width: 100%;
    height: 500px;
  }

  .coach-info {
    padding: 0 20px 20px;
  }

  .coach-photo .overlay {
    opacity: 0;
  }

  .coach-photo.active .overlay {
    opacity: 1;
  }

  .coach-photo:hover .overlay {
    opacity: 1; /* just in case */
  }
}


/* Section 2 */
.join-coaches-section {
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.join-coaches-content p {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.join-coaches-content a {
  font-size: 2.2rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.join-coaches-content a:hover {
  color: #ffc107;
}

@media (max-width: 768px) {
  .join-coaches-content p {
    font-size: 1.1rem;
  }

  .join-coaches-content a {
    font-size: 1.5rem;
  }
}


/* Schedule Page */

:root{
    --znf-green:#077B5F;
    --znf-red:#CE2028;
    --znf-yellow:#FBD118;
    --znf-text:#1b1b1b;
    --znf-muted:#5a5a5a;
    --znf-border: rgba(0,0,0,0.10);
  }

  /* Section 1 */
  .znf-support-hero{
    padding: 75px 20px 40px;
    background: #fff;
  }
  .znf-support-hero__inner{
    max-width: 1100px;
    margin: 0 auto;
  }
  .znf-support-hero__title{
    margin: 0 0 12px 0;
    font-size: 2.6rem;
    color: var(--znf-text);
  }
  .znf-support-hero__text{
    margin: 0;
    max-width: 980px;
    line-height: 1.85;
    font-size: 1.06rem;
    color: var(--znf-muted);
  }

  /* Section headers */
  .znf-support-section{
    padding: 35px 20px 75px;
    background: #fff;
  }
  .znf-support-head{
    max-width: 1100px;
    margin: 0 auto 22px auto;
  }
  .znf-support-head h2{
    margin: 0 0 8px 0;
    font-size: 2rem;
    color: var(--znf-green);
  }
  .znf-support-head p{
    margin: 0;
    color: var(--znf-muted);
    line-height: 1.75;
  }

  /* Grid wrapper (NO gap) */
  .znf-grid{
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Clinics cards: 3 per row desktop */
  .znf-card--clinic{
    width: calc(33.333% - 24px);
    margin: 12px;
  }

  /* Doctor cards: 2 per row desktop */
  .znf-card--doctor{
    width: calc(50% - 24px);
    margin: 12px;
  }

  /* Base card */
  .znf-card{
    background: #fff;
    border: 1px solid var(--znf-border);
    border-radius: 16px;
    padding: 18px 18px;
    box-sizing: border-box;
    box-shadow: 0 16px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  /* Left accent strip using your brand colors */
  .znf-card::before{
    content:"";
    position:absolute;
    left:0; top:0; bottom:0;
    width: 6px;
    background: linear-gradient(180deg, var(--znf-green), var(--znf-red), var(--znf-yellow));
    opacity: 0.95;
  }

  .znf-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.16);
  }

  .znf-card__title{
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    color: var(--znf-text);
  }

  .znf-card__desc{
    margin: 0 0 14px 0;
    color: var(--znf-muted);
    line-height: 1.7;
  }

  .znf-meta{
    margin: 0 0 8px 0;
    color: var(--znf-muted);
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .znf-meta strong{
    color: #3a3a3a;
    font-weight: 800;
  }
  .znf-meta a{
    color: var(--znf-green);
    text-decoration: none;
    font-weight: 800;
  }
  .znf-meta a:hover{
    text-decoration: underline;
  }

  /* Buttons */
  .znf-actions{
    margin-top: 12px;
  }
  .znf-btn{
    display: inline-block;
    text-decoration: none;
    font-weight: 900;
    border-radius: 10px;
    padding: 10px 14px;
    margin-right: 10px; /* no gap */
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-sizing: border-box;
  }
  .znf-btn:last-child{ margin-right: 0; }

  .znf-btn--outline{
    border: 2px solid var(--znf-green);
    color: var(--znf-green);
    background: transparent;
  }
  .znf-btn--solid{
    background: var(--znf-yellow);
    color: #111;
    border: 2px solid rgba(0,0,0,0);
  }
  .znf-btn:hover{
    transform: translateY(-2px);
    opacity: 0.95;
  }

  /* Doctor card “different style” */
  .znf-dochead{
    display: flex;
    align-items: center;
    margin: 0 0 12px 0;
  }
  .znf-badge{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(206, 32, 40, 0.12);
    color: var(--znf-red);
    font-weight: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px; /* no gap */
    letter-spacing: 0.5px;
  }
  .znf-docsub{
    font-size: 0.95rem;
    color: var(--znf-muted);
    margin-top: 2px;
  }

  /* Reveal animation */
  .znf-reveal{
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .znf-reveal.znf-revealed{
    opacity: 1;
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 1100px){
    .znf-card--clinic{ width: calc(50% - 24px); }
    .znf-card--doctor{ width: calc(100% - 24px); }
  }

  @media (max-width: 768px){
    .znf-support-hero{ padding: 55px 16px 28px; }
    .znf-support-hero__title{ font-size: 2rem; }
    .znf-support-section{ padding: 28px 16px 55px; }

    .znf-card--clinic,
    .znf-card--doctor{
      width: calc(100% - 24px);
      margin: 10px 12px;
    }

    .znf-btn{
      display: block;
      width: 100%;
      text-align: center;
      margin: 0 0 10px 0;
    }
    .znf-btn:last-child{ margin-bottom: 0; }

    .znf-dochead{ margin-bottom: 10px; }
  }


  /* Doctors grid wrapper (no gap) */
.znf-doctors-wrap{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* 2 per row desktop */
.znf-doctor-card{
  width: calc(50% - 24px);
  margin: 12px;
  box-sizing: border-box;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 18px 18px;
  position: relative;
  overflow: hidden;

  box-shadow: 0 16px 30px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Brand accent strip */
.znf-doctor-card::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 6px;
  background: linear-gradient(180deg, #077B5F, #CE2028, #FBD118);
  opacity: 0.95;
}

.znf-doctor-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.16);
}

/* Top row */
.znf-doctor-top{
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

/* Photo */
.znf-doctor-photo{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  margin-right: 12px;
  border: 2px solid rgba(206,32,40,0.18);
  background: rgba(0,0,0,0.03);
  flex: 0 0 auto;
}

.znf-doctor-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Initials fallback */
.znf-doctor-initials{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-right: 12px;
  background: rgba(206,32,40,0.12);
  color: #CE2028;
  font-weight: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex: 0 0 auto;
}

/* Titles */
.znf-doctor-title{ text-align: left; }

.znf-doctor-name{
  margin: 0;
  font-size: 1.15rem;
  color: #1b1b1b;
}

.znf-doctor-specialty{
  margin-top: 2px;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.60);
}

/* Description */
.znf-doctor-desc{
  margin: 0 0 14px 0;
  color: rgba(0,0,0,0.62);
  line-height: 1.7;
}

/* Meta lines */
.znf-doctor-meta{ margin: 0 0 14px 0; }

.znf-doctor-line{
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(0,0,0,0.62);
}

.znf-doctor-label{
  font-weight: 900;
  color: rgba(0,0,0,0.72);
  margin-right: 6px;
}

.znf-doctor-link{
  color: #077B5F;
  text-decoration: none;
  font-weight: 900;
}

.znf-doctor-link:hover{
  text-decoration: underline;
}

/* Buttons */
.znf-doctor-actions{ margin-top: 10px; }

.znf-doctor-btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
  margin-right: 10px; /* no gap */
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-sizing: border-box;
}

.znf-doctor-btn:last-child{ margin-right: 0; }

.znf-doctor-btn--outline{
  border: 2px solid #077B5F;
  color: #077B5F;
  background: transparent;
}

.znf-doctor-btn--solid{
  background: #FBD118;
  color: #111;
  border: 2px solid rgba(0,0,0,0);
}

.znf-doctor-btn:hover{
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Empty state */
.znf-empty{
  max-width: 1100px;
  margin: 0 auto;
  color: rgba(0,0,0,0.60);
}

/* Mobile + tablet */
@media (max-width: 1100px){
  .znf-doctor-card{
    width: calc(100% - 24px);
    margin: 12px;
  }
}

@media (max-width: 768px){
  .znf-doctor-card{
    width: calc(100% - 24px);
    margin: 10px 12px;
  }

  .znf-doctor-btn{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 0 10px 0;
  }

  .znf-doctor-btn:last-child{ margin-bottom: 0; }
} 

/* Section 3: Programmes  */
.programmes-section-cards {
  padding: 60px 20px;
  background: #f8f8f8;
  max-width: 1200px;
  margin: auto;
}

.programme-swiper {
  padding: 20px 0;
}

.swiper-slide.programme-card {
  position: relative;
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.swiper-slide.programme-card:hover {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.programme-overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  width: 60%;
  height: 60%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.programme-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.programme-overlay h3 span {
  font-weight: normal;
  font-size: 1rem;
}

.read-more-btn {
  background: #e87722;
  color: white;
  border: none;
  padding: 8px 14px;
  font-size: 0.9rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.read-more-btn:hover {
  background: #c35e13;
}

/* Modal */

/*.modal {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: flex;             
  align-items: center;       
  justify-content: center;   
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: scroll;
}

 .modal-content{
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  overflow-y: scroll;

} */

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.modal-programme {
  display: flex;
  flex-direction: column;
  
  gap: 2rem;
}

.modal-header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.modal-image {
  width: 320px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.modal-description {
  flex: 1;
}

.modal-description h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #077B5F;
}

.modal-description p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #333;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.modal-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.modal-item label {
  font-size: 0.9rem;
  color: #777;
  display: block;
}

.modal-item strong {
  font-size: 1.1rem;
  color: #077B5F;
  display: block;
}




/* Program Page  */

  :root{
    --znf-green:#077B5F;
    --znf-red:#CE2028;
    --znf-yellow:#FBD118;
    --znf-text:#1b1b1b;
    --znf-muted: rgba(0,0,0,0.62);
    --znf-border: rgba(0,0,0,0.10);
  }

  .prog-page{
    padding: 70px 20px;
    background: #fff;
  }

  .prog-head{
    max-width: 1300px;
    margin: 0 auto 22px auto;
  }

  .prog-head h1{
    margin: 0 0 10px 0;
    font-size: 2.6rem;
    color: var(--znf-text);
  }

  .prog-head p{
    margin: 0;
    max-width: 950px;
    line-height: 1.85;
    color: var(--znf-muted);
    font-size: 1.06rem;
  }

  /* Grid: 2 columns desktop (no gap) */
  .prog-grid{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .prog-card{
    width: calc(50% - 24px);
    margin: 12px;
    box-sizing: border-box;

    background: #fff;
    border: 1px solid var(--znf-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 30px rgba(0,0,0,0.05);

    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .prog-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.10);
    border-color: rgba(0,0,0,0.16);
  }

  /* Card layout: image left, content right */
  .prog-card__row{
    display: flex;
    align-items: stretch;
  }

  .prog-card__media{
    position: relative;
    width: 42%;
    min-height: 170px;
    background: rgba(0,0,0,0.04);
  }

  .prog-card__media img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* Date badge on image (top-left) */
  .prog-datebadge{
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(206, 32, 40, 0.92);
    color: #fff;
    font-weight: 900;
    font-size: 0.88rem;
    padding: 8px 10px;
    border-radius: 12px;
    line-height: 1.1;
    box-shadow: 0 10px 18px rgba(0,0,0,0.22);
  }

  .prog-card__body{
    width: 58%;
    padding: 16px 16px;
    box-sizing: border-box;
  }

  .prog-title{
    margin: 0 0 8px 0;
    font-size: 1.18rem;
    color: var(--znf-text);
    line-height: 1.35;
  }

  .prog-desc{
    margin: 0 0 12px 0;
    color: var(--znf-muted);
    line-height: 1.7;
    font-size: 0.98rem;
  }

  .prog-meta{
    margin: 0;
  }

  .prog-line{
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: var(--znf-muted);
    line-height: 1.45;
  }
  .prog-line:last-child{ margin-bottom: 0; }

  .prog-icon{
    color: var(--znf-green);
    margin-right: 8px; /* no gap */
    width: 18px;
    display: inline-block;
    text-align: center;
  }

  .prog-link{
    color: var(--znf-green);
    font-weight: 900;
    text-decoration: none;
  }
  .prog-link:hover{ text-decoration: underline; }

  /* Reveal animation */
  .prog-reveal{
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .prog-reveal.prog-revealed{
    opacity: 1;
    transform: translateY(0);
  }

  /* Tablet */
  @media (max-width: 1100px){
    .prog-card{ width: calc(100% - 24px); }
    .prog-card__media{ width: 38%; }
    .prog-card__body{ width: 62%; }
  }

  /* Mobile */
  @media (max-width: 768px){
    .prog-page{ padding: 55px 16px; }
    .prog-head h1{ font-size: 2rem; }

    .prog-card{ width: calc(100% - 24px); margin: 10px 12px; }

    .prog-card__row{ display: block; }

    .prog-card__media{
      width: 100%;
      height: 200px;
      min-height: 200px;
    }

    .prog-card__body{
      width: 100%;
      padding: 16px 14px;
    }

    .prog-datebadge{
      top: 10px;
      left: 10px;
      padding: 7px 9px;
      border-radius: 10px;
    }
  }


/* Make items in each row equal height */
.prog-grid{
  align-items: stretch; /* key: stretch items */
}

/* Ensure card fills the stretched height */
.prog-card{
  display: flex;
}

/* Make the inner row fill the card height */
.prog-card__row{
  display: flex;
  width: 100%;
  height: 100%;
}

/* Make the right side (content) push consistently */
.prog-card__body{
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Keep meta pinned towards the bottom if you want */
.prog-meta{
  margin-top: auto;
}

@media (max-width: 768px){
  .prog-card{
    display: block;
  }
  .prog-card__row{
    display: block;
    height: auto;
  }
  .prog-card__body{
    display: block;
    height: auto;
  }
  .prog-meta{
    margin-top: 0;
  }
}





/* =========================
   ACTIVITIES PAGE (ONE BLOCK)
   ========================= */

.gallery-section{
  padding: 60px 20px;
  background-color: #fff;
}

 .gallery-section .container{
  width: 75%;
  max-width: 1180px;
  position: relative;
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Title + subtitle */
.gallery-title-wrapper h3{
  font-size: 2.2rem;
  color: #077B5F;
  text-align: left;
  margin: 0;
}

.gallery-subtitle{
  margin: 10px 0 0 0;
  max-width: 860px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.62);
}

/* -------------------------
   Magnific Gallery Thumbs
   (NO GAP - use margins)
------------------------- */

/* Some themes/plugins output .mfp-gallery, others output .magnific */
.mfp-gallery,
.magnific{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 30px;
  margin-left: -10px;  /* negative to balance item margins */
  margin-right: -10px;
  padding: 0;
  box-sizing: border-box;
}

/* Default: 4 per row on desktop (smaller images) */
.mfp-gallery a,
.magnific a{
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;

  width: calc(25% - 20px);
  flex: 0 0 calc(25% - 20px);

  margin: 10px; /* spacing without gap */
  text-decoration: none;

  transition: transform 0.25s ease;
}

/* Images */
.mfp-gallery a img,
.magnific img{
  width: 100%;
  height: 180px;          /* makes thumbs consistent & smaller */
  display: block;
  object-fit: cover;
  border-radius: 10px;
  transform: scale(1);
  transition: transform 0.25s ease;
}

/* Hover */
.mfp-gallery a:hover img,
.magnific a:hover img{
  transform: scale(1.05);
}

/* Magnific popup overrides */
img.mfp-img{
  position: static;
  width: 100%;
  height: auto;
}

.mfp-figure:after{
  background: none;
  box-shadow: none;
}

.mfp-figure figure{
  max-width: 1200px;
}

/* -------------------------
   Responsive
------------------------- */

/* 3 per row */
@media (max-width: 1024px){
  .container{
    width: 90%;
  }

  .mfp-gallery a,
  .magnific a{
    width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
  }

  .mfp-gallery a img,
  .magnific img{
    height: 170px;
  }
}

/* 2 per row */
@media (max-width: 768px){
  .gallery-section{
    padding: 45px 16px;
  }

  .gallery-title-wrapper h3{
    font-size: 1.8rem;
  }

  .gallery-subtitle{
    font-size: 1rem;
  }

  .mfp-gallery a,
  .magnific a{
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }

  .mfp-gallery a img,
  .magnific img{
    height: 160px;
  }
}

/* 1 per row */
@media (max-width: 480px){
  .mfp-gallery a,
  .magnific a{
    width: calc(100% - 20px);
    flex: 0 0 calc(100% - 20px);
  }

  .mfp-gallery a img,
  .magnific img{
    height: 190px;
  }
}

/* =========================
   FIX: Magnific popup image spacing
   (prevents thumbnail sizing from affecting popup)
========================= */

.mfp-wrap .mfp-content{
  padding: 0 !important;
}

.mfp-wrap .mfp-figure{
  padding: 0 !important;
}

.mfp-wrap .mfp-figure figure{
  margin: 0 auto !important;
  max-width: 95vw !important;
}

.mfp-wrap img.mfp-img{
  width: auto !important;
  height: auto !important;
  max-width: 92vw !important;
  max-height: 82vh !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* Also remove any padding that creates the gray frame */
.mfp-wrap .mfp-figure:after{
  box-shadow: none !important;
  background: transparent !important;
}

/* =========================
   Magnific: put X + counter OUTSIDE image frame
========================= */

/* Keep popup centered and remove fake frame/padding */
.mfp-wrap .mfp-content{
  padding: 0 !important;
}

.mfp-wrap .mfp-figure{
  position: relative !important;
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: 95vw !important;
}

.mfp-wrap .mfp-figure figure{
  margin: 0 auto !important;
}

.mfp-wrap img.mfp-img{
  display: block !important;
  margin: 0 auto !important;
  max-width: 92vw !important;
  max-height: 82vh !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* Make room ABOVE and BELOW the image for controls */
.mfp-wrap .mfp-figure{
  padding-top: 46px !important;   /* space for X button */
  padding-bottom: 34px !important;/* space for counter */
}

/* X button: top-right outside image area */
.mfp-wrap button.mfp-close{
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 46px !important;
  height: 46px !important;
  line-height: 46px !important;
  text-align: center !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0.95 !important;
  color: #fff !important;
  font-size: 34px !important;
  cursor: pointer !important;
  background: transparent !important;
}

/* Counter: bottom-right outside image area */
.mfp-wrap .mfp-counter{
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Optional: keep arrows vertically centered to the image itself */
.mfp-wrap .mfp-arrow{
  top: 50% !important;
  transform: translateY(-50%) !important;
}




/* Contact us Page  */
/* =============================
   1.  Global section wrapper
   ============================= */
.contact-section{
    background:#f9f9f9;
    padding:60px 20px;
}

/* =============================
   2.  Two-column layout (desktop)
   ============================= */
.contact-inner{
    /* grid gives us true two-column behaviour */
    display:grid;
    grid-template-columns: 1fr 1fr;   /* 2 equal columns */
    gap:40px;
    max-width:1200px;
    margin:auto;
}

/* collapse to one column on tablets / phones */
@media(max-width: 768px){
    .contact-inner{
        grid-template-columns: 1fr;   /* single column */
    }
}

/* =============================
   3.  Cards (info + form) share the same base style
   ============================= */
.contact-info,
.contact-form{
      flex:1 1 420px;        /* grow + shrink + min-width */
    display:flex;
    flex-direction:column; /* lets inner content flow normally */
    background:#fff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* ---  Info block  -------------------------------- */
.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:25px;
}
.info-card{
    background:#ffffff;
    padding:22px 25px;
    border-radius:12px;
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    display:flex;                 /* icon + text side-by-side  */
    align-items:flex-start;
    gap:14px;
    transition:transform .3s, box-shadow .3s;
}
.info-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}
.info-card i{
    font-size:22px;
    color:#077B5F;
    margin-top:4px;
}
.ic-text h4{margin:0 0 4px;color:#077B5F;font-size:16px}
.ic-text p{margin:0;color:#555;font-size:14px;line-height:1.45}

@media (min-width: 640px){              /* adjust breakpoint if you like */
    .info-grid{
        grid-template-columns:repeat(2, 1fr);   /* exactly two columns   */
    }
}


/* ---  Social icons  ------------------------------ */
.contact-social-icons{
    margin-top:30px;
    display:flex;
    justify-content:center;   /* <- centred */
    gap:20px;
}
.contact-social-icons a{
    text-decoration:none;     /* no underline */
    width:50px;
    height:50px;
    border-radius:50%;
    background:#077B5F;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:20px;
    transition:transform .3s, background .3s;
}
.contact-social-icons a:hover{
    transform:scale(1.1);
    background:#FBD118;
}

/* ---  Form  -------------------------------------- */
.contact-info,.contact-form h3{color:#077B5F;}

.contact-form form{display:flex;flex-direction:column;gap:15px}
.form-row{display:flex;margin-bottom: 10px;}
.form-row input{flex:1}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:10px 12px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:14px;
}
.contact-form textarea{min-height:110px;resize:vertical}

.contact-form button{
    background:#077B5F;
    color:#fff;
    padding:12px;
    border:none;
    border-radius:4px;
    cursor:pointer;
    font-weight:600;
}
.contact-form button:hover{background:#FBD118}

/* ---  Map wrapper  ------------------------------- */
.map-container{
    max-width:1200px;
    margin:40px auto 0;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
}


/* =============================
   GET INVOLVED
   ============================= */

.gi-section{
  background:#f9f9f9;
  padding:60px 20px;
}

/* Use grid, but no gap (margin spacing instead) */
.gi-container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  max-width:1200px;
  margin:auto;
  box-sizing:border-box;
}

.gi-left{
  margin-right:40px;
  display:flex;                 /* allow pushing meta to bottom */
  flex-direction:column;
}

.gi-right{
  display:flex;
  flex-direction:column;
}

/* Equal-height cards */
.gi-left,
.gi-card{
  background:#fff;
  padding:30px;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,.05);
}

/* Make both columns stretch to same height */
.gi-container > .gi-left,
.gi-container > .gi-right{
  align-self:stretch;
}

@media(max-width:768px){
  .gi-container{ grid-template-columns:1fr; }
  .gi-left{ margin-right:0; margin-bottom:30px; }
}

/* Titles & text (match Contact style) */
.gi-title{
  margin:0 0 10px;
  color:#077B5F;
  font-size:22px;
  font-weight:700;
}
.gi-lead{
  margin:0 0 18px;
  color:#555;
  font-size:14px;
  line-height:1.7;
}

/* chips */
.gi-highlights{ margin-top:10px; }
.gi-chip{
  display:inline-block;
  background:#ffffff;
  border:1px solid rgba(0,0,0,.08);
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  color:#077B5F;
  margin:0 10px 10px 0;
}

/* neutral note (no red box) */
.gi-note{
  margin-top:18px;
  padding:0;
  border:0;
  background:transparent;
}
.gi-note__title{
  color:#077B5F;
  font-weight:700;
  margin:0 0 6px;
  font-size:14px;
}
.gi-note__text{
  margin:0;
  color:#555;
  font-size:14px;
  line-height:1.7;
}

/* push the meta strip to the bottom */
.gi-meta{
  margin-top:auto;                     /* key: fills empty space above */
  padding-top:18px;
  border-top:1px solid rgba(0,0,0,.08);
}

.gi-meta-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.gi-meta-item:last-child{
  border-bottom:0;
}

.gi-meta-label{
  font-size:13px;
  font-weight:700;
  color:#077B5F;
}

.gi-meta-value{
  font-size:13px;
  color:#555;
  font-weight:600;
}

/* form card headings */
.gi-card__title{
  margin:0 0 6px;
  color:#077B5F;
  font-size:18px;
  font-weight:700;
}
.gi-card__subtitle{
  margin:0 0 18px;
  color:#555;
  font-size:14px;
  line-height:1.6;
}

/* form layout */
.gi-form{ display:flex; flex-direction:column; }

.gi-row{
  display:flex;
  margin-bottom:10px;
}
.gi-row .gi-field{ flex:1; }
.gi-row .gi-field:first-child{ margin-right:12px; }

@media(max-width:600px){
  .gi-row{ display:block; margin-bottom:0; }
  .gi-row .gi-field:first-child{ margin-right:0; }
}

.gi-field{ margin-bottom:15px; }

.gi-form label{
  display:block;
  margin:0 0 6px;
  color:#555;
  font-size:14px;
  font-weight:600;
}

.gi-form input,
.gi-form select,
.gi-form textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #ccc;
  border-radius:4px;
  font-size:14px;
  box-sizing:border-box;
}

.gi-form textarea{ min-height:110px; resize:vertical; }

.gi-submit{
  background:#077B5F;
  color:#fff;
  padding:12px;
  border:none;
  border-radius:4px;
  cursor:pointer;
  font-weight:600;
  width:100%;
}
.gi-submit:hover{
  background:#FBD118;
  color:#111;
}

.gi-privacy{
  margin:10px 0 0;
  color:#777;
  font-size:13px;
  line-height:1.5;
}

/* Remove the forced empty space */
.gi-left{
  display:block;          /* was flex */
}

.gi-meta{
  margin-top:18px;        /* was margin-top:auto */
}

/* Optional: stop forcing both cards to be equal height */
.gi-container > .gi-left,
.gi-container > .gi-right{
  align-self:start;       /* was stretch */
}


/* Logo animation above hero title (MP4) */
.hero-logo-anim{



  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.hero-logo-anim__video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;     /* fills badge nicely */
}

/* Responsive */
@media (max-width: 768px){
  .hero-logo-anim{
    width: 190px;
    height: 140px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px){
  .hero-logo-anim{
    width: 170px;
    height: 116px;
  }
}


.hero-logo-anim{
  width: 100%;
  max-width: 520px; /* change size if you want */
  margin: 0 auto 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-anim__gif{
  width: 100%;
  height: auto;
  display: block;
}

