*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body {
    scroll-behavior: smooth;
    overflow-x: clip!important;
}
body a{
    text-decoration: none;
}
body li{
    list-style: none ;
}
body h1,h2,h3,h4,h4,h5,h6,p{
    margin-bottom: 0%!important;
}
body h1,h2,h3,h4,h5{
    font-family: "Quicksand", sans-serif;
}
:root{
    --primary:#da9824;
    --black:#222;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-column{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.grid{
    width:88%;
    margin: auto;
}
.gap{
    margin-top: 5%;
}
.common{
    background: repeating-conic-gradient(#000 0deg 15deg, #111 15deg 30deg);
    background-size: 15px 15px;
    height:150px;
    color: var(--white);
    display: flex;
    justify-content: center;
}
.common h4{
    font-weight: 800;
    margin-bottom: 1%!important;
}
.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%;
   right:2.4%;
   z-index: 999;
}

/* navbar part start  */
.first{
    background-color: var(--black);
    color:var(--white);
    padding-block: 2px;
    display: flex;
    justify-content: center;
}
.first-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.first-grid{
    display: flex;
    gap:30px;
    font-size: 14px;
}
.first-grid a{
    color:var(--white);
}
.first-icon{
    height:28px!important;
    width:28px!important;
    border: 2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding-top: 5px;
    margin-right: 5px;
}
.nav-icon{
    font-size: 14px;
}
nav{
    --bs-navbar-padding-y: 0rem!important;
    --bs-navbar-brand-padding-y: 0rem!important;
    padding-block: 2px!important;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.wrapper{
    width:88%!important;
    padding:0!important;
}
.logo{
    height:85px;
    width:85px;
    object-fit: cover;
}
.nav-item{
    padding-right: 50px;
}
.nav-item:last-child{
    padding-right: 0px;
}
.nav-link{
    font-size: 14px!important;
    font-weight: 500!important;
    color:var(--black)!important;
}
.navbar-nav{
    padding: 0!important;
}
.dropdown{
    position: relative;
}
.dropdown-menu{
    position: absolute;
    left:0;
    top:100px!important;
    transition: 0.5s;
    border-radius: 0%!important;
    opacity: 0;
    visibility: hidden;
}
.dropdown:hover .dropdown-menu{
    top:60px!important;
    opacity: 1;
    visibility: visible;
}
.dropdown-item:focus{
    background-color: transparent!important;
    color:var(--black)!important;   
}
.offcanvas-body{
    align-items: center;
}
.contact-btn{
    font-size: 14px;
    font-weight: 500;
    color:var(--white);
    padding: 11px 27px;
    background-color: var(--black);
}
.hide-link a{
    font-size: 16px!important;
}
.hide-icon{
    height:30px!important;
    width:30px!important;
    border:2px solid #444;
    padding-top: 5px;
    border-radius: 5px;
    margin-right: 8px;
}
.hide-link{
    display: none;
}

/* index page  */
.header{
    position: relative;
    height:84.5vh;
}
.dots{
    position: absolute;
    bottom: 10px;
}
.dots label{
    height:15px;
    width:15px;
    background-color: var(--white);
    border-radius: 50%;
    margin: 0 2px;
    opacity: 0.5;
    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: 1;
    border:1px solid var(--primary);
}
.header input{
    display: none;
}
.slides{
    height:100%;
    width: 100%;
    display: flex;
}
 .slide{
    height:100%;
    width: 100%;
    display:none;
    color:var(--white);
}
#s1:checked ~ .slides .slide1{
    display:block;
}
#s2:checked ~ .slides .slide2{
    display:block;
}
#s3:checked ~ .slides .slide3{
    display:block;
}
.slide1{
    background:linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/5.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide2{
    background:linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide3{
    background:linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.0)),url('images/3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.heading{
    font-weight: 900;
    font-size: 28px;
}
.about-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width:70%;
    margin: auto;
    margin-top: 4%;
    gap:50px;
}
.about-image{
    height:350px;
    width:100%;
    object-fit: cover;
    border-radius: 5px;
}
.about-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:20px;
}
.about-right h2{
    font-size: 40px;
    font-weight: 800;
}
.about-right small{
    color:var(--primary);
    font-weight: 500;
}
.btn-one{
    padding:11px 27px;
    background-color: var(--primary);
    color:var(--white);
}
.work-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.work-left{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.work-box{
   display: flex;
   flex-direction: column;
   gap:10px; 
}
.work-box h5{
    font-weight: 800;
}
.work-icon{
    height:60px;
    width:60px;
    background-color: var(--primary);
    font-size: 20px;
    border-radius: 5px;
    color:var(--white);
    margin-bottom: 2%!important;
}
.work-image{
    height:500px;
    width:100%;
    object-fit: cover;
}
.work-end{
    align-items: end;
    text-align: right;
}
.color{
    color:var(--primary);
}
.counter{
    background-color: var(--primary);
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
    height:100%;
    padding-block: 40px;
    padding-inline: 20px;
    border-radius: 5px;
}
.counter-sub-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:10px;
    justify-content: center;
    align-items: center;
    color: var(--white);
}
.counter-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.counter-icon{
    height:80px;
    width:80px;
    font-size: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border:2px dotted var(--lightgray);
}
.counter-icon i{
    color:var(--white);
}
.counter-center h3{
    margin-bottom: 6%!important;
    font-size: 35px;
    font-weight: 700;
}
.aim-grid{
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap:50px;
}
.aim-image{
    height:425px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.aim-box{
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    gap:15px;
    border: 1px solid var(--lightgray);
    padding: 10px;
}
.aim-icon{
    font-size: 25px;
    position: relative;
    color: var(--white);
}
.aim-icon::before{
    position: absolute;
    content: "";
    height:65px;
    width:65px;
    background-color: var(--primary);
    border-radius: 5px;
    transform: rotate(45deg);
    z-index: -1;
}
.aim-box-right h4{
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 2%!important;
}
.aim-box-top{
    margin-top: 3%;
}
.testimonial-grid{
   display: grid;
   grid-template-columns: repeat(3,1fr); 
   gap:40px;
   width:80%;
   margin: auto;
   margin-top: 5%;
}
.testimonial-content{
    display: flex;
    gap:30px;
    background-color: rgb(240, 236, 236);
    padding-block: 20px;
    padding-inline: 30px;
}
.user-img{
    height:100px;
    width:100px;
    border-radius: 50%;
    background-color: var(--black);
    object-fit: contain;
}
.textimonial-header h5{
    font-weight: 600;
    font-size: 19px;
    margin-bottom: 7%!important;
}
.textimonial-header p{
    color:var(--primary);
}


/* about page start  */
.aboutPage-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:50px;
    width:75%;
    margin: auto;
    margin-top: 4%;
}
.aboutPage-image{
    border-radius: 5px;
}
.team-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:50px;
}
.team-img{
    height:250px;
    width:250px;
    background-color: var(--lightgray);
    object-fit: cover;
    margin-bottom: 5%;
}
.team-text{
    text-align: center;
}
.team-text h5{
    margin-bottom: 4%!important;
    font-size: 18px;
    font-weight: 800;
}
.president-grid{
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap:60px;
}
.president-grid h5{
    font-weight: 700;
    margin-bottom: 1%!important;
}
.president-image{
    height:450px;
    width:100%;
    object-fit: cover;
    background-color: var(--lightgray);
}

