/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ===== Google Font Import - Poppins ===== */
@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 ===== */
:root{
    --body-color: #E4E9F7;
    --nav-color: rgb(3, 75, 80);
    --side-nav: #061779;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --text-color1: #000000;
    --blog-section:white;
    --blog-head:rgb(3, 75, 80);
}
body{
    height: 100vh;
    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;
    --blog-section:#18191A;
    --blog-head:rgb(1, 148, 21);
}
/* ===== 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;
}

.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: 10000;
}
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: 22px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    text-align: left;
    font-family: 'Oswald', sans-serif;
}
.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 */
}

.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: 50%;
}

.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;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  margin-top: 3rem;
}

.close {
  position: absolute;
  top: 77px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .lightbox-content {
      max-width: 100%;
      max-height: 100%;
  }
}


: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;
  --cheers-color:rgb(250, 222, 227);
  --cheers-text: #000000;
}
body{
  height: 100vh;
  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;
  --cheers-color:#18191A;
  --cheers-text: #FFF;
}
.logo-container {
  display: flex;
  align-items: center;
  text-align: left;
}

.logo-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 1rem;
}

/* Highlight found word */
.highlight {
  background-color: yellow;
  font-weight: bold;
}



.hero-section {
    position: relative;
    height: 100vh;
    background-image: url('../images/FLOGO.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 128, 85, 0.7); /* Green overlay */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  .hero-buttons{
    padding: 1rem;
    gap: 3rem;
    display: flex;
    justify-content: center;
  }
  .donate-btn {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 10px 20px;
    border-radius: 5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .donate-btn:hover {
    background-color: white;
    color: #28a745;
  }
  
  /* Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    text-align: center;
    flex-wrap: wrap;
  }
  
  .stat-box {
    flex: 1;
    margin: 20px;
  }
  
  .stat-number {
    font-size: 3rem;
    color:  var(--blog-head); /* Green for the numbers */
    margin-bottom: 10px;
    font-weight: 700;
    font-family: 'Lexend', sans-serif;
  }
  
  .stat-caption {
    font-size: 1.2rem;
    color:var(--text-color1); /* Black for the captions */
  }
  
  /* YouTube Video Section */
/* Basic styling for the video section */
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--body-color);
  padding: 40px;
  position: relative;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

/* Styling for the iframe */
#video-frame {
  width: 100%;
  height: 450px;
  border: none;
}

/* Mute button styles */
.mute-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.mute-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .video-container {
      width: 95%;
  }

  #video-frame {
      height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .video-container {
      width: 100%;
  }

  #video-frame {
      height: 220px;
  }

  .mute-button {
      font-size: 12px;
      padding: 8px 12px;
  }
}

  /* Our Story Section */
.our-story-section {
    padding: 17px;
  }
  .our-story-header{
    text-align: center;
  }
  .image-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
  }
  
  .story-image {
    width: 45%;
    height: auto;
    border-radius: 10px;
  }
  
  .our-story-header {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    color:var(--text-color1); /* Black for the captions */
    margin-bottom: 20px;
  }
  
  .our-story-text {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    color:var(--text-color1); /* Black for the captions */
    line-height: 1.8;
    margin: 0 auto;
    width: 70%;
  }
  
  .read-more-btn {
    display: inline-block;
    background-color:  rgb(9, 73, 54);
    color: white;
    font-family: 'Lexend', sans-serif;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: darkgreen;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .image-row {
      flex-direction: column;
    }
  
    .story-image {
      width: 102%;
      margin-bottom: 20px;
    }
  
    .our-story-text {
      width: 90%;
    }
  
    .our-story-header {
      font-size: 28px;
    }
  
    .our-story-text {
      font-size: 22px;
    }
  
    .read-more-btn {
      font-size: 16px;
      padding: 8px 16px;
    }
  }
  
  @media (max-width: 480px) {
    .our-story-header {
      font-size: 24px;
    }
  
    .our-story-text {
      font-size: 14px;
    }
  
    .read-more-btn {
      font-size: 14px;
      padding: 6px 12px;
    }
  }
  
  /* Cheers Section */
