













    .gallery-section {
      max-width: 1200px;
      margin: 150px auto 0 auto;
      padding: 30px 16px;
    }

    .gallery-section h2 {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #2b761f;
      text-transform: uppercase;
    }

    .gallery-section p {
      text-align: center;
      font-size: 16px;
      color: #666;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    .filter-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 40px;
    }

    .filter-buttons button {
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 8px 16px;
      border-radius: 25px;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .filter-buttons button.active,
    .filter-buttons button:hover {
      background-color: #2b761f;
      color: white;
      border-color: #2b761f;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }
/* 
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      object-fit:fill;

    }

    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.4s ease;
      object-fit: fill;

    }

    .gallery-item:hover img {
      transform: scale(1.05);
    } */


    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }
    
    .gallery-item {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3; /* Maintains aspect ratio */
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    
    .gallery-item img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* Force image to cover container */
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item.hidden {
      display: none;
    }

    @media screen and (max-width: 480px) {
      .filter-buttons {
        gap: 8px;
      }

      .filter-buttons button {
        font-size: 12px;
        padding: 6px 12px;
      }

      .gallery-section h2 {
        font-size: 24px;
      }

      .gallery-section p {
        font-size: 14px;
      }
    }



















    /*---------------------------------------FOOTER SECTION STYLE --------------------------------------------*/

/* footer  code starts  */
.footerContainer{
  background:#F5F5F5;
}

footer{
  width: 100%;
  /* position: absolute; */
  bottom: 0;
  background: linear-gradient(to right, #262525, #131111);

  color: #eee5e5;
  padding: 100px 0 30px;
   border-top-left-radius: 5px;
  /* border-top-right-radius: 20px; */
  font-size:13px ;
  line-height: 20px;
  box-shadow: 0 -3px 3px rgba(194, 194, 194, 0.708);
}
.footerRow{
  width: 85%;
  margin:auto;
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footercol{
  flex-basis: 25%;
  padding: 10px;

}
.footercol:nth-child(2),.footercol:nth-child(3){
  flex-basis:17%;
  
}

.footercol .logo{
  width: 80px;
  margin-bottom: 30px;
  border-radius: 100px;
  
}


.footercol h3{
  width: fit-content;
  color: #008E66;
  margin-bottom: 30px;
  position: relative;
  font-weight:bold;
  
 
  font-style: normal;
  font-size:large;
  height: fit-content;    
  
}

.footercol ul li{
  list-style: none;
  margin-bottom: 12px;
}
.footercol ul li a{
  text-decoration: none;
  color: rgb(203, 197, 197);
  font-weight: 600;
  text-decoration: underline;
}
.footercol ul li a:hover{
  color: rgba(22, 151, 48, 0.719);
}





.footer .social-icons .fa-brands{
  width:40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #000;
  background: #fff;
  margin-right: 15px;
  cursor: pointer;
  

}
.footer .social-icons .fa-brands:hover{
   scale: 1.1;
   transition: scale 0.3s ease;
   box-shadow: 0 0 10px rgba(226, 226, 228, 0.795);
  
   color: white;
}
.footer .social-icons .fa-facebook{
  background: linear-gradient(
      to right,
      #1877F2,
      #2851A3
    );
  color: #fff;}
.footer .social-icons .fa-linkedin{
  background: linear-gradient(
      to right,
      #0077B5,
      #004182
    );color: #fff;}
.footer .social-icons .fa-whatsapp{
  background: linear-gradient(
      135deg,
      #25D366,
      #128C7E
    );color: #fff;}
.footer .social-icons .fa-instagram
{
  background: linear-gradient(
  45deg,
  #f09433 0%,
  #e6683c 25%,
  #dc2743 50%,
  #cc2366 75%,
  #bc1888 100%
);color: #fff;
}

footer hr{
  width: 90%;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin: 20px auto;


}

#footerScanAndDonate{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footerScanAndDonate img{
width: 100%;
height: 220px;
object-fit: contain;
}
footer .copyright{
  text-align: center;
}
footer .underline{
  width: 100%;
  height:4px;
  background: #234e2a7b;
  border-radius: 3px;
  position: absolute;
  left: 0;
  bottom: -9;
  overflow: hidden;
}
footer .underline span{
  width: 28px;
  height: 100%;
  background: #29ba6a9c;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 10px;
  animation: moving 2s linear infinite ;
  
}
.footerLocation{
  display: flex;
  align-items: center;
  gap: 8px;
}
.emailHere{
  display: flex;
  align-items: center;
 margin-top: 10px;
  gap: 8px;
}
.telephoneInfo{
  display: flex;
  align-items: center;
 margin-top: 10px;
  gap: 8px;
}
.footerLocation2{
  display:flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0 0;
}
#office{
  color:#b3adad;
  font-size: 14px;
}
.footerCopyrightSection{
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  /* padding: 0 60px; */

}
.aboutInFooter{
  color: rgb(212, 203, 203);
  font-size: normal;
  font-weight: 500;
}
.footerCopyrightSection p{
  letter-spacing: 3px;
}
.footerCopyrightSection .copyright span{
  color: #008e66;
  font-weight: 600;
}

#firstFooterCol p{
 letter-spacing: 1.2px; 
 font-size:14px;
}

.newsletterSection {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  min-height: 50vh;
  margin: auto;
  position: relative; /* Required for z-index to work */
  z-index: 1;
  background-image: url("donation.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 10px;
}
.outerNewsletter{
  background: #fcf9f962;
  width: 90%;
  border-radius: 10px;
}
.blurBlack{
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color:rgba(110, 104, 104, 0.331);
}
.contentNewsletter{
  position: relative;
  z-index: 2;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 95%;
  background:rgba(185, 184, 184, 0.249);
  height: 100%;
  padding: 20px;
  margin: auto;
  color: black;
  border-radius: 10px;
  
}
.contentNewsletter h3{
  color: black;
  font-style:normal;
  font-weight: bold;
  font-size: large;
  
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
  text-align: center;
  
}
.contentNewsletter p{
  letter-spacing: 1.5px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;

}

.contentNewsletter form{
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contentNewsletter form  input{
  width: 70%;
  padding: 15px 23px;
  outline: none;
  border: none;
  border-bottom: 1px solid grey;
  border-radius: 12px;
}
.contentNewsletter form .fa-solid{
  font-size: 22px;
  margin-right: 5px;
}
.contentNewsletter form button {
  padding: 15px 23px;
  background: #008e66;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
  width: 40%;
  margin:auto;
}
.contentNewsletter form button:hover{
  background-color: #29ba6a;
}
#joinN{
  text-align: center;
  /* margin-bottom: 10px; */
  color: #008E66;
  position: relative;
  width: fit-content;
  margin: auto;
  margin-bottom: 20px ;
  font-size: large;

}
@keyframes moving{
  0%{
      left:-20px
  }
  100%{
      left:100%
  }
}
@media screen and (max-width:700px) {
  footer{
      bottom: unset;
      padding-top: 30px;
  }
  .footer .logo{
      width: 60px;
      border-radius:50%;
  }
  .footercol{
      flex-basis: 100%;
      
      /* padding: 10px; */
  
  }
  .footercol:nth-child(2),.footercol:nth-child(3){
      flex-basis: 100%;
  }
  #firstFooterCol{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 15px;
   }
   .newsletterSection{
      width: 70%;
   }
   .contentNewsletter h3{
      font-size: medium;
   }
   .contentNewsletter p{
      font-size: 12px;
   }
   .contentNewsletter form input{
      width: 80%;
      padding: 10px 15px;

   }
   .contentNewsletter form button{
      width: fit-content;
      padding: 7px 10px;
      font-size: 10px;
      
      
   }
}
@media  (min-width:700px) and (max-width:1100px) {
footer{
  bottom:unset;
  padding-top: 30px;
}

.footercol:nth-child(1){
  flex-basis: 100%;
}
.footercol:nth-child(2),.footercol:nth-child(3),.footercol:nth-child(4){
  /* width: fit-content; */
  flex-basis:29%;
}
}

@media screen and (max-width:1000px) {
  .footerCopyrightSection{
      flex-direction: column;
      align-items: center;
      gap: 12px;
  }
}


