/* our work part start  */
.education-part{
    margin-top: 3%;
}
.education-part h5{
    font-size: 23px;
    font-weight: 900;
}

/* member part start */
.member-grid{
    width:40%;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    margin-top: 4%;
    padding:20px 15px;
}
.form-control{
    border-radius: 0%!important;
}
.form-control:focus{
    box-shadow: none!important;
    border: 1px solid var(--lightgray)!important;
}
.submit-btn{
    background-color: var(--primary)!important;
    color:var(--white)!important;
}

/* contact us page start  */
.contact-grid{
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap:20px;
    width:75%;
    margin: auto;
    margin-top: 5%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-block: 15px;
    padding-inline: 15px;
    border-radius: 5px;
}
.contact-sub-grid{
    margin-top: 5%;
}
.contact-left{
    background-color: var(--primary);
    padding-block: 20px;
    padding-inline: 10px;
    color:var(--white);
    border-radius: 5px;
}
.contact-left h5{
    font-size: 25px;
    font-weight: 700;
}
.map{
    height:250px;
    width:100%;
    border-radius: 5px;
}
.contact-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: 25px;
}
.contact-right h5{
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 4%!important;
}
.form-group{
    margin-top: 2%;
}
.form-control{
    margin-top: 1%;
}
.form .form-control{
    border-radius:.0%!important;
}
.form .form-control:focus{
    box-shadow: none;
    border: 1px solid var(--lightgray);
}
.contact-btn{
    background-color: var(--primary)!important;
    color:var(--white)!important;
}

