
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
   margin: 0;
   padding: 0;
   font-family: "Google Sans", sans-serif;
   caret-color: transparent;
   scroll-behavior: smooth;
}
 
 

.active{
    background-color: lightgreen;
    padding: 5px 30px;
}

.header{
    height: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.left-section{
    width: 300px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
}

.logo{
    width: 70px;
    border-radius: 50%;
    margin-left: 20px;
    margin-right: 20px;
    display: none;
}

.brand{
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 5px;
}

.brand-name{
    font-size: 30px;
    color: purple;
    font-weight: bold;
    margin-bottom: 5px;
}

.brand-slogan{
    font-size: 20px;
    font-weight: bold;
    color: purple;
    margin-bottom: 5px;
}

.brand-tagline{
   font-size: 15px;
   color: purple;
   font-weight: 100;
}



.middle-section{
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}

.middle-section .navbar-menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0;

}

.navbar-menu li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: purple;
    transition: 1s;
}

.navbar-menu li a:hover{
    background-color: purple;
    color: white;
    padding: 5px 30px;
    border-radius: 50px;
}



.navbar-menu li{
    position: relative;
}

.dropdown-menu{
    width: 300px;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: lightgreen;
    min-width: 260px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    padding: 10px 0;
    margin-top: 3px;
    display: none;
    z-index: 1000;
}

.dropdown-menu li{
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
}

.dropdown-menu li a{
    display: block;
    margin-top: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 1s;
    padding-left: 10px;
    font-weight: bold;
}



.dropdown-menu li a:hover{
    background: purple;
    color: white;
}

.dropdown:hover .dropdown-menu{
    display: block;
}



.right-section{
    background-color: white;
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: none;
}

.heart-icon img{
    width: 35px;
}

.heart-icon{
    position: absolute;
    right: 50px;
    margin-top: 6px;
}

