body {
  font-family: 'Poppins', sans-serif;
}
* {
  
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #222;
}

.header {
  width: 100%;
  padding: 14px 6%;
  background: rgba(11, 93, 59, 0.95);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  background: white;
  padding: 5px;
  border-radius: 50%;
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .5px;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

nav a:hover {
  color: #f4a261;
}

nav a[href="donate.html"] {
  background: #f4a261;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
}

nav a[href="donate.html"]:hover {
  background: white;
  color: #0b5d3b;
}

.menu-btn {
  display: none;
  background: white;
  color: #0b5d3b;
  border: none;
  font-size: 24px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.hero {
  min-height: 80vh;
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url("https://i.imgur.com/QViyA62.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 6%;
  color: white;
}

.hero-content {
  max-width: 650px;
}

.hero h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn,
.btn-outline {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 5px;
  text-decoration: none;
  margin-right: 10px;
  font-weight: bold;
}

.btn {
  background: #f4a261;
  color: white;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  background: #f7f7f7;
  padding: 35px 6%;
}

.stats h2 {
  color: #0b5d3b;
  font-size: 32px;
}

.section {
  padding: 60px 6%;
  text-align: center;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  padding: 30px;
  border-radius: 10px;
  background: #f7f7f7;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.card h3 {
  color: #0b5d3b;
  margin-bottom: 12px;
}

.card p {
  line-height: 1.6;
}

.donate-banner {
  background: #0b5d3b;
  color: white;
  text-align: center;
  padding: 55px 6%;
}

.donate-banner h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.donate-banner p {
  margin-bottom: 20px;
}

.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 6%;
}

.footer p {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .header {
    padding: 12px 5%;
  }

  .logo img {
    width: 45px;
    height: 45px;
  }

  .logo span {
    font-size: 16px;
  }

  nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 5%;
    right: 5%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  nav.active {
    display: flex;
  }

  nav a {
    color: #0b5d3b;
    font-size: 16px;
  }

  nav a[href="donate.html"] {
    width: 100%;
    text-align: center;
    background: #f4a261;
    color: white;
  }

  .menu-btn {
    display: block;
  }
}
  .hero h1 {
    font-size: 36px;
  }

  .stats,
  .cards {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.contact-form button {
  border: none;
  cursor: pointer;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}
.whatsapp {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
}

.logo img {
  height: 50px; /* increase size */
}

.logo span {
  font-size: 18px;
  font-weight: bold;
}
.wa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.wa-popup.active {
  display: flex;
}

.wa-box {
  background: white;
  width: 90%;
  max-width: 360px;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  position: relative;
}

.wa-box h3 {
  color: #0b5d3b;
  margin-bottom: 8px;
}

.wa-box p {
  color: #555;
  margin-bottom: 15px;
}

.wa-box input {
  width: 100%;
  padding: 13px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
}

.wa-btn {
  width: 100%;
  padding: 13px;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
}

.wa-close {
  position: absolute;
  right: 15px;
  top: 10px;
  background: none;
  border: none;
  font-size: 28px;
}
.gallery {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}
.about-hero {
  min-height: 65vh;
  background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
              url("https://i.imgur.com/EGfmlhP.jpeg") center/cover no-repeat;
}

.section-text {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-box {
  background: #f7fdf9;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  border-left: 5px solid #0b5d3b;
}

.info-box h2 {
  color: #0b5d3b;
  margin-bottom: 12px;
}

.info-box p {
  color: #555;
  line-height: 1.7;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.gallery-section {
  background: #f8fbf9;
}

.section-tag {
  display: inline-block;
  background: #e6f4ec;
  color: #0b5d3b;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.gallery {
  max-width: 1100px;
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
  cursor: pointer;
  transition: .3s ease;
}

.gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.story-card {
  max-width: 1000px;
  margin: auto;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.story-content {
  padding: 30px;
}

.story-content h3 {
  color: #0b5d3b;
  margin-bottom: 12px;
  font-size: 26px;
}

.story-content p {
  color: #555;
  line-height: 1.8;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery img {
    height: 140px;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-card img {
    min-height: 240px;
  }
}
@media (max-width: 768px) {
  .gallery img {
    height: 140px;
  }
}