@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
    transition: all 0.4s ease;;
}
/* ===== Colours ===== */

body {
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Page Header */
.page-header {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--profile-text1);
    text-align: center;
}
.About-text-head{
  font-family: 'Oswald', sans-serif;
  color: var(--profile-text1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s ease;;
}
/* ===== Colours ===== */
:root{
    --body-color: #E4E9F7;
    --nav-color: rgb(3, 75, 80);
    --side-nav: rgb(2, 12, 58);
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --text-color1: #000000;
    --profile-color: #FFF;
  --profile-text: #000000;
  --profile-text1:#094936;
}
body{
    background-color: var(--body-color);
}
body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
    --text-color1: #FFF;
    --profile-color:#242526;
  --profile-text: #FFF;
  --profile-text1:#ffffff;
}

.logo-img {
	width: 50px;
	height: 50px;
	/* margin-right: 10px; */
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    text-align: left;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 1rem;
}
.g-head{
color: var(--profile-text1);
text-align: center;
padding: 20px 0;
color: rgb(2, 121, 75);
font-family: 'Oswald', sans-serif;
margin-top: 1rem;
}

  nav .nav-bar .logo.navLogo {
    display: flex;
    align-items: center;
}

nav .nav-bar .logo.navLogo img {
    /* width: 60px;
    height: 60px; */
    margin-right: 10px;
	border-radius: 15px;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 100000;
}
body.dark nav{
    border: 1px solid #393838;
}
nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    background-color: var(--nav-color);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 1rem;
}
nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 30px;
    padding: 15px;
    cursor: pointer;
    display: none;
}
nav .nav-bar .logo a{
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    text-align: left;
}
.menu .logo-toggle{
    display: none;
}
.nav-bar .nav-links{
    display: flex;
    align-items: center;
}
.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}
.nav-links li a{
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
}
.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}
.nav-links li:hover a::before{
    opacity: 1;
}
.nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}
.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}
.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}
.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}
.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}
/* .searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}
.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}
.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}
.searchBox{
    position: relative;
} */
/* .searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
} */
/* .searchToggle.active ~ .search-field{
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
} */
/* .search-field::before{
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--nav-color);
    transform: rotate(-45deg);
    z-index: -1;
} */
/* .search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
} */
body.dark .search-field input{
    color: var(--text-color);
}
/* .search-field i{
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
} */
body.dark .search-field i{
    color: var(--text-color);
}
@media (max-width: 790px) {
    nav .nav-bar .sidebarOpen{
        display: block;
    }
    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        right: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
    }
    nav.active .menu{
        right: -0%;
    }
    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }
    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo-toggle .siderbarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }
    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 30px;
    }
    .nav-links li a{
        display: block;
        margin-top: 20px;
    }
}

/* Search Box container styles */
.search-box-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--nav-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 5rem;
  position: relative; /* Ensure dropdown is relative to the search box */
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 4px solid var(--search-bar);
  border-radius: 5px 0 0 5px;
  background-color: var(--search-bar);
  outline: none;
  color: var(--text-color1);
}

.searcbox-outline {
  border: 2px solid var(--searchbox-outline);
  display: flex;
  border-radius: 10px;
  width: 100%;
}

.search-btn {
  padding: 10px 15px;
  font-size: 18px;
  background-color: var(--nav-color);
  color: var(--text-color);
  border: 2px solid var(--search-bar);
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: #f8d209;
  color: var(--nav-color);
}

.search-box-container .bx-search {
  font-size: 20px;
}

@media (max-width: 768px) {
  .search-input {
      width: 100%;
  }
}

/* Style for the autocomplete suggestions dropdown */
.suggestions-box {
  position: absolute;
  top: calc(100% + 0px); /* Place the dropdown just below the search box */
  left: 0;
  right: 0;
  background-color: var(--suggestions);
  border: 1px solid var(--nav-color);
  z-index: 1000;
  max-height: 200px; /* Limit height for better display */
  overflow-y: auto;  /* Allow scrolling if there are too many suggestions */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  color: var(--text-color1);
}

.suggestion {
  padding: 10px;
  cursor: pointer;
}

.suggestion:hover {
  background-color: #f0f0f0;
}
/* Highlight found word */
.highlight {
  background-color: yellow;
  font-weight: bold;
}

/* ===== Colours ===== */
:root{
  --body-color: #E4E9F7;
  --nav-color: rgb(3, 75, 80);
  --side-nav: rgb(2, 12, 58);
  --text-color: #FFF;
  --search-bar: #F2F2F2;
  --search-text: #010718;
  --text-color1: #000000;
  --profile-color: #FFF;
  --profile-text: #000000;
  --suggestions:#FFF;

}
body{
  background-color: var(--body-color);
}
body.dark{
  --body-color: #18191A;
  --nav-color: #242526;
  --side-nav: #242526;
  --text-color: #CCC;
  --search-bar: #242526;
  --text-color1: #FFF;
  --profile-color:#242526;
  --profile-text: #FFF;
  --suggestions: #242526;
}