.donate-button{
    background-color: purple;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    margin-left: 30px;
    padding-right: 80px;
    border: none;
    position: relative;
    transition: 1s;
    cursor: pointer;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.donate-button:hover{
    background-color: lightgreen;
}




.about-page{
  width: 100%;
  display: flex;
  flex-direction: column; 
}

.about-page-container-1{
  width: 100%;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.about-page-container-1-a{
  width: 450px;
  height: 500px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  display: flex;
  flex-shrink: 0;
}


.about-page-container-1-a-frame{
  width: 400px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.about-page-container-1-a-frame .about-image{
  width: 100%;
  height: 300px;
}

.about-page-container-1-b{
    flex: 1;
   
    display: flex;
    justify-content: center;
    background-color: white;
    flex-shrink: 0;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
   
}



.about-page-container-1-b-content{
  width: 95%;
  height: auto;
  flex-shrink: 0;
  margin-top: 20px;
  background-color: white;
}

.about-page-container-1-b-content p{
  font-size: 16px;
  text-align: justify;
  padding-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  line-height: 1.5;
  padding-left: 10px;
  padding-right: 10px;
  background-color: purple;
  color: white;
  padding: 10px;
}

.about-page-container-1-b-content h2{
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: lighter;
  color: white;
  background-color: lightgreen;
  padding: 10px;
}

.about-page-container-1-b-content ul li{
    font-size: 16px;
    margin-bottom: 15px;
    width: 100%;
    margin-left: 20px;
    padding-right: 10px;
    list-style: circle;
}




.about-page-container-1-b-content h5{
  font-size: 16px;
  font-weight: 100;
  width: 100%;
  line-height: 2;
  padding-left: 10px;
  padding-right: 10px;
}



.about-page-container-2{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.about-page-container-2-a{
  width: 450px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  display: flex;
  flex-shrink: 0;
}

.about-page-container-2-a-frame{
  width: 400px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}


.about-page-container-2-a-frame .mission-image{
  width: 100%;
  height: 300px;
}



.about-page-container-2-b{
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: white;
    flex-shrink: 0;
    border-left: 1px solid #000;
    
}

.about-page-container-2-b-content{
  background-color: white;
  width: 95%;
  margin-top: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-page-container-2-b-content .mission-p{
  font-size: 16px;
  text-align: justify;
  padding-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  background-color: purple;
  color: white;
  padding: 10px;
  line-height: 1.5;
}

.about-page-container-2-b-image-container{
  background-color: white;
  width: 100%;
  height: 250px;
  padding-left: 10px;
  display: flex;
  flex-shrink: 0;
  justify-content: space-evenly;
  align-items: center;
  
}


.about-page-container-2-b-image-container img{
      width: 115px;
      height: 200px; 
}





.about-vision{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.about-vision-left{
  width: 450px;
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  display: flex;
  flex-shrink: 0;
}

.about-vision-left-content{
  width: 400px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
 
}

.vision-left-image{
  width: 100%;
  height: 300px;
}



.about-vision-right{
    flex: 1;
    display: flex;
    justify-content: center;
    background-color: transparent;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    flex-shrink: 0;
}

.about-vision-right-content{
   background-color: white;
  width: 95%;
  margin-top: 20px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-vision-right-content p{
  font-size: 16px;
  text-align: justify;
  padding-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  background-color: purple;
  color: white;
  padding: 10px;
  line-height: 1.5;
}

.vision-right-image-container{
   background-color: white;
  width: 100%;
  height: 250px;
  padding-left: 10px;
  display: flex;
  flex-shrink: 0;
  justify-content: space-evenly;
  align-items: center;
 
}

.vision-right-image-container img{
      width: 115px;
      height: 200px; 
}



.footer{
    background-color: purple;
    color: white;
    padding-top: 50px;
    margin-top: 20px;

}

.footer-container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo{
    width: 180px;
    margin-bottom: 15px;
}

.footer-text{
    font-size: 16px;
    line-height: 1.7;
    color: white;
    text-align: start;
}

.footer-column h4{
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 10px;
}

.footer-column ul li a{
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-column ul li a:hover{
    color: lightgreen;
}

.footer-column p{
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: start;
}

.social-icons{
    display: flex;
    gap: 12px;
}

.social-icons img{
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background:white;
    padding: 6px;
    transition: 0.3s;
}

.social-icons img:hover{
    background: transparent;
}

.footer-bottom{
    border-top: 1px solid white;
    margin-top: 40px;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: white;
}

.mobile-menu{
    display: none;
}


.bar {
display: block;
width: 20px;
height: 2px;
background-color: purple;
margin: 5px 0;
}

.navbar-toggle {
background: none;
border: none;
cursor: pointer;
text-align: center;
display: none;
}



@media screen and (max-width: 768px){

    .header{
        width: 100%;
    }
  
 .left-section{
        width: 200px;
        padding-left: 10px;
        padding-right: 10px;
        flex-shrink: 0;
        border: none;
    }

.brand-name{
    font-size: 26px;
    margin-bottom: 10px;
}

.brand-slogan{
    font-size: 16px;
    margin-bottom: 10px;
    
}

.brand-tagline{
   font-size: 12px;

}

    .right-section{
        width: 150px;
        flex-shrink: 0;
        border: none;
    }


    
.donate-button{
        width: auto;
        padding: 10px 18px;
        margin-left: 0;
        font-size: 16px;
    } 

    
.donate-button{
   width: 30px;
}

.heart-icon{
    display: none;
}


    .middle-section{
        border: none;
        flex: 1;
        flex-shrink: 0;
        justify-content: center;
        align-items: center;
        position: relative;
        border: none;
    }



    .middle-section .navbar-menu{
        display: none;
    }


    .navbar-toggle{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu{
        position:fixed;
        top:155px;
        left:50%;
        transform:translateX(100%);
        width:60%;
        background: lightgreen;
        display:flex;
        flex-direction:column;
        align-items:center;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition: 1.5s ease;
        z-index:999;
    }

    .mobile-menu.show{
        transform:translateX(-50%);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .mobile-menu ul{
        list-style:none;
        width:100%;
        padding:0;
        margin:0;
        text-align:center;
    }

    .mobile-menu ul li{
        margin:20px 0;
    }

    .mobile-menu ul li a{
        text-decoration:none;
        color:purple;
        font-size:16px;
        font-weight: bold;
        transition: 1s;
    }

    .mobile-menu ul li a:hover{
        background:purple;
        color:white;
        padding:5px 30px;
    }

   


    .mobile-dropdown-menu{
    display: none;
    list-style: none;
    padding-top: 10px;
    margin-top: 10px;
}

.mobile-dropdown-menu.show{
    display: block;
}

.mobile-dropdown-menu li{
    margin: 10px 0;
}

.mobile-dropdown-menu li a{
    display: block;
    color: purple;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 0;
}






.about-page-container-1{
    display: flex;
    flex-direction: column;
}


.about-page-container-1-a{
    width: 100%;
    border: none;
    height: 350px;
}


.about-page-container-1-a-frame {
   width: 90%;
   margin-top: 20px;
}

.about-page-container-1-b{
    width: 100%;
    padding: 0 20px;
    border: none;
    background-color: white;
}


.about-page-container-1-b-content{
    width: 96%;
    height: auto;
    background-color : white;
    border: 1px solid purple;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    padding-top: 20px;
}

.about-page-container-1-b-content p{
    width: 90%;

}

.about-page-container-1-b-content h2 {
   width: 90%;
}

.about-page-container-1-b-content ul li{
    width: 90%;
}

.about-page-container-1-b-content h5 {
   padding-left: 20px;
   padding-right: 20px;
   padding-bottom: 50px;
}




.about-page-container-2{
    display: flex;
    flex-direction: column;
}

.about-page-container-2-a{
    width: 100%;
    border: none;
}

.about-page-container-2-a-frame {
    width: 90%;
}

.about-page-container-2-b{
    width: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-container-2-b-content{
    width: 90%;
    background-color: white;
}

.about-page-container-2-b-content .mission-p{
    width: 100%;
    background-color: purple;
    line-height: 1.5;
    color: white;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 10px;
}



.about-page-container-2-b-image-container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
    padding: 10px;
    border: 1px solid purple;
    border-radius: 10px;
}

.about-page-container-2-b-image-container img{
    width: 18%;
    height: 200px;
    margin: 0;
    object-fit: cover;
}


.about-vision{
    display: flex;
    flex-direction: column;
}

.about-vision-left{
    width: 100%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-vision-left-content{
    width: 90%;
    max-width: none;
}


.about-vision-right{
    width: 100%;
    border: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-vision-right-content{
    width: 90%;
    background-color: white;
}

.about-vision-right-content p{
    width: 100%;
    background-color: purple;
    color: white;
    line-height: 1.5;
    padding: 20px 20px 10px;
}

.vision-right-image-container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
    padding: 10px;
    border: 1px solid purple; 
    border-radius: 10px;
}

.vision-right-image-container img{
    width: 18%;
    height: 200px;
    margin: 0;
    object-fit: cover;
}


.footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
}

.footer-column p,
.footer-text {
    text-align: center;
}

.footer-logo {
    margin: 0 auto;
}

.social-icons {
    justify-content: center;
}

.footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

}







@media (min-width:769px) and (max-width:1090px){

    .middle-section .navbar-menu{
        display:none;
    }

    .middle-section{
        justify-content:center;
        align-items:center;
        position:relative;
    }


     .navbar-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
    }   


    .mobile-menu{
        position:fixed;
        top:155px;
        left:50%;
        transform:translateX(100%);
        width:60%;
        background: lightgreen;
        display:flex;
        flex-direction:column;
        align-items:center;
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:1.5s ease;
        z-index:999;
    }

    .mobile-menu.show{
        transform:translateX(-50%);
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .mobile-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    
}

.mobile-menu ul li{
    margin: 20px 0;
}

.mobile-menu ul li a{
    text-decoration: none;
    font-size: 16px;
    color: purple;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
    padding: 5px 0;
}

.mobile-menu ul li a:hover{
    background-color: purple;
    padding: 5px 30px;
    color: white;
}



.mobile-dropdown-menu{
    display: none;
    list-style: none;
    padding-top: 10px;
    margin-top: 10px;
}

.mobile-dropdown-menu.show{
    display: block;
}

.mobile-dropdown-menu li{
    margin: 10px 0;
}

.mobile-dropdown-menu li a{
    display: block;
    color: purple;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
}


.about-page-container-1-b{
    height: 600px;
   
}

.about-page-container-2{
    display: flex;
    flex-direction: column;
}


.about-page-container-2-a{
    width: 100%;
    background-color: white;
    border-top: none;
    border-right: none;
}

.about-page-container-2-b{
    width: 100%;
    background-color: white;
    border-bottom: none;
}

.about-page-container-2-a-frame{
    width: 90%;
    margin-bottom: 20px;
}

.about-page-container-2-b-content{
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page-container-2-b-content .mission-p{
    padding-left: 20px;
    padding-right: 20px;
}

.about-page-container-2-b-image-container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
    padding: 10px;
    border: 1px solid purple;
    flex-wrap: nowrap;
}

.about-page-container-2-b-image-container img{
    width: 18%;
    height: 200px;
    margin: 0;
    object-fit: cover;
}

.about-vision{
    display: flex;
    flex-direction: column;
}

.about-vision-left{
    width: 100%;
    border-top: none;
    border-right: none;
}

.about-vision-right{
    border-bottom: none;
}

.about-vision-left-content{
    width: 90%;
    
}

.about-vision-right-content{
    width: 90%;
    border-bottom: none;
}

.vision-right-image-container{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
    padding: 10px;
    border: 1px solid purple;
    flex-wrap: nowrap;
}

.vision-right-image-container img{
    width: 18%;
    height: 200px;
    margin: 0;
    object-fit: cover;
}

}
