 .body {
   overflow-y: scroll; 
   font-family: sans-serif;
   margin: 0;
   padding: 0;
   box-sizing: content-box;
} 

body, html {
    padding: 0;
    margin: 0;
    font-family: sans-serif;
    box-sizing: content-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2opx;
    background-color: #007bff;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.body-container {
    overflow-y: auto;
    min-height: 100vh;
}

#learnMoreBtn {
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#learnMoreBtn:hover {
    background-color: #0056b3;
}


.html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
}

  .hide-on-mobile {
    display: none; 
  }

  .navbar {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }
}

.item {
  flex-basis: 100%; 
}

@media (min-width: 768px) {
  .item {
    flex-basis: 50%; 
  }
}

.grid-container {
  display: grid; 
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.statistics-body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: blue;
  color: white;
}

.statistics-container {
  text-align: center;
  padding: 80px;
  max-width: 700px;
  margin:50px auto;
  background-color: yellow;
  border: 1px solid#ddd;
  border-radius: 8px;
  box-shadow: 0 4px rgba(0, 0, 0, 1.0);
}

.statistic {
  margin-bottom: 20px;
}

.statistic h1 {
  font-size: 2.5rem;
  color: blue;
}

.statistic h2 {
  font-size: 2.5rem;
  color: black;
}

.statistic h3 {
font-size: 2.5rem;
color: green;
}

.navbar ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar ul li a:hover {
    color: #ff9900;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1 rem;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu {
    position: fixed;
    top: 10px;
    left: 10px;
}

.menu-button {
    margin: 5px;
    padding: 10px;
}

.menu-container {
    display: flex;
    gap: 5px;
}
.contact-us-body {
  font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
}

    h1, h2 {
      text-align: center;
      color: #004080;
    }

    p {
      line-height: 1.6;
      text-align: center;
      color: #555;
    }

    a {
      text-decoration: none;
      color: #004080;
    }

    .contact-info {
      text-align: center;
      padding: 20px;
      background-color: #f4f4f4;
    }

    .contact-info p {
      margin: 10px 0;
    }

    .contact-form {
      max-width: 600px;
      margin: 20px auto;
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 5px;
    }

    .contact-form input[type="submit"] {
      background-color: #004080;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-form input[type="submit"]:hover {
      background-color: #003060;
    }

    .social-media {
      text-align: center;
      margin: 20px 0;
    }

    .social-media a {
      margin: 0 10px;
    }

    .social-media img {
      width: 30px;
      height: 30px;
      transition: transform 0.3s ease;
    }

    .social-media img:hover {
      transform: scale(1.2);
    }

    .map {
      text-align: center;
      margin: 20px 0;
    }

    .map iframe {
      width: 90%;
      height: 300px;
      border: none;
    }

 .support-body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
 }

 h1, h2 {
      color: #004080;
      text-align: center;
    }

    p {
      text-align: center;
      line-height: 1.6;
      color: #555;
    }

    .donation-options {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .donation-option {
      background: #f4f4f4;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      text-align: center;
      width: 300px;
    }

    .donation-option img {
      width: 80px;
      margin-bottom: 10px;
    }

    .donation-option p {
      margin: 10px 0;
    }

    .donation-form {
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .donation-form input,
    .donation-form textarea,
    .donation-form select {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border: 1px solid #ddd;
      border-radius: 5px;
    }

    .donation-form input[type="submit"] {
      background-color: #004080;
      color: #fff;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .donation-form input[type="submit"]:hover {
      background-color: #003060;
    }

    .get-involved {
      text-align: center;
      margin: 20px 0;
    }

    .btn {
      padding: 10px 20px;
      background-color: #ff9900;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
    }

    .btn:hover {
      background-color: #cc7a00;
    }

    .about-us-body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

        h1, h2, h3, h4 {
      color: #004080;
    }

    p {
      line-height: 1.6;
      color: #555;
    }

    a {
      text-decoration: none;
      color: #fff;
    } 

    .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #ff9900;
      border-radius: 5px;
      transition: 0.3s ease;
    }

    .btn:hover {
      background-color: #cc7a00;
    }


    header {
      background-color: #004080;
      color: #fff;
      text-align: center;
      padding: 20px 0;
    }


    .mission-vision {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 40px 20px;
      background-color: #f4f4f4;
    }

    .mission-vision div {
      flex: 1;
      padding: 20px;
      margin: 10px;
      background: #fff;
      border-radius: 5px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }


    .history {
      padding: 40px 20px;
      text-align: center;
    }


    .team-members {
      padding: 40px 20px;
      background-color: ghostwhite;    }

    .team-members .team-member:hover {
      transform: translateY(-10px);
    }

    .team-members img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .get-involved {
      text-align: center;
      margin-top: 40px;
    }

    .careers-body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9
     }
             header {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            text-align: center;
        }
        main {
            padding: 20px;
        }
        .job-listings {
            margin-bottom: 30px;
        }
        .job-listing {
            background: #fff;
            border: 1px solid #ddd;
            margin: 10px 0;
            padding: 15px;
            border-radius: 5px;
        }
        h2 {
            color: #333;
        }
        form {
            background: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 5px;
        }
        form div {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
        }
        input, select, textarea, button {
            width: 100%;
            padding: 10px;
            margin: 5px 0 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }
        button:hover {
            background-color: #45a049;
        }

         .impact-body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
        }
        header {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            text-align: center;
        }
        nav {
            background-color: #333;
            color: white;
            overflow: hidden;
        }
        nav a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
        }
        nav a:hover {
            background-color: #575757;
        }
        main {
            padding: 20px;
        }
        section {
            margin-bottom: 30px;
        }
        .child-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .child-card {
            background: #fff;
            border: 1px solid #ddd;
            padding: 15px;
            border-radius: 5px;
            flex: 1 1 calc(30% - 10px);
            box-sizing: border-box;
            text-align: center;
        }
        .child-card img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }
        .child-card h3 {
            color: #333;
        }
        form {
            background: #fff;
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 5px;
        }
        form div {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
        }
        input, select, textarea, button {
            width: 100%;
            padding: 10px;
            margin: 5px 0 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        button {
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }
        button:hover {
            background-color: #45a049;
        }

        img {
          width: 56%;
          height: 56%;
          max-width: 1000px;
          border-radius: 800px;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 1.0);
          margin: 20px auto;
          display: block;
          object-fit: cover;
        }