/* donate page start  */
.donate-grid{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 30%;
    margin: auto;
    padding-block: 30px;
    padding-inline: 15px;
    margin-top: 5%;
}
.donate-grid h5{
    font-weight: 700;
    margin-bottom: 5%;
}

/* media part start  */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:20px;
}
.modal{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.8);
}
#full-img{
    width:90%;
    height:90%;
    object-fit: cover;
}

/* footer part start  */
footer{
    margin-top: 2%;
    background: repeating-conic-gradient(#000 0deg 37deg, #111 37deg 57deg);
    background-size: 15px 15px;
    color:var(--white);
    padding-top: 30px;
    padding-bottom: 20px;
}
footer a{
    color:var(--white);
}
.footer-grid{
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 0.7fr 0.7fr 1fr;
    gap:20px;
}
.footer-one h5{
    font-weight: 800;
    margin-bottom: 10%!important;
}
.footer-top{
    margin-top: 4%;
}
.footer-two h5{
    font-weight: 800;
    margin-bottom: 6.5%!important;
}
.footer-second-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 2%;
    border:1px solid var(--gray);
    border-left: none;
    border-right: none;
    padding-block: 25px;
}
.footer-second{
    display: flex;
    justify-content: space-between;
    padding: 8px;
}
.fa-arrow-right-long{
    background-color: var(--white);
    height:25px!important;
    width:25px!important;
    padding-top: 7px;
    transform: rotate(-30deg);
    font-size: 13px;
    border-radius: 50%;
    color:var(--black);
    margin-left: 5px;
    margin-bottom: 0%!important;
}
.footer-bg-one{
    background-color: #3b5998;
}
.footer-bg-two{
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}
.footer-bg-three{
    background-color:black;
}
.footer-bg-four{
    background-color:red;
}

