*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body{
    overflow-x: clip;
    scroll-behavior: smooth;
}
body a{
    text-decoration: none!important;
}
body li{
    list-style: none;
}
body h1,h2,h3,h4,h5{
    font-family: "Momo Trust Display", sans-serif;
}
body h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 0%!important;
}
:root{
    --primary:#e4c606;
    --secondary:#05772E;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
    --black:#222;
}
.wrapper,.container{
    width:90vw!important;
    margin: auto;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.gaps{
    margin-top: 5%;
}
.common{
    background:repeating-conic-gradient(#000 35deg 70deg, #111 70deg 140deg);
    background-size: 10px 10px;
    color:var(--white);
    padding-block: 30px;
}
.common h4{
    margin-bottom: 1%!important;
    letter-spacing: 1px;
}
.common a{
    color:var(--white);
}
.whatsapp,.pulse {
    background: #1ab744;
    position: fixed;
    right:2%;
    bottom:10%;
    font-size: 30px;
    text-align: center;
    z-index: 99;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--white);
}
.pulse:nth-child(1) {
    animation: pulse 2s infinite
}
.pulse:nth-child(2) {
    animation: pulse 2s infinite .3s
}
.pulse:nth-child(3) {
    animation: pulse 2s infinite .6s
}
@keyframes pulse {
0% {
    transform: scale(.1);
    opacity: 0;
}
50% {
    opacity: .3;
}
100% {
    transform: scale(1.6);
    opacity: 0;
}
}
.arrow-up{
   position: fixed;
   height:35px;
   width:35px; 
   border: none;
   outline: none;
   border: 2px solid var(--primary);
   border-radius: 50%;
   background-color: var(--white);
   color:var(--primary);
   bottom:3.5%;
   right:2.5%;
   z-index: 999;
}

/* navbar page  */
.upper{
    background:linear-gradient(to right,var(--secondary),var(--primary));
    color:var(--white);
    padding-block: 1px;
}
.upper a{
    color:var(--white);
}
.upper-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
}
.upper-grid{
    display: flex;
    gap:25px;
}
.upper-icon{
    height:28px!important;
    width:28px!important;
    border:2px solid var(--white);
    border-radius: 50%;
    padding-top: 4.5px;
    margin-right: 5px;
}
.first{
    height:100%;
    padding-block: 3px;
}
.first-grid{
    display: grid;
    grid-template-columns: 0.3fr 1fr 0.3fr;
    gap:10px;
    align-items: center;
}
.logo{
    height: 80px;
    width: 80px;
    object-fit: contain;
}
.first-center{
    display: flex;
    justify-content: center;
    gap:150px;
}
.first-center-flex{
    display: flex;
    align-items:center;
    gap:20px;
}
.first-icon{
    height:40px;
    width:40px;
    background-color: var(--primary);
    border-radius: 3px;
    color: var(--white);
}
.first-right{
    display: flex;
    justify-content:end;
}
.donate-btn{
    padding:10px 27px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    border-radius: 3px;
}
nav{
    background:linear-gradient(to left,var(--secondary),var(--primary));
    --bs-navbar-padding-y:5px!important;
}
.navbar-nav{
    gap:70px;
}
.nav-link{
    font-size: 14px!important;
    color:var(--white)!important;
    font-weight: 500!important;
}
.nav-link:hover{
    color:var(--lightgray)!important;
}
.dropdown-menu{
    border-radius: 0%!important;
}
.dropdown-item:focus{
    background-color: transparent!important;
    color:var(--black)!important;
}
.nav-container{
    position: relative;
}
.static-dropdown{
    position: static!important;
}
.mega-dropdown {
    position: absolute!important;
    width: 40%!important;
    left: 30%!important;
    top:100px;
    padding: 10px!important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
    transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.mega-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
}
.dropdown-heading{
    display: flex!important;
    gap:15px;
    align-items: center!important;
}
.dropdown-heading:hover{
    background: linear-gradient(to right, var(--primary),var(--secondary));
    color:var(--white)!important;
    border-radius: 5px;
}
.dropdown-heading:hover .dropdown-content small{
    color:var(--white);
}
.dropdown-content small{
    color:var(--gray);
}
.hide-nav{
    display: none;
}