.programs-image{
    width: 26%; 
    height: 45px;
    object-fit: cover; 
    border-radius: 5px; 
    margin-bottom: 15px;
}

.navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  background-color: #003366;
  color: white;
  padding: 0.1rem 0.1rem;
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  text-decoration: none;
  cursor: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul lia:hover {
  color: #ff9900;
}

.follow-us {
    text-align: center;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.follow-us h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.follow-us .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.follow-us .social-icons a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #555;
    transition: background-color 0.3s, transform 0.3s;
}

.follow-us .social-icons a:hover {
    background-color: #007bff;
    color: white;
    transform: scale(1.1);
}

.follow-us .social-icons a i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .follow-us .social-icons {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.logo img {
    height: 150px;
    width: 140px;
  margin-right: 20px;
 }

 @media (max-width: 768px) {
    .navbar {
        .flex-direction: column;
    }

    .stat {
        font-size: 90%;
    }

    button {
        width: 100%;
        margin-top: 0.5rem;
    }
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003366;
  color: white;
  padding: 0.5rem 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-links.show {
    display: flex;
  }



.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

    .btn.donate-btn {
      padding: 10px 20px;
      background-color: #ff9900;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      margin-left: 15px;
    }


.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
}
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
}


    .nav-links-mobile {
      display: none;
      flex-direction: column;
      background-color: #004080;
      position: absolute;
      top: 60px;
      right: 20px;
      padding: 10px;
      border-radius: 5px;
    }
    
    .nav-links-mobile a {
      color: #fff;
      padding: 10px 0;
      text-decoration: none;
    }
@media screen and (max-width: 768px) {
      .nav-links {
        display: none;
      }

h1 {
  background-color: white;
  color: blue;
}

     h1, h2, h3, h4 {
      color: #004080;
    }

    p {
      line-height: 1.6;
      color: #555;
    }

    a {
      text-decoration: none;
      color: #fff;
    } 