.About-text-head {
    text-align: center;
    padding: 20px 0;
    color: var(--profile-text1);
    font-family: 'Oswald', sans-serif;
    margin-top: 1rem;
}



        h1, h2, h3 {
            font-family: 'Oswald', sans-serif;
            color: rgb(9, 73, 54);
            margin: 0;
        }
        section {
            padding: 20px;
            max-width: 800px;
            margin: auto;
        }
        .values, .principles, .beliefs, .programs, .management {
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            header {
                padding: 10px;
                margin-top: 2rem;
            }
            section {
                padding: 10px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 1.5em;
            }
            h2 {
                font-size: 1.2em;
            }
            h3 {
                font-size: 1em;
            }
        }

        /* Styling for the history section */
.history-section {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--profile-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.history-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2em;
  color: rgb(3, 75, 80);
  margin-bottom: 10px;
  text-align: center;
}

.history-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
  color: #094936;
  margin-top: 20px;
}

.history-paragraph {
  font-size: 1.1em;
  color: var(--profile-text);
  margin-bottom: 15px;
  font-family: 'Lexend', sans-serif;
}

.history-section ul {
  list-style-type: none;
  padding: 0;
}

.history-section ul li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
  color: var(--profile-text1);
}

.history-section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--profile-text1);
  font-size: 1.5em;
  line-height: 1.2;
}

/* Responsive design */
@media (max-width: 768px) {
  .history-section {
    padding: 15px;
  }

  .history-section h2 {
    font-size: 1.8em;
  }

  .history-section h3 {
    font-size: 1.3em;
  }

  .history-paragraph, .history-section ul li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .history-section {
    padding: 10px;
  }

  .history-section h2 {
    font-size: 1.5em;
  }

  .history-section h3 {
    font-size: 1.2em;
  }

  .history-paragraph, .history-section ul li {
    font-size: 0.9em;
  }
}


        .achievements-section {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--profile-color);
  padding: 20px;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.Arch-h2 {
  text-align: center;
  color: var(--profile-text);
  font-family: "Oswald", sans-serif;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-family: "lexend", sans-serif;
  color: var(--profile-text);
}
th {
  background-color: #cbc8c8;
}
tr:hover {
  background-color: #f9f9f9;
}
p{
    color: var(--text-color1);
}


        .activities-section {
            max-width: 800px;
            margin: 0 auto;
            background-color:var(--profile-color);
            padding: 20px;
            border-radius: 8px;
        }
        h2 {
            text-align: center;
            color:rgb(3, 75, 80);
            font-family: "Oswald", sans-serif;
        }
        h3 {
            color:rgb(3, 75, 80);
            margin-top: 20px;
            border-bottom: 2px solid #f2f2f2;
            font-family: "Oswald", sans-serif;
            background-color: #cbc8c8;
            padding: 5px;
          }
          .activities-section li{
            color: var(--profile-text);
          }
        ul {
            list-style-type: disc;
            padding-left: 20px;
            font-family: "lexend", sans-serif;
            color: var(--profile-text);
        }
        .issues-list, .activities-list {
            list-style-type: none;
            padding-left: 0;
        }
        .issues-list li, .activities-list li {
            background-color: var(--profile-color);
            padding: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
            font-family: "lexend", sans-serif;
            color: var(--profile-text);
        }

.arrows {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: white;
  transition: 0.5s;
  font-weight: bold;
  font-size: large;
}

.arrows button:hover {
  background-color: green;
  color: white;
}

.join-section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #d6d4d4;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  text-align: center;
}
.about-head-span {
  text-align: center;
  font-family: "Oswald", sans-serif;
  color: rgb(3, 75, 80);
  text-align: center;
}

.commit-h2 {
  color: rgb(3, 75, 80);
  font-family: "Oswald", sans-serif;
}

.join-p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "lexend", sans-serif;
  color: #000000;
}
ul{
    color: var(--text-color1);

}
.activities-section ul{
    color: #000000;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(3, 75, 80);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
  font-family: "lexend", sans-serif;
}

.cta-button:hover {
  background-color: #45a049;
}

.about-sub-head {
  color: rgb(3, 75, 80);
  padding: 1rem;
}

.footer {
    background-color:var(--nav-color); /* Footer background color */
    color: white; /* Text color */
    padding: 20px; /* Padding for the footer */
    text-align: center; /* Center align text */
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    width: 100%;
}
.web-footer{
    color: white; /* Text color */

}

.footer-ul{
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: flex; /* Flexbox for horizontal layout */
    justify-content: center; /* Center the nav items */
    gap: 45px; /* Space between nav items */
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgb(255, 255, 255); /* Link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
}

.footer-nav a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer-logo {
    margin-top: 20px; /* Space above the logo */
}

.footer-logo1 {
    width: 100px; /* Logo width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Rounded corners */
}

.footer-copy {
    margin-top: 10px; /* Space above copyright text */
    color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-ul {
        flex-direction: row; /* Stack nav items vertically on small screens */
        align-items: center; /* Center align items */
    }
}


.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    max-width: 350px;
    margin: 20px auto;
    border-radius: 5rem;
  }
  
  .social-icon {
    color:  white;
    text-decoration: none;
    font-size: 24px;
    margin: 0 10px;
  }
  
  .social-icon:hover {
    color: rgb(9, 73, 54);
  }
  