/* index page  */
header{
    position: relative;
    height:79vh;
}
.dots{
    position: absolute;
    bottom:15px;
}
.dots label{
    height:15px;
    width:15px;
    border:2px solid var(--primary);
    border-radius: 50%;
    background-color: var(--white);
    margin: 0 2px;
    cursor: pointer;
}
header input:nth-child(1):checked ~ .dots label:nth-child(1),
header input:nth-child(2):checked ~ .dots label:nth-child(2),
header input:nth-child(3):checked ~ .dots label:nth-child(3){
    opacity: 0.5;
}
header input{
    display: none;
}
.slides{
    height: 100%;
    width:100%;
    display: flex;
}
.slide{
    height: 100%;
    width:100%;
    display: none;
}
header input:nth-child(1):checked ~ .slides .slide:nth-child(1),
header input:nth-child(2):checked ~ .slides .slide:nth-child(2),
header input:nth-child(3):checked ~ .slides .slide:nth-child(3){
    display: block;
}
.slide-one{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/a6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}
.slide-two{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/a17.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide-three{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/a10.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.dummy-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border:1px solid var(--lightgray);
}
.dummy-gradient{
    background:linear-gradient(to right,var(--secondary),var(--primary));
    color:var(--white);
}
.dummy-box{
    display: flex;
    flex-direction: column;
    gap:15px;
    padding: 25px 15px;
}
.dummy-icon{
    font-size: 35px;
}
.about-grid{
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap:50px;
    width:80%;
    margin: auto;
    margin-top: 5%;
}
.about-image{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius: 5px;
}
.about-right{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap:30px;
}
.btn-one{
    padding:10px 27px;
    background:linear-gradient(to right,var(--primary),var(--secondary));
    color:var(--white);
}
.work-grid{
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap:50px;
}
.work{
    display: flex;
    flex-direction: column;
    gap:30px;
}
.work-flex{
    display: flex;
    align-items: center;
    gap:10px;
}
.work-flex > *{
    font-weight: 800;
    color:var(--gray);
}
.work-flex h2{
    font-size: 40px;
}
.work-content{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding-block: 40px;
    padding-inline: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap:25px;
    background-color: var(--primary);
    color:var(--white);
}
.work-icon{
    height:80px;
    width:80px;
    background-color: var(--white);
    border-radius: 50%;
    color:var(--black);
    font-size: 40px;
}
.work-icon i{
    font-size: 40px;
}
.work-btn{
    border: none;
    background-color: transparent;
}
.work-btn.active .work-flex > * {
    color: var(--black);
}
.color-one{
    color:var(--secondary);
}
.what-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
}
.what-box{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    display: flex;
    flex-direction: column;
    gap:20px;
    padding:20px 15px;
    border-radius: 5px;
}
.what-box-number{
    height:60px;
    width:60px;
    background: linear-gradient(to right,var(--primary),var(--secondary));
    color:var(--white);
    border-radius: 50%;
    font-size: 25px;
}
.what-box-one{
    background: linear-gradient(to right,var(--primary),var(--secondary));
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    display: flex;
    flex-direction: column;
    gap:20px;
    padding:20px 15px;
    color:var(--white);
    border-radius: 5px;
}
.what-box-number-one{
    height:60px;
    width:60px;
    background-color: var(--white);
    color:var(--black);
    border-radius: 50%;
    font-size: 25px;
}
.what-heading{
    font-size: 18px;
}
.fa-star{
    color:var(--primary);
    margin-right: 7px;
}
.stars{
    color:var(--white);
    margin-right: 7px;
}
.what-grid li{
    font-size: 15px;
    margin-top: 1%;
}
.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:75px;
}
.test-header{
    display: flex;
    align-items: center;
    gap:13px;
    margin-bottom: 3%;
}
.item{
    padding-inline: 10px;
    padding-block: 20px;
    margin-top: 3%;
    margin-bottom: 3%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.test-header h5{
    font-size: 19px;
}
.test-header h6{
    color:var(--gray);
}
.testimonial-img{
    height: 55px !important;
    width: 55px!important;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white)!important;
}
.fa-star{
    color:var(--secondary);
}

