body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffd166;
  color: #333;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #005f8e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 1px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
}

.nav-links a {
  color : white;
  margin: 20px;
  margin-left: 50px;
  text-decoration: none;
  font-weight: bold;
}

/* Add padding to body so content doesn't hide behind navbar */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #ffd166;
  color: #333;
  padding-top: 70px; /* height of navbar + spacing */
}


.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.overlay {
  height: 94%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.overlay h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  
}

.overlay p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('photo_2025-10-26_16-19-55.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust darkness here */
  z-index: 1;
}

/* Optional: Add content styling */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding-top: 40vh;
}

/* Mobile optimization */
@media (max-width: 1024px) {
  .hero {
    height: 100vh;
    background-position: center top;
  }
}

main {
  padding: 40px 20px;
}

section {
  margin-bottom: 40px;
}
h2 {
  color: #0077b6;
  margin-bottom: 10px;
}

.about {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.menu-toggle
.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.focus {
  text-align: center;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.focus-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.focus-card small {
  display: block;
  margin-top: 10px;
  color: #555;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.stats div {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 150px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.cta.contact {
  background: none;
  color: inherit;
  text-align: center;
  padding: 40px 20px;
}

footer {
  background:#ffd166;
  color: white;
  text-align: center;
  padding: 10px;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
}

.intro {
  text-align: center;
  padding: 40px 20px;
  background: none;
  color: inherit;
}


.leadership {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}
.leader-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 15px;
}


.leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.leader-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: scale(1.02);
}

.join-us {
  text-align: center;
  padding: 40px 20px;
  background: white;
}

.join-buttons {
  margin-top: 20px;
}

.btn.green {
  background: #38b000;
  color: #ffd166;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-right: 10px;
}

.btn.outline {
  border: 2px solid #38b000;
  color: #38b000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

footer {
  background: #ffd166;
  color: white;
  text-align: center;
  padding: 10px;
}

.intro {
  text-align: center;
  padding: 40px 20px;
}
.intro {
  text-align: center;
  padding: 40px 20px;
}
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      padding: 0 10px;
    }

    .gallery-item {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover {
      transform: scale(1.02);
    }

    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .gallery-item p {
      padding: 10px;
      font-size: 0.95em;
      color: #444;
    }

    /* Lightbox styles */
    #lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0,0,0,0.85);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    #lightbox img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255,255,255,0.2);
    }
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.membership-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.membership-card h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
}
.membership-card p {
  font-size: 0.95em;
  margin-bottom: 15px;
}
.btn.green {
  background: #38b000;
  color: #ffd166;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}
.impact{
  text-align: center;
}
.partners-section{
  text-align: center;
}
.partners-card{
  size: small;
}
.impact-note {
  text-align: center;
  padding: 40px 20px;
  font-size: 1em;
  max-width: 800px;
  margin: 0 auto;
}

footer {
  background: style="color: #ffd166;";
  color: black;
  text-align: center;
  padding: 10px;
}

.donation-intro {
  text-align: center;
  padding: 60px 20px;
  background: whitesmoke;
}

.donation-intro h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.donation-intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.btn.green {
  background: #38b000;
  color: #ffd166;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0px 20px;

}

.stat-card {
  background: white;
  padding: 80px;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-card h2 {
  font-size: 2em;
  color: #0077b6;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1em;
  color: #333;
}
.core-values {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.value-box {
  background-color: #fff;
  border: 2px solid #ffd166;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.value-box h4 {
  color: #0077b6;
  margin-bottom: 10px;
}

.summary {
  margin-bottom: 10px;
}

.details {
  display: none;
  margin-top: 10px;
}

.value-box button {
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.value-box button:hover {
  background-color: #005f8e;
}

.donation-note {
  text-align: center;
  padding: 40px 20px;
  font-size: 1em;
  max-width: 800px;
  margin: 0 auto;
}
.news-section {
  text-align: center;
  padding: 60px 20px;
}

.news-section h1 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #0077b6;
}

.news-empty {
  background: whitesmoke;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-empty p {
  font-size: 1.1em;
  color: #555;
}
.contact-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: left;
}

.contact-info h3 {
  margin-bottom: 5px;
  color: #0077b6;
}

.contact-info p {
  margin-bottom: 20px;
  font-size: 1em;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ffd166;
  font-size: 1em;
}

.contact-form .btn.green {
  background: #38b000;
  color: #ffd166;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}
.contact-form .btn.green:hover {
  background: #2e8c00;
}
/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  color: #0077b6;
  font-weight: bold;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
}
.strategic-partners {
  padding: 40px 20px;
  background-color: #ffffff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.partner-box {
  text-align: center;
}

.partner-box img {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.partner-box p {
  font-weight: bold;
  color: #333;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: #0077b6;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #e6f4ea;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

.gallery-section h1 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #0077b6;
}

.gallery-section p {
  font-size: 1.1em;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8em;
  color: #ffd166;
  cursor: pointer;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
    margin-left: 0.1px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .dropbtn {
    width: 100%;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ccc;
  }
}

.about-toggle {
  color: #005f73;
  font-weight: bold;
  border: none;
  text-align: center;
  font-size: 1em;
  
}

.about-menu {
  display: none;
  background-color: #005f73;
  border-top: 1px solid #ccc;
}

.about-menu a {
  display: block;
  color: #ffd166;
  text-decoration: none;
}

.about-menu a:hover {
  background-color: #ffd166;

}
.white-box {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 5px;
  flex: 1;
  margin: 10px;
}

/* Vision & Mission side by side */
.vision-mission-row,
.program-impact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.core-values-grid {
  padding: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex-wrap: wrap;
}

.grid-box {
  background-color: #ffffff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.grid-box h4 {
  color: #0077b6;
  margin-bottom: 10px;
}

.summary {
  font-weight: none;
  margin-bottom: 10px;
}

.details {
  margin-top: 10px;
}

.grid-box button {
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

.grid-box button:hover {
  background-color: #005f8e;
}

/* Responsive: stack on smaller screens */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: black;
  color: white;
  padding: 30px 20px;
  font-size: 0.95em;
}

.site-footer h4 {
  margin-bottom: 10px;
  font-size: 1.5em;
  margin-right: 30%;
}
.join-us
.site-footer h7 {
  margin-bottom: 30px;
  font-size: 1.5em;
  margin-left: 30%;
  text-align: right;
  margin-right: 30px;
  margin-bottom: 50px;
}
.footer-left,
.footer-right {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
  font-size: large;
}
.footer-left{
  text-align: left;
}

.footer-left ul {
  list-style: none;
  padding: 0;
}

.footer-left ul li {
  margin-bottom: 8px;
  margin-right: 50%;
}

.footer-left ul li a {
  color: white;
  text-decoration: none;
}

.footer-left ul li a:hover {
  text-decoration: underline;
}

.footer-right{
  text-align: right;
}
.footer-right p {
  margin: 7px 0;
}

.footer-center {
  flex: 0 0 120px;
  text-align: center;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 100px;
}