
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
       background-color: #f7f9fa;
      color: #333;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1100px;
      margin: auto;
      padding: 20px 0;
    }



     header {
  background:
    radial-gradient(1200px 300px at 20% -50%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(90deg, rgb(7, 180, 180) 0%, rgb(36, 74, 74));
  color: #fff;
  padding: 16px 0;
  position: relative;       /* stays visible on scroll */
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

    header h1 {
      font-size: 2rem;
      margin-left: 10px;
    }

    .menu-toggle {
      display: block;
      font-size: 28px;
      color: white;
      background: none;
      border: none;
      position: absolute;
      top: 25px;
      right: 20px;
      z-index: 1001;
      cursor: pointer;
    }

   .close-menu {
  font-size: 24px;
  position: absolute;
  top: 1px;
  right: 20px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  color: white;
  background-color: gold; /* folder/nav background */
  border-radius: 50%;
  font-weight: bold;
  z-index: 1002;
  box-shadow: 0 0 6px rgba(122, 42, 42, 0.3);
}


    nav ul,
    nav ul.nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    nav ul.nav-list {
      display: none;
      flex-direction: column;
      background-color: #0c2340;
      padding: 30px 20px;
      position: absolute;
      top: 0;
      right: 0;
      width: 300px;
      height: 100vh;
      z-index: 1000;
      gap: 20px;
    }

    nav ul.nav-list.show {
      display: flex;
    }

    nav ul.nav-list li a {
      color: white;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
    }

    nav ul.nav-list li a:hover {
      color: #ffe600;
    }

    .nav-contact {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
    }

    .nav-contact p {
      color: white;
      font-size: 0.9rem;
      margin: 5px 0;
    }

    .nav-social i {
      font-size: 20px;
      margin-right: 10px;
      color: white;
    }

    .nav-social i:hover {
      color: #ffe600;
    }

   @media (min-width: 769px) {
  .menu-toggle {
    display: block;
  }

  nav ul.nav-inline {
    display: flex;
    gap: 20px;
  }

 nav ul.nav-inline li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

nav ul.nav-inline li a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

  nav ul.nav-inline li a:hover {
    color: #ffe600;
  }

  nav ul.nav-list {
    display: none;
  }
}

/* 👇 MOBILE STYLE */
@media (max-width: 768px) {
  nav ul.nav-inline {
    display: none;
  }

  .hero-overlay h2 {
    font-size: 1.6rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .hero-overlay {
    padding: 20px 10px;
    flex-direction: column;
  }
}


    .hero {
      background: url('https://upload.wikimedia.org/wikipedia/commons/7/7f/Ethiopia_and_USA_flag.jpg') no-repeat center center/cover;
      color: white;
      padding: 100px 20px;
      text-align: center;
      background-blend-mode: overlay;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 1.2rem;
    }

    .section {
      padding: 60px 20px;
     background: linear-gradient(to right, #dbe0e0 60%, #e8f7ff 100%);
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }

    .section h3 {
      font-size: 2rem;
      color: #d2691e;
      margin-bottom: 15px;
    }

    .section p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    .button {
      display: inline-block;
      background: #89632a ;
      color: #fff;
      padding: 10px 25px;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s;
    }

#involve img {
  width: 80%;
  height: auto;
  display: block;
  margin: 1rem auto; /* centers the image horizontally */
  border-radius: 8px;
  max-width: 100%;
}
#about figure {
  margin: 2rem auto;
  text-align: center;
  max-width: 600px;
}

#about img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

#about figcaption {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  color: #555;
}

    .button:hover {
      background: #005e26;
    }

    footer {
      background: #0c2340;
      color: white;
      text-align: center;
      padding: 20px 10px;
      font-size: 0.9rem;
    }

    footer a {
      color: #ffe600;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    section.section {
      display: none;
    }

    section.section.active {
      display: block;
    }


    .hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25); /* Light overlay */
  display: flex;
  align-items: flex-start; /* 🔼 Push content to top */
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 20px; /* Reduce space from top */
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}

.hero-overlay .container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}



.hero-overlay h2 {
  font-size: 2.2rem;
  margin: 0 0 10px;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin: 0;
}

/* 👇 Mobile adjustments */
@media (max-width: 768px) {
  .hero-overlay {
    padding-top: 20px;
  }

  .hero-overlay h2 {
    font-size: 1.4rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }
}



 .hero-toolbar {
      position: absolute;
      top: 15px;
      left: 20px;
      right: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
    }

    .language-selector select {
      background: white;
      color: #333;
      border: none;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .donate-button {
      background: #ffe600;
      color: #0c2340;
      border: none;
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
      text-decoration: none;
    }

    .donate-button:hover {
      background: #ffcf00;
    }

 


    /* ABOUT SECTION – Enhanced Structure with Color #d2691e */
#about .section-subheading {
  margin-top: 2rem;
  font-size: 1.5rem;
  border-bottom: 2px solid #d2691e;
  padding-bottom: 0.5rem;
  color: #d2691e;
}

#about .pillar {
  margin-top: 1.5rem;
}

#about .pillars-list {
  margin-top: 2rem;
  padding-left: 1.5rem;
  list-style-type: disc;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

#about .pillars-list figure {
  margin: 1rem 0;
  text-align: center;
}

#about .pillars-list img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

#about .cta-buttons a.button {
  display: inline-block;
  margin-right: 10px;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #d2691e;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s ease;
}

#about .cta-buttons a.button:hover {
  background-color: #b85718;
}

.quote {
      font-style: italic;
      background-color: #eef6f1;
      padding: 1rem;
      border-left: 4px solid #b85718;
    }



    .quote {
  font-style: italic;
  background-color: #eef6f1;
  padding: 1rem 1.2rem;
  border-left: 4px solid #d2691e;
  margin-top: 1rem;
  border-radius: 6px;
  font-size: 1.05rem;
  color: #333;
}


    /* Impact counters */
.impact-metrics {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.impact-metrics li {
  background: #fff;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: grid;
  gap: 8px;
  align-content: start;
}

.impact-metrics .count {
  font-size: clamp(1.8rem, 4.5vw, 2.3rem);
  font-weight: 800;
  color: #d2691e;          /* brand orange */
  line-height: 1;
  letter-spacing: 0.5px;
}

.impact-metrics .label {
  font-size: 1rem;
  color: #0c2340;          /* brand navy */
  font-weight: 600;
}

/* subtle accent line */
.impact-metrics li::after {
  content: "";
  height: 3px;
  width: 64px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d2691e, #0c2340);
  display: block;
  margin-top: 6px;
  opacity: 0.85;
}



/* Responsive gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.gallery figure {
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gallery img {
  width: 100%;
  height: 210px;          /* consistent card height */
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}

.gallery a:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.gallery figcaption {
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #0c2340;         /* brand navy */
  font-weight: 600;
  background: linear-gradient(90deg, #f8fafc, #eef3ff);
}