/* footer page  */
footer{
    background-color: #111;
    padding-top: 40px;
    padding-bottom: 15px;
    color:var(--white);
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap:20px;
}
.footer-grid h6{
    position: relative;
    font-size: 19px;
    letter-spacing: 1px;
    margin-bottom: 14%!important;
    font-family: "Momo Trust Display", sans-serif;
}
.footer-grid h6:before{
    position: absolute;
    content: "";
    height:3px;
    width:20px;
    background-color: var(--white);
    bottom:-12px;
    left:0;
}
.footer-grid h6:after{
    position: absolute;
    content: "";
    height:3px;
    width:60px;
    background-color: var(--primary);
    bottom:-12px;
    left:30px;
}
.footer-top{
    margin-top: 4%;
}
.footer-top a{
    color:var(--lightgray);
}
.footer-second{
    display: flex;
    justify-content: space-between;
}
.footer-logo{
    height: 200px;
    width:200px;
    object-fit: cover;
}
.footer-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:15px;
}

/* about us apge  */
.president-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:50px;
}
.president-img{
    height:100%;
    width:100%;
    object-fit: cover;
    background-color: rgb(231, 231, 210);
}
.board-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.board{
    position: relative;
}
.board-image{
    height:350px;
    width:100%;
    object-fit: cover;
    background-color: rgb(231, 231, 210);
    border-radius: 5px;
}
.board-content{
    position: absolute;
    content: "";
    background-color: var(--white);
    bottom:10px;
    left:0;
    width:80%;
    margin-left: 12.5%;
    text-align: center;
    padding-block: 10px;
    border-radius: 5px;
}
.board-content h5{
    font-size: 19px;
}
/* media page  */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
}
.media-img{
    height:200px;
    width:100%;
    object-fit: cover;
    border-radius: 5px;
}