.cheers-section {
    background-color: var(--cheers-color);
    padding: 50px 20px;
    text-align: center;
  }
  
  .cheers-header {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    color: var(--cheers-text);
    margin-bottom: 40px;
  }
  
  .card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .quote-card {
    background-color: var(--profile-color);
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .quote-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    color: var(--profile-text);
    margin-bottom: 20px;
  }
  
  .quote-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .quote-author {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: var(--profile-text);
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .quote-card {
      width: 45%;
    }
  
    .cheers-header {
      font-size: 32px;
    }
  
    .quote-text {
      font-size: 14px;
    }
  
    .quote-author {
      font-size: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .quote-card {
      width: 80%;
    }
  
    .cheers-header {
      font-size: 28px;
    }
  
    .quote-text {
      font-size: 14px;
    }
  
    .quote-author {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .quote-card {
      width: 100%;
    }
  
    .cheers-header {
      font-size: 24px;
    }
  
    .quote-text {
      font-size: 12px;
    }
  
    .quote-author {
      font-size: 14px;
    }
  }
  
  /* Scrolling Banner Section */
.scrolling-banner {
    overflow: hidden; /* Hide overflow to keep the banner clean */
    position: relative; /* Set positioning context for absolute child */
    height: 60px; /* Set height for the banner */
  }
  
  .banner-content {
    white-space: nowrap; /* Prevent line breaks */
    display: inline-block; /* Allow for scrolling */
    font-family: 'Lexend', sans-serif; /* Set font family */
    font-size: 30px; /* Set font size */
    font-weight: bold; /* Make the text bold */
    color:var(--text-color1); /* Black for the captions */
    animation: scroll 30s linear infinite; /* Scrolling animation */
    padding: 1rem;
  }
  
  /* Keyframes for scrolling effect */
  @keyframes scroll {
    0% {
      transform: translateX(100%); /* Start off-screen to the right */
    }
    100% {
      transform: translateX(-100%); /* End off-screen to the left */
    }
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .banner-content {
      font-size: 19px; /* Adjust font size for smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .banner-content {
      font-size: 17px; /* Further adjust font size for very small screens */
    }
  }
  
  /* Our Leaders Section */
.leaders-section {
    padding: 40px;
    text-align: center;
    font-family: 'Lexend', sans-serif;
  }
  
  .leaders-section h2 {
    font-size: 36px;
    font-weight: bold;
    color:var(--text-color1); /* Black for the captions */
    margin-bottom: 40px;
  }
  
  /* Leader Cards Grid */
  .leaders-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .leader-card {
    background-color: var(--profile-color);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .leader-card:hover {
    transform: scale(1.05);
  }
  
  .leader-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
  }
  
  .leader-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: var(--profile-text);
  }
  
  .leader-card p {
    font-size: 16px;
    color: var(--profile-text);
  }
  
  /* Get to Know Us Button */
  .get-to-know-btn {
    margin-top: 40px;
  }
  
  .get-to-know-btn button {
    background-color: rgb(9, 73, 54);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .get-to-know-btn button:hover {
    background-color: #45a049;
  }
  
  /* Media Queries */
  @media (max-width: 1200px) {
    .leaders-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .leaders-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .leader-card img {
      height: 180px;
    }
    
    .searcbox-outline {
  width: 90%;
}

  }
  
  @media (max-width: 480px) {
    .leaders-container {
      grid-template-columns: 1fr;
    }
  
    .leader-card img {
      height: 350px;
    }
        .searcbox-outline {
  width: 95%;
}

  }
  
  /* Our Gallery Section */
.gallery-section {
    padding: 20px;
    text-align: center;
    font-family: 'Lexend', sans-serif;
  }
  
  .gallery-section h2 {
    font-size: 36px;
    font-weight: bold;
    color:var(--text-color1); /* Black for the captions */
    margin-bottom: 30px;
  }
  
  /* Image Gallery Container */
  .gallery-container {
    overflow-x: auto; /* Horizontal scrolling */
    width: 100%;
    margin: 0 auto;
    white-space: nowrap; /* Prevent wrapping of images */
  }
  
  .image-gallery {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
  }
  
  .image-gallery img {
    height: 300px;
    flex: 0 0 30%; /* Each image will take 30% of the container */
    object-fit: cover; /* Ensures the images maintain their aspect ratio and fill the space */
    cursor: pointer;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .image-gallery img:hover {
    transform: scale(1.05);
  }
  
  /* Open Gallery Button */
  .open-gallery-btn {
    margin-top: 30px;
  }
  
  .open-gallery-btn button {
    background-color: rgb(9, 73, 54);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .open-gallery-btn button:hover {
    background-color: #45a049;
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .image-gallery img {
      flex: 0 0 40%; /* Images will take 40% width on medium screens */
    }
  }
  
  @media (max-width: 768px) {
    .image-gallery img {
      flex: 0 0 50%; /* Images will take 50% width on small screens */
    }
  }
  
  @media (max-width: 480px) {
    .image-gallery img {
      flex: 0 0 100%; /* Images will take 100% width on very small screens */
      height: 200px; /* Adjust the height for mobile view */
    }
  }

  .Join-container{
    background-color: var(--profile-color); /* Card background color */
    border-radius: 15px; /* Curved edges */
    padding: 15px; /* Padding inside cards */
    width: 90%; /* Card width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    justify-content: center;

  }
  
  .join-movement {
    background-color: var(--cheers-color); /* Set background color */
    padding: 20px;
    text-align: center; /* Center-align text */
}

.container {
    margin: 0 auto; /* Center container */
    max-width: 800px; /* Max width for container */
    display: flex;
    justify-content: center;
}

.join-title {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 1em; /* Adjust title size */
    margin: 0.5em ; /* Margin around title */
    color: var(--cheers-text);
}

.join-text {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 1.2em; /* Adjust text size */
    margin: 1em 0; /* Margin around text */
    color: var(--profile-text);
}

.donate-button {
    display: inline-block; /* Button styles */
    background-color: rgb(9, 73, 54);
    color: white;
    padding: 10px 20px;
    border-radius: 20px; /* Rounded edges */
    text-decoration: none; /* Remove underline */
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 1em; /* Button text size */
    transition: background-color 0.3s; /* Transition effect */
}

.donate-button:hover {
    background-color: darkgreen; /* Darken button on hover */
}

.faq-header {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 3rem; /* Header size */
    margin: 2em 0 1em; /* Margin */
    font-weight: bolder;
    color: var(--cheers-text);
}

.faq-container {
    display: flex;
    flex-direction: column; /* Arrange cards vertically */
    align-items: center; /* Center align cards */
}

.faq-card {
    background-color:var(--profile-color); /* Card background color */
    border-radius: 15px; /* Curved edges */
    padding: 15px; /* Padding inside cards */
    margin: 20px 0; /* Margin around cards */
    width: 70%; /* Card width */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
    text-align: left;
}

.faq-question {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-weight: bolder; /* Bold question */
    font-size: 2rem; /* Header size */
    text-align: left;
    padding: 1rem;
    color: var(--profile-text);
}

.faq-answer {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    margin: 0; /* Remove margin */
    font-size: 1.5rem; /* Header size */
    padding: 1rem;
    text-align: left;
    color: var(--profile-text);

}

/* Media Queries */
@media (max-width: 768px) {
    .join-title {
        font-size: 1.5em; /* Smaller title size */
    }
    
    .join-text {
        font-size: 1em; /* Smaller text size */
    }

    .faq-header {
        font-size: 1.5em; /* Smaller header size */
    }
    
    .donate-button {
        padding: 8px 16px; /* Adjust button size */
        font-size: 0.9em; /* Smaller button text size */
    }

    .faq-card {
        width: 95%; /* Wider cards on smaller screens */
    }
}

/* Blog section styling */
.blog-section {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--blog-section);
}

.section-title {
  font-size: 2rem;
  color: var(--blog-head);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-color1);
  margin-bottom: 30px;
}

/* Blog container */
.blog-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Flex-wrap for responsiveness */
}

/* Blog item styling */
.blog-item {
  border-radius: 10px;
  padding: 20px;
  flex: 0 0 30%;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.blog-item h3 {
  font-size: 1.2rem;
  color: var(--blog-head);
  margin-bottom: 10px;
  text-align: left;
}

.blog-description {
  font-size: 0.9rem;
  color: var(--text-color1);
  margin-bottom: 20px;
  text-align: left;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bolder;
  color: var(--blog-head);
}
.blog-footer i{
  color: var(--blog-head);
}

.blog-date {
  font-size: 0.9rem;
  color:var(--blog-head);
  font-weight: bolder;
}

.read-more {
  font-size: 0.9rem;
  color:var(--blog-head);
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-item {
      flex: 0 0 45%; /* Two columns on tablet screens */
  }
}

@media (max-width: 768px) {
  .blog-item {
      flex: 0 0 90%; /* Single column on mobile screens */
  }
}

.blog-footer .fas {
  margin-right: 5px; /* Adds a small space between the icon and the text */
  color: #888;       /* Calendar icon color */
  font-size: 0.9rem;
}

.read-more-button {
    display: inline-block; /* Button styles */
    background-color:var(--blog-head); /* Button background */
    color: white; /* Button text color */
    padding: 10px 15px; /* Padding inside button */
    border-radius: 20px; /* Rounded edges */
    text-decoration: none; /* Remove underline */
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 0.9em; /* Button text size */
    transition: background-color 0.3s; /* Transition effect */
}

.read-more-button:hover {
    background-color: darkgreen; /* Darken button on hover */
}


.follow-us {
    padding: 20px; /* Padding around the section */
    text-align: center; /* Center-align text */
}

.follow-header {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 3rem; /* Header size */
    margin-bottom: 20px; /* Margin below header */
    font-weight: bolder; /* Bold text */
    color:var(--text-color1); /* Black for the captions */
}

.social-icons {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the social icons */
    gap: 20px; /* Space between icons */
}

.social-icon {
    width: 50px; /* Icon container width */
    height: 50px; /* Icon container height */
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    border-radius: 50%; /* Round edges */
    font-size: 24px; /* Icon size */
}

/* Background colors for social icons */
.facebook {
    background-color:#0b60cb; /* Facebook blue background */
}

.twitter {
    background-color: #000000; /* Twitter blue background */
}

.instagram {
    background-color: #f00075; /* Instagram pink background */
}

.tiktok {
    background-color: #000000; /* TikTok black background */
}

/* Set icon color to white */
.social-icon i {
    color: white; /* Icon color */
}

/* Media Queries */
@media (max-width: 768px) {
    .social-icons {
        flex-direction: row; /* Stack icons vertically on small screens */
        align-items: center; /* Center align icons */
    }
    
    .follow-header {
        font-size: 1.5em; /* Smaller header size on mobile */
    }
}

  
  .Partner-container {
    margin: 0 auto;
    background-color:var(--cheers-color);
    padding: 2rem;
    box-shadow: 14px 14px 14px 14px rgba(0.2, 0.2, 0.2, 0.2); /* Shadow effect */
    justify-content: center;
    max-width: 90%;
    margin-bottom: 10px;

  }
  .Part-h2 {
    text-align: center;
    font-family: "lexend", sans-serif;
    color:  var(--blog-head);
    font-weight: bolder;
    font-size: 3rem;
  }
  .form-group {
    margin-bottom: 15px;
    font-family: "lexend", sans-serif;
    color: var(--profile-text);
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  .form-group input, .form-group textarea, .form-group select {
    width: 93%;
    padding: 20px;
    border: 0.1rem solid  var(--blog-head);
    border-radius: 30px;
    background-color: var(--cheers-color);
    color: var(--profile-text);
  }
  .form-group button {
    width: 40%;
    padding: 15px;
    border: none;
    background-color:var(--blog-head);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }
  .form-group button:hover {
    background-color: #037836;
  }
  
/* Media Queries */
@media (max-width: 768px) {
   .Partner-container {
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    justify-content: center;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .Part-h2 {
    text-align: center;
    font-family: "lexend", sans-serif;
    color: var(--blog-head);
    font-weight: bolder;
    font-size: 2rem;
  }

  .form-group button {
    width: 40%;
    padding: 15px;
    border: none;
    background-color:var(--blog-head);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
  }

}

.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 */
}

.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 */
}

/* 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);
  }
  

  .partner-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #05668D, #02C39A);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 50px auto;
}

.partner-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.partner-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.partner-btn {
    text-decoration: none;
    font-size: 1rem;
    padding: 12px 30px;
    color: #05668D;
    background-color: white;
    border: 2px solid white;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #034F61;
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .partner-section h2 {
        font-size: 1.8rem;
    }

    .partner-section p {
        font-size: 1rem;
    }

    .partner-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .partner-section {
        padding: 30px 10px;
        border-radius: 0px;
    }

    .btn-container {
        flex-direction: column;
        gap: 15px;
    }

    .partner-btn {
        width: 80%;
        margin: 0 auto;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;600&display=swap');

.certificate-body {
  font-family: 'Lexend', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f3f4f7, #e6e9f0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.certificate-section {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.certificate-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 500px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.certificate-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  background: rgba(52, 152, 219, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.certificate-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(155, 89, 182, 0.2);
  border-radius: 50%;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.card-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
}

.btn-get-certificate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-get-certificate i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-get-certificate:hover {
  background: linear-gradient(90deg, #2980b9, #8e44ad);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 600px) {
  .certificate-card {
    padding: 30px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .btn-get-certificate {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

  
  