/* responsive part start */
@media (max-width:1024px){
    .over-clip{
        overflow-x: clip;
    }
    .grid,.wrapper{
        width:90%!important;
    }
    .nav-item{
        padding-right: 18px;
    }
    .nav-item:last-child{
        padding-right: 0px;
    }
    .header{
        position: relative;
        height:83vh;
    }
    .about-grid{
        width:75%;
        gap:30px;
    }
    .about-right h2{
        font-size: 40px;
    }
    .about-image{
        height:400px;
    }
    .counter{
        grid-template-columns: repeat(2,1fr);
        padding-block: 20px ;
    }
    .counter-sub-grid{
        grid-template-columns: 0.3fr 1fr;
    }
    .work-grid{
        gap:10px;
        height:420px;
    }
    .work-icon{
        height:50px;
        width:50px;
    }
    .work-image{
        height:100%;
    }
    .aim-grid{
        grid-template-columns: 0.7fr 1fr;
        gap:20px;
        margin-top: 10%;
    }
    .aim-image{
        height:100%;
    }
    .aim-icon{
        font-size: 20px;
    }
    .aim-icon::before{
        height:55px;
        width:55px;
    }
    .aim-box-right h4{
        font-size: 19px;
    }
    .testimonial-grid{
        width:90%;
        gap:15px;
    }
    .testimonial-content{
        gap:25px;
        padding-inline: 20px;
    }
    footer{
        padding-top: 20px;
        padding-bottom: 15px;
    }
    .footer-grid{
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-one h5{
        margin-bottom: 8%!important;
        margin-top: 5%;
    }
    .footer-two h5{
        margin-bottom: 7%!important;
        margin-top: 8%;
    }
    .team-grid{
        gap:20px;
    }
    .team-img{
        height:200px;
        width:200px;
    }
    .member-grid{
        width:50%!important;
    }
    .contact-grid{
        width:90%;
    }
    .donate-grid{
        width:40%;
    }
}

@media (max-width:768px){
    .navbar-toggler{
        border-radius: 0%!important;
    }
    .navbar-toggler:focus{
        box-shadow: none!important;
    }
    .donate-top{
        margin-top: 7%;
    }
    .about-grid{
        width:90%;
    }
    .about-right h2{
        font-size: 35px;
    }
    .about-image{
        height:100%;
    }
    .counter-sub-grid{
        grid-template-columns: 0.5fr 1fr;
    }
    .work-grid{
        grid-template-columns: 1fr;
        height:100%;
        padding-block: 5px;
    }
    .work-left{
        flex-direction: row;
        gap:30px;
    }
    .work-box{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .work-icon{
        height:60px;
        width:60px;
        font-size: 20px;
    }
    .aim-grid,.president-grid{
        grid-template-columns: 1fr;
    }
    .testimonial-grid,.media-grid{
        grid-template-columns: 1fr 1fr;
    }
    .team-grid{
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }
    .president-image{
        height:100%;
        width:100%;
    }
    .common h4{
        margin-bottom: 2.5%!important;
    }
    .member-grid{
        width:60%!important;
    }
    .contact-grid{
        grid-template-columns: 1fr;
    }
    .map{
        height:350px;
        margin-top: 4%;
    }
    .donate-grid{
        width:50%;
    }
}

@media (max-width:425px){
    .first{
        display: none;
    }
    .hide-link{
        display: block;
    }
    .header{
        height:50vh;
    }
    .about-grid,.counter,.testimonial-grid,.aboutPage-grid{
        grid-template-columns: 1fr;
    }
    .order1{
        order: 2;
    }
    .gap{
        margin-top: 7%;
    }
    .counter{
        row-gap:30px;
    }
    .counter-center h3{
        font-size: 25px;
    }
    .counter-sub-grid{
        grid-template-columns: 0.4fr 1fr;
    }
    .work-left{
        flex-direction: column;
        margin-top: 5%;
    }
    .aim-box{
        grid-template-columns: 1fr;
        gap:50px;
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .aim-box-right{
        text-align: center;
    }
    .president-grid h5{
        margin-bottom: 4%!important;
    }
    .footer-grid{
        grid-template-columns: 1fr;
    }
    .footer-one h5{
        margin-bottom: 7%!important;
        margin-top: 5%;
    }
    .footer-two h5{
        margin-bottom: 6%!important;
        margin-top: 4%;
    }
    .footer-second-grid{
        grid-template-columns: 1fr 1fr;
        gap:10px;
    }
    .team-grid,.media-grid{
        grid-template-columns: 1fr;
    }
    .team-img{
        height:250px;
        width:250px;
    }
    .education-part{
        margin-top: 7%;
    }
    .common h4{
        margin-bottom: 4%!important;
    }
    .member-grid,.donate-grid{
        width:90%!important;
    }
    .map{
        height:200px;
    }
}

@media (max-width:375px){
    .header{
        height:40vh;
    }
    .about-right h2{
        font-size: 30px;
    }
    .counter-sub-grid{
        grid-template-columns: 0.5fr 1fr;
    }
}
