body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1d3544;
}

/* Header and Top Bar */
.top-header {
  background-color: #775729;
  padding: 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 40px;
  font-weight: bold;
  
}

.logo-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.ngo-name {
  font-size: 28px;
}

/* Nav Bar */
.nav-bar {
  background-color: white;
  width: 100%;
  border-radius: 30px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.nav-container a {
  text-decoration: none;
  color: #1d3544;
  font-weight: bold;
  font-size: 16px;
}

.nav-links a {
  text-decoration: none;
  color: #1d3544;
  font-weight: bold;
}

/* Gallery Title */
h2 {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 28px;
  color: white;
  font-family: 'Fredoka', sans-serif;
  animation: fadeRight 1s ease-in-out;
}

.gallery-box {
  background-color: #775729;
  padding: 20px;
  border-radius: 10px;
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  box-sizing: border-box;
  position: relative;
}

.gallery-box .section-heading {
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.gallery-grid img.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background-color: #86868D;
  color: #222;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  align-items: center;
  font-family: 'Fredoka', sans-serif;
  border-top: 4px solid #a856ec;
}

.footer-left h3 {
  color: #FFFFFF;
  margin-bottom: 22px;
  font-weight: bold;
  font-size: 24px;
}

.footer-left p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-left i {
  margin-right: 10px;
}

.footer-right {
  text-align: center;
}

.footer-logo {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-right: 15px;
}

.footer-brand {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 26px;
}