*{
    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:rgb(255, 94, 0);
    --secondary:purple;
    --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: 25px;
}
.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  */
.first{
    background-color: var(--primary);
    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:25px!important;
    width:25px!important;
    border: 2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding-top: 4px;
    margin-right: 5px;
}
.year{
    font-size: 14px;
}
nav{
    --bs-navbar-padding-y:1px!important;
}
.navbar-nav{
    gap:40px;
}
.logo{
    height:80px;
    width:80px;
}
.offcanvas-body{
    align-items: center;
}
.donate-btn{
    padding:10px 27px!important;
    background-color: var(--primary)!important;
    color:var(--white)!important;
    font-size: 15px!important;
}
.nav-link{
    font-size: 14.5px!important;
    font-weight: 500!important;
}
.dropdown-menu{
    border-radius: 0%!important;
}
.dropdown-item:focus{
    background-color: transparent!important;
    color:var(--black)!important;
}
.mega-dropdown {
    width: 580px;
    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(24px);
}
.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);
}
.d-m{
    transform: translateY(24px);
}

/* index page  */
header{
    position: relative;
    height: 84vh;
}
header .dots{
    position: absolute;
    bottom: 15px;
    z-index: 100;
}
header .dots label{
    height:15px;
    width:15px;
    border:2px solid var(--primary);
    background-color: var(--white);
    border-radius: 50%;
    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;
    transition: all 1s;
}
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.3)),url('images/7.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.slide-two{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.3)),url('images/5.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.3)),url('images/6.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.about-grid{
    width:75%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
    margin-top: 4%;
}
.about-right{
    display: flex;
    flex-direction: column;
    gap:25px;
     
    & .sub-heading{
        color:var(--primary);
        letter-spacing: 1px;
        font-weight: 700;
        font-size: 19px;
    }
    & h1{
        font-size: clamp(30px, 5vw, 42px);
    }
}
.about-image{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius: 5px;
}
.btn-one{
    position: relative;
    display: inline-block;
    height:100px;
    width:100px;
    border:2px solid var(--gray);
    border-radius: 50%;
    text-align: center;
    padding-top: 35px;
    color:var(--gray);
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
}
.btn-one::before {
    content: "";
    position: absolute;
    inset: 100% 0 0 0;
    width: auto;
    height: auto;
    background: var(--primary);
    border:2px solid var(--white);
    border-radius: 50%;
    transition: 0.5s ease;
    z-index: -1;
}
.btn-one:hover.btn-one:before{
    top:0;
}
.btn-one:hover.btn-one{
    color:var(--white);
}
.work-grid{
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    gap:70px;
}
.work-left{
    display: flex;
    flex-direction: column;
}
.work-flex{
    display: flex;
    justify-content: space-between;
    border: none;
    border-bottom: 1px dotted var(--gray);
    outline: none;
    padding-block: 25px;
    padding-inline: 5px;
    background-color: var(--white);
}
.work-img{
    background: linear-gradient(rgba(0,0,0,0.0),rgba(0,0,0,0.8) 75%),url('images/10.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:450px;
    width:100%;
    border-radius: 5px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color:var(--white);
    padding-inline: 40px;
    padding-bottom: 20px;
    gap:15px;
}
.btn-two{
    background-color: var(--white);
    padding:9px 27px;
    color: var(--black);
}
.circle{
    display: inline-block;
    height:15px!important;
    width:15px!important;
    background-color: var(--white);
    border: 2px solid var(--secondary)!important;
    border-radius: 50%;
}
.work-flex.active {
    background-color: pink;
    color: #000;
}
.aim-grid{
    width:75%;
    margin:auto;
    margin-top: 4%!important;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}
.aim-box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:12px;
    padding-inline: 15px;
    height:375px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}
.aim-box-one{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:12px;
    padding-inline: 15px;
    height:375px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background-color: var(--primary);
    color:var(--white);
    border-radius: 5px;
}
.aim-box h5{
    letter-spacing: 1px;
}
.aim-box-one h5{
    letter-spacing: 1px;
}
.aim-icon{
    height:80px;
    width:80px;
    background-color: var(--primary);
    font-size: 45px;
    border-radius: 50%;
    color:var(--white);
}
.aim-icons{
    height:80px;
    width:80px;
    background-color: var(--white);
    color:var(--primary);
    font-size: 45px;
    border-radius: 50%;
}
.horizontal-slider{
    background-color: rgb(47, 173, 47);
    padding-block: 15px;
    display: flex;
    white-space: nowrap;
    gap:35px;
    color:var(--white);
}
.sliding-group{
    display: flex;
    gap:35px;
    animation: run 10s linear infinite;
}
@keyframes run {
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    } 
}
.testimonial-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.test-header{
    display: flex;
    gap:13px;
    align-items: center;
    margin-bottom: 8%;
}
.item{
    padding: 25px;
    padding-left: 30px;
    background-color: rgb(236, 209, 158);
    clip-path: polygon(0 0, 85% 0%, 100% 15%, 100% 80%, 100% 100%, 15% 100%, 0% 85%, 0% 20%);
    border-radius: 8px;
}
.test-header h5{
    font-size: 19px;
}
.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(--primary);
}