/* get involved page  */
.member-form{
    width:50%;
    margin: auto;
    padding:20px;
    padding-bottom: 30px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.form-group{
    margin-top: 1%;
}
.form-group input{
    height:42px;
}
.form-control{
    border-radius: 0%!important;
    margin-top: 0.7%;
}
.form-control:focus{
    box-shadow: none!important;
    border: 1px solid var(--gray)!important;
}
.submit-btn{
    background-color: var(--primary)!important;
    color:var(--white)!important;
    height:42px;
}

/* contact us page  */
.conatct-grid{
    width:65%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
}
.contact-left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: var(--black);
    color: var(--white);
    padding: 20px 10px;
}
.contact-form{
    padding:20px;
    padding-bottom: 30px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.contact-icon{
    height:35px!important;
    width:35px!important;
    background-color: var(--white);
    border-radius: 50%;
    color:var(--black);
    padding-top: 9px;
}
.map{
    height:400px;
    width:100%;
}

/* donate page */
.donate-grid{
    width:60%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap:50px;
}
.donate-box{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-inline: 15px;
    height:200px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.qr{
    height:100%;
    width:100%;
}

/* admin area part start  */
.admin-left{
    height:93vh!important;
    display: flex;
    flex-direction: column;
    gap:15px;
    padding-block: 15px;
}
.admin-box{
    padding: 9px 27px;
    background-color: var(--white);
    color:var(--black);
}
.admin-top{
    margin-block: 1.5%;
}
.fa-trash{
    color:red;
}
.login{
    height:100vh;
    width:100vw;
    display: flex;
    align-items: center;
}

/* responsive part start  */
@media (max-width:1024px){
    html,body{
        overflow-x: clip!important;
    }
    .whatsapp,.pulse{
        bottom:11%;
    }
    .first-grid{
        grid-template-columns: 0.2fr 0.9fr 0.2fr;
        gap:5px;
    }
    .first-center{
        gap:110px;
    }
    .navbar-nav{
        gap:50px;
    }
    .mega-dropdown {
        width: 60%!important;
        left: 20%!important;
    }
    header{
        height:76vh;
    }
    .about-grid{
        grid-template-columns: 1fr 0.8fr;
        gap:40px;
        width:90%;
    }
    .about-right{
        gap:20px;
    }
    .work{
        gap:40px;
    }
    .work-grid,.president-grid{
        gap:20px;
    }
    .work-flex h2{
        font-size: 28px;
    }
    .footer-grid{
        grid-template-columns: repeat(2,1fr);
        row-gap: 50px;
    }
    .board-grid{
        grid-template-columns: repeat(3,1fr);
        gap:50px;
    }
    .board-image{
        height:300px;
    }
    .media-img{
        height:150px;
    }
    .conatct-grid,.donate-grid{
        width:90%;
    }
    .admin-top{
        margin-top: 3%;
    }
}

@media (max-width:768px){
    .first-grid{
        grid-template-columns: 1fr 1fr;
    }
    .first-center{
        display: none;
    }
    .navbar-toggler{
        border-radius: 0%!important;
        background-color: var(--white)!important;
    }
    .navbar-toggler:focus{
        box-shadow: none!important;
    }
    .offcanvas-body{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-grow: 0!important;
    }
    .navbar-nav{
        gap:10px;
    }
    .mega-dropdown {
        position: static!important;
        top:0px;
        left: 0%!important;
        width: 100%!important;
        grid-template-columns: 1fr;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .mega-dropdown:not(.show){
        display: none!important;
    }
    .nav-link{
        color:var(--black)!important;
    }
    .hide-nav{
        display: flex;
    }
    .first-size{
        font-size: 15px!important;
    }
    .res-first-icon{
        height:35px!important;
        width:35px!important;
        border:2px solid var(--black);
        padding-top: 8px;
        border-radius: 5px;
        margin-right: 5px;
    }
    .slide-one{
        background-position: center;
    }
    .dummy-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .about-grid,.work-grid{
        grid-template-columns: 1fr;
        gap:30px;
    }
    .about-right{
        gap:25px;
    }
    .about-image{
        height:100%;
    }
    .order1{
        order:2;
    }
    .what-grid{
        grid-template-columns: 1fr;
    }
    .testimonial-grid{
        grid-template-columns: 1fr;
        gap:10px;
    }
    .footer-grid h6{
        margin-bottom: 10%!important;
    }
    .footer-logo{
        height: 100px;
        width:100px;
        object-fit: cover;
    }
    .president-img{
        height:300px;
    }
    .board-grid,.media-grid{
        grid-template-columns: repeat(2,1fr);
        gap:40px;
    }
    .board-image{
        height:100%;
    }
    .common h4{
        margin-bottom: 2%!important;
    }
    .media-img{
        height:200px;
    }
    .member-form{
        width: 70%;
    }
    .admin-top{
        margin-top: 4%;
    }
}

@media (max-width:425px){
    .arrow-up{
        right: 3.5%;
    }
    .upper{
        display: none;
    }
    header{
        height:45vh;
    }
    .dummy-grid{
        grid-template-columns: 1fr;
    }
    .about-right h1{
        font-size: 35px;
    }
    .work{
        gap:25px;
    }
    .work-flex h2{
        font-size: 22px!important;
    }
    .work-content{
        padding-block: 20px;
        padding-inline: 15px;
        gap:20px;
    }
    .order1{
        order:0;
    }
    .footer-grid{
        grid-template-columns: 1fr;
        gap:30px;
    }
    .footer-grid h6{
        margin-bottom: 10%!important;
    }
    .footer-second{
        flex-direction: column;
        gap:30px;
    }
    .footer-logo{
        height:90px;
        width:90px;
    }
    .president-grid{
        grid-template-columns: 1fr;
    }
    .president-img{
        height: 100%;
    }
    .board-grid,.donate-grid{
        grid-template-columns: 1fr;
    }
    .media-grid{
        grid-template-columns: 1fr;
        gap:15px;
    }
    .media-img{
        height:250px;
    }
    .member-form{
        width:100%;
    }
    .conatct-grid{
        grid-template-columns: 1fr;
    }
    .contact-left{
        height:350px;
    }
    .map{
        height:280px;
    }
    .gaps{
        margin-top: 8%;
    }
    .admin-left{
        height:36vh!important;
    }
    .con-form{
        width:90%;
    }
    .res-member-form{
        width:90%!important;
    }
    .admin-top{
        margin-top: 7%;
        margin-bottom: 4%;
    }
}

@media (max-width:375px){
    header{
        height:42vh;
    }
}

