* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: #fcfdfb;
  color: #333;
}

.main-header {
  position: relative;
  overflow: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: #000;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

 .logo img{
    height: 70px;
    width: auto;
  }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.navbar ul {
  display: flex;
  align-items: center;
  justify-content: center; /* or space-between if needed */
}


.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #ffd200;
  transition: width 0.3s ease;
  margin-top: 4px;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links .active{
    color: #ffd200;
    font-weight: bold;
    border-bottom: 2px solid #ffd200;
    transition: all 0.3s ease;
}

/* FORCE DROPDOWN UL TO IGNORE FLEX */
.nav-links .dropdown-menu {
  display: block !important;
  flex-direction: column !important;
}

/* FORCE LI STACKING */
.nav-links .dropdown-menu li {
  display: block !important;
  width: 100%;
}

/* SAFETY RESET */
.nav-links .dropdown-menu {
  align-items: flex-start;
}


.donate-btn {
  background-color: #06592b; /* Green-teal style */
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  margin-left: 20px;
}

.donate-btn:hover {
  background-color: #ffd200;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: " ▾";
  font-size: 0.7rem;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  min-width: 220px;
  list-style: none;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu li {
  display: block;
  width: 100%;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  width: 100%;
}

.dropdown-menu li a:hover {
  background: #06592b;
  color: #ffd200;
}

/* SHOW DROPDOWN ON HOVER (DESKTOP) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* HERO */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url("../images/about-hero.jpg") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

/* INTRO */
.about-intro {
  padding: 80px 20px;
  background: #f9f9f9;
}

.about-intro h2 {
  color: #06592b;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro p {
  max-width: 800px;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* BUTTONS */
.about-links {
  margin-top: 30px;
}

.about-link-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #06592b;
  color: #fff;
  border-radius: 30px;
  margin-right: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-link-btn:hover {
  background: #ffd200;
  color: #000;
}

.about-link-btn.outline {
  background: transparent;
  border: 2px solid #06592b;
  color: #06592b;
}

/* CTA */
.about-cta {
  padding: 70px 20px;
  background: #06592b;
  color: #fff;
  text-align: center;
}

.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}








/*footer*/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.ngo-footer {
  background: black;
  color: #eee;
  padding: 60px 20px 20px;
  animation: fadeInUp 1.2s ease-out;
}
.footer-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}
.footer-block h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #ffd200;
}
.footer-block p, .footer-block li, .footer-block a {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  text-decoration: none;
}
.footer-block a:hover {
  color: #06592b;
}
.footer-block.links ul {
  list-style: none;
  padding: 0;
}
.footer-block.links li {
  margin-bottom: 8px;
}
.socials {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
.socials a {
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.socials a:hover {
  color: #ffd200;
  transform: scale(1.2);
}
.newsletter {
  display: flex;
  gap: 10px;
}
.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border: none;
  border-radius: 20px;
  outline: none;
}
.newsletter button {
  padding: 10px 20px;
  background: #06592b;
  border: none;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter button:hover {
  background: #ffd200;
}
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #666;
}

/* Scroll animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .newsletter {
    flex-direction: column;
  }
  .newsletter input, .newsletter button {
    width: 100%;
    margin-bottom: 10px;
  }
}