/* 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{
    font-size: 19px;
    font-weight: 600!important;
    letter-spacing: 1px;
    margin-bottom: 8%!important;
}
.footer-top{
    margin-top: 4%;
}
.footer-top a{
    color:var(--lightgray);
}
.footer-second{
    display: flex;
    justify-content: space-between;
    gap:10px;
}

/* about page  */
.president-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:50px;
    width:75%;
    margin: auto;
    margin-top: 4%;
}
.president-img{
    height:100%;
    width:100%;
    object-fit: cover;
    background-color: var(--lightgray);
    border-radius: 5px;
}
.justify{
    text-align: justify;
}
.team-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:50px;
}
.team-grid h5{
    font-size: 18px;
}
.user-img{
    height: 100%;
    width:100%;
    object-fit: cover;
    border: 1px solid var(--lightgray);
    background-color: aliceblue;
    border-radius: 5px;
    transition: 0.5s!important;
}
.user-img:hover{
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* 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 page start  */
.contact-grid{
    width:80%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    margin-top: 4%;
    gap:25px;
}
.contact-left{
    background-color: rgb(230, 227, 227);
    padding: 25px 20px;
}
.form-flex{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
}
.contact-btn{
    background-color: var(--primary);
    color: var(--white);
    border: none;
    outline: none;
    padding: 9px 40px;
    font-size: 16px;
    margin-top: 3%;
}
.contact-right-one{
    background-color: rgb(230, 227, 227);
    padding: 25px 20px;
}
.contact-right-grid,.contact-last{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:15px;
}
.contact-right-box{
    background-color: var(--white);
    display: flex;
    align-items: center;
    padding-inline: 15px;
    padding-block: 10px;
    gap:20px;
}
.contact-right-box h6{
    font-weight: 600;
}
.contact-icon{
    font-size: 20px;
    color:var(--primary);   
}
.contact-last-box{
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding-inline: 15px;
    padding-block: 10px;
    gap:10px;
}
.contact-last-box h6{
    font-weight: 700;
}
.map{
    height:400px;
    width:100%;
}

/* donate page  */
.donate-grid{
    width:30%;
    margin: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-top: 4%;
    padding-inline: 15px;
    padding-block: 20px;
}

/* responsive part start  */
@media (max-width:1024px){
    html,body{
        overflow-x: clip!important;
    }
    .navbar-nav{
        gap:18px;
    }
    .nav-link{
        font-size: 13.5px!important;
    }
    .about-grid,.president-grid,.contact-grid{
        width:90%;
    }
    .aim-grid{
        width:90%;
        gap:10px;
    }
    .work-img{
        height: 400px;
    }
    .testimonial-grid{
        grid-template-columns: repeat(2,1fr);
    }
    .footer-grid{
        gap:10px;
    }
    .team-grid{
        gap:20px;
    }
    .media-img{
        height:150px;
    }
    .donate-grid{
        width:40%;
    }
}

@media (max-width:768px){
    .navbar-toggler{
        border-radius: 0%!important;
    }
    .navbar-toggler:focus{
        box-shadow: none!important;
    }
    .offcanvas-body{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-grow: 0!important;
    }
    .mega-dropdown {
        width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        margin: 0 !important;
        /* Disable desktop animation */
        transform: none !important;
        opacity: 1;
        visibility: visible;
    }
    .mega-dropdown:not(.show) {
        display: none !important;
    }
    .d-m{
        transform: translateY(0px);
    }
    .res-donate{
        margin-top: 5%;
    }
    .about-grid,.work-grid,.aim-grid,.president-grid{
        grid-template-columns: 1fr;
    }
    .footer-grid,.team-grid,.media-grid{
        grid-template-columns: repeat(2,1fr);
        gap:30px;
    }
    .footer-second{
        flex-direction: column;
    }
    .common h4{
        margin-bottom: 2%!important;
    }
    .member-form{
        width:70%;
    }
    .contact-grid{
        grid-template-columns: 1fr;
    }
    .donate-grid{
        width:60%;
    }
}

@media (max-width:425px){
    .first{
        display: none;
    }
    header{
        height: 50vh;
    }
    .work-img{
        height:330px;
        padding-inline: 10px;
    }
    .gaps{
        margin-top: 9%;
    }
    .aim-grid{
        gap:25px;
    }
    .aim-box,.aim-box-one{
        height:100%;
        padding-block: 25px;
    }
    .testimonial-grid,.footer-grid,.team-grid,.media-grid{
        grid-template-columns: 1fr;
    }
    .footer-second{
        gap:20px;
    }
    .media-img{
        height:250px;
    }
    .member-form,.donate-grid{
        width:90%;
    }
    .form-flex,.contact-right-grid,.contact-last{
        grid-template-columns: 1fr;
    }
    .map{
        height:300px;
    }
}

@media (max-width:375px){
    header{
        height: 45vh;
    }
}