*{  
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}
body,html{
    overflow-x: clip;
    scroll-behavior: smooth;
}
body h1,h2,h3,h4,h5{
    font-family: "Bricolage Grotesque", sans-serif;
}
body h1,h2,h3,h4,h5,h6,p{
    margin-bottom: 0%!important;
}
body a{
    text-decoration: none;
}
body li{
    list-style: none;
}
:root{
    --primary:#EB4429;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
    --black:#222;
}
.grid{
    width:90%;
    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;
}
.gap{
    margin-top: 5%;
}
.common{
    background:repeating-conic-gradient(#000 7deg 15deg, #111 15deg 30deg);
    background-size: 8px 8px;
    padding-block: 35px;
    color:var(--white);
}
.common h4{
    margin-bottom: 0.7%!important;
}
.common a{
    color:var(--white);
}
.justify{
    text-align: justify;
}
.color{
    color:var(--primary);
}
.arrow-up{
    display: none;
    position: absolute;
    border: 2px solid var(--primary);
    height:35px;
    width:35px;
    background-color: var(--white);
    border-radius: 50%;
    color:var(--primary);
    bottom:3%;
    right:2%;
    position: fixed;
    z-index: 99;
}
.whatsapp,.pulse{
    background: #1ab744;
    height:55px;
    width:55px;
    border-radius: 50%;
    font-size: 30px;
    position: fixed;
    z-index: 99;
    bottom:10%;
    right:1.5%;
    color: var(--white);
    text-align: center;
    padding-top: 5px;
}
.pulse:nth-child(1){
    animation: pulse 2s infinite;
}
.pulse:nth-child(2){
    animation: pulse 2s infinite .3s;
}
.pulse:nth-child(2){
    animation: pulse 2s infinite .6s;
}
@keyframes pulse{
    0%{
        transform: scale(.1);
        opacity: 0;
    }
    50%{
        opacity: .3;
    }
    100%{
        transform: scale(1.6);
        opacity: 0;
    }
}

/* navbar part  */
.first{
    background:linear-gradient(to right,var(--primary),var(--black));
    color:var(--white);
    padding-block: 2px;
}
.first-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.first-grid{
    display: flex;
    gap:30px;
    font-size: 13.5px;
}
.first-grid a{
    color:var(--white);
}
.first-icon{
    height:27px!important;
    width:27px!important;
    border: 2px solid var(--white);
    border-radius: 50%;
    color:var(--white);
    padding-top: 5.5px;
    margin-right: 5px;
}
.year{
    font-size: 13.5px;
}
.second{
    display: flex;
    align-items: center;
    padding-block: 5px;
    gap:20px;
}
.logo{
    height:85px;
    width:85px;
    object-fit: contain;
}
.second h1{
    font-size: 60px;
}
.txt{
    width: 0ch;
    overflow: hidden;
    white-space: nowrap;
    animation: walking 5s linear infinite;
    font-weight: 800;
    background: linear-gradient(90deg,var(--primary), var(--black));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}
@keyframes walking {
    0%{
        width: 0ch;
    }
    100%{
        width: 35ch;
    }
}
nav{
    background-color: var(--black);
    --bs-navbar-padding-y:3px!important;
}
.wrapper{
    width:90%!important;
}
.nav-link {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color:var(--white)!important;
}
.nav-link:hover{
    color:var(--lightgray)!important;
}
.navbar-nav{
    gap:50px;
    align-items: center;
}
.dropdown-menu{
    border-radius: 0%!important;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: .5s!important;
    border-bottom: 4px solid var(--primary)!important;
}
.dropdown:hover .dropdown-menu{
    transform: translateY(2px);
    opacity: 1;
    visibility: visible;
}
.dropdown-item{
    font-size: 15px;
    font-weight: 500!important;
}
.dropdown-item:hover{
    background-color: transparent!important;
    color:var(--black)!important;
}
.donate{
    padding:10px 27px!important;
    background-color: var(--primary)!important;
    color:var(--white)!important;
}
.hide-nav{
    display: none;
}

/* index page  */
.home-1{
    background: linear-gradient( to top,rgba(0, 0, 0, 0.6) 5%, rgba(0, 0, 0, 0) 100%),url('images/4.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:600px;
    color:var(--white);
}
.home-2{
    background: linear-gradient(to top,rgba(0, 0, 0, 0.6) 5%,rgba(0, 0, 0, 0.0) 100%),url('images/9.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:600px;
    color:var(--white);
}
.home-3{
    background: linear-gradient(to top,rgba(0, 0, 0, 0.6) 5%,rgba(0, 0, 0, 0.0) 100%),url('images/3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height:600px;
    color:var(--white);
}
.carousel-caption h1{
    font-size: 50px;
    margin-bottom: 1.5%!important;
}
.btn-grp{
    display: flex;
    justify-content: center;
    gap:20px;
    margin-top: 2.5%;
}
.btn-one{
    padding:10px 27px;
    background-color: var(--primary);
    color:var(--white);
}
.btn-two{
    padding:10px 27px;
    background-color: var(--primary);
    color:var(--white);
}
.heading{
    padding:9px 27px;
    background-color: #e4aaa2;
    color:var(--black);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.heading-one{
    padding:9px 27px;
    background-color: var(--white);
    color:var(--black);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:50px;
}
.about-img-flex{
    display: flex;
}
.about-img{
    height:100%;
    width:100%;
    object-fit: cover;
    margin-left: 10%;
    transform: rotate(-7deg);
    border:8px solid var(--white);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.about-img-one{
    height:250px;
    width:250px;
    object-fit: cover;
    border:8px solid var(--white);
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    transform: rotate(10deg);
    margin-left: -35%;
}
.about-img-last{
    display: flex;
    align-items: end;
}
.aim{
    display: flex;
    flex-direction: column;
    gap:20px;
}
.aim-grid{
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    gap:5px;
}
.aim-grid h5{
    font-size: 22px;
    font-weight: 600;
}
.aim-icon{
    display: flex;
    align-items: center;
    justify-content: start;
}
.fa-lightbulb,.fa-heart,.fa-bullseye{
    font-size: 50px;
}
.btn-three{
    padding: 11px 27px;
    background: linear-gradient(90deg,var(--primary), var(--black));
    color:var(--white)!important;
}
.color-one{
    color: rgb(230, 203, 53);
}
.color-two{
    color: green;
}
.counter-section{
    background: linear-gradient( rgba(219, 134, 95, 0.9),rgba(219, 134, 95, 0.9)),url('images/11.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-block: 50px;
}
.counter-grid{
    width:70%;
    margin: auto;
    margin-top: 3%;
    gap:25px;
}
.counter-grid > *{
    font-weight: 800;
}
.counter-grid h2{
    font-size: 43px;
}
.counter-grid h1{
    font-size: 150px;
    color:var(--white);
    letter-spacing: 2px;
}
.counter-grid h3{
    font-size: 30px;
}
.counter-sub-grid{
    width:70%;
    margin: auto;
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.border-right{
    border-right: 1px solid var(--black);
}
.counter-sub-grid h3{
    font-size: 60px;
    font-weight: 700;
}
.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);
}
.work-icon i{
    font-size: 40px;
}
.work-btn{
    border: none;
    background-color: transparent;
}
.work-btn.active .work-flex > * {
    color: var(--black);
}
.volunteer-box {
    background-color: rgba(0, 255, 255, 0.2);
    border-radius: 8px;
}
.volunteer{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.volunteer p {
    margin-top: 2%!important;
    margin-bottom: 4%!important;
}
.volunteer-one {
    position: relative;
    overflow: hidden;
}
.volunteer-one:before {
    position: absolute;
    content: "";
    height: 300px;
    width: 300px;
    background: linear-gradient(to right, var(--primary), var(--black));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 96px;
    left: 30px;
    z-index: -1;
}
.carousel-grid{
    display: grid!important;
    grid-template-columns: 0.6fr 1fr!important;
    gap:50px;
    padding-inline: 170px;
}
.user{
    height:350px;
    width:100%;
    object-fit: cover;
    background-color: var(--lightgray);
    border-radius: 5px;
}
.testimonial{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.fa-quote-right{
    font-size: 50px;
}
.testimonial-content{ 
    font-size: 20px;
    margin-top: 6%;
    margin-bottom: 6%!important;
}
.black{
    color: var(--black)!important;
}
.testimonial-name h5{
    font-weight: 700;
    font-size: 18px;
}

/* footer page  */
footer{
    background: repeating-conic-gradient(#000 23deg 46deg, #111 46deg 82deg);
    background-size: 13px 13px;
    color:var(--white);
    padding-top: 50px;
    padding-bottom: 15px;
}
footer a{
    color:var(--white);
}
footer h5{
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 6%!important;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:60px;
}
.footer-icon{
    border:2px solid var(--white);
    border-radius: 50%;
    padding:7px;
    color:var(--white);
}
.footer-center{
    padding-left: 80px;
}

/* about us page  */
.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;
}
.cards{
    border:1px solid var(--lightgray);
    transition: 1s;
}
.team-img{
    height:270px;
    width:270px;
    object-fit: cover;
    background-color: rgb(231, 231, 210);
    border-bottom: 5px solid var(--primary);
}
.cards:hover{
    transform: translateY(-10px);
}
.card-content{
    padding-block: 15px;
}

/* media page  */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.media-img{
    height: 100%;
    width:100%;
    object-fit: cover;
    cursor: pointer;
}
.img-modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}
.large-img{
    height:80vh;
    width:80vw;
    object-fit: cover;
}

/* upcoming projects  */
.upcoming-grid{
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    width:70%;
    margin: auto;
    gap:50px;
    margin-top: 5%;
}
.project-img{
    height:100%;
    width:100%;
    object-fit: cover;
    border-radius: 7px;
}
.alter-grid{
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    width:70%;
    margin: auto;
    gap:50px;
    margin-top: 5%;
}

/* get involved part  */
.member-form{
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    width:40%;
    margin: auto;
    padding:20px 20px;
}

/* contact page  */
.contact-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:50px;
}
.contact-icon{
    height:60px!important;
    width:60px!important;
    background-color: var(--lightgray);
    border-radius: 50%;
    font-size: 25px;
    padding-top: 18px;
}
.contact-info{
    display: flex;
    flex-direction: column;
    gap:15px;
    padding: 20px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.contact-info:hover{
    background-color: var(--primary);
    color:var(--white);
}
.contact-info:hover .contact-icon{
    background-color: var(--black);
}
.form-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:40px;
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap:13px;
    margin-top: 4%;
}
.get{
    font-weight: 700;
    margin-bottom: 2%!important;
}
.form-control{
    border-radius: 0%!important;
}
.form-control:focus{
    box-shadow: none!important;
    border:1px solid var(--lightgray)!important;
}
.contact-btn{
    padding: 11px 27px;
    background: linear-gradient(90deg,var(--primary), var(--black));
    color:var(--white)!important;
}
.map{
    height:100%;
    width:100%;
}

/* donate page  */
.donate-grid{
    width:70%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap:50px;
    margin-top: 4%;
}
.qr{
    height:100%;
    width:100%;
    object-fit: cover;
}

/* admin area part  */
.login{
    height:100vh;
    width:100vw;
    display: flex;
    justify-content: center;
}
.dashboard{
    background-color: var(--primary);
    color: var(--white);
    height:5vh;
    padding-inline: 10px;
    display: flex;
    align-items: center;
}
.admin{
    display: grid;
    grid-template-columns: 0.3fr 1fr;
}
.admin-box{
    padding:9px 27px;
    background-color: var(--white);
}
.admin-box a{
    color:var(--black)!important;
}
.admin-left{
    background-color: var(--black);
    height:95vh;
    display: flex;
    flex-direction: column;
    gap:10px;
    padding-block: 10px;
}
.admin-right{
    padding-inline: 30px!important;
}
.admin-contact-form{
    width:55%;
    margin: auto;
    padding-block: 20px;
    padding-inline: 15px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}


/* responsive part  */
@media (max-width:1024px){
    html,body{
        overflow-x: clip!important;
    }
    .txt{
        font-size: 40px!important;
    }
    .nav-link {
        font-size: 12px !important;
    }
    .navbar-nav{
        gap:15px;
    }
    .home-1,.home-2,.home-3{
        height:510px;
    }
    .carousel-caption h1{
        font-size: 43px;
    }
    .about-img{
        height:90%;
        width:100%;
        margin-left: 20%;
        transform: rotate(-10deg);
    }
    .about-img-one{
        height:200px;
        width:200px;
    }
    .work-flex h2{
        font-size: 30px!important;
    }
    .carousel-grid{
        gap:30px;
        padding-inline: 100px;
    }
    .user{
        height:300px;
    }
    footer h5{
        margin-bottom: 10%!important;
    }
    .footer-center{
        padding-left: 20px;
    }
    .president-img{
        height:300px;
    }
    .team-img{
        height:190px;
        width:190px;
    }
    .upcoming-grid,.alter-grid{
        width:90%;
    }
    .member-form{
        width:60%;
    }
    .contact-grid{
        gap:20px;
    }
}

@media (max-width:768px){
    .txt{
        font-size: 28px!important;
    }
    nav{
        padding-block: 5px!important;
    }
    .navbar-toggler{
        background-color: var(--white)!important;
        border-radius: 0%!important;
    }
    .navbar-toggler:focus{
        box-shadow: none!important;
        outline: none!important;
    }
    .nav-link{
        color:var(--black)!important;
    }
    .nav-link {
        font-size: 14px !important;
    }
    .navbar-nav{
        gap:12px;
        align-items: flex-start!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;
    }
    .carousel-caption h1{
        font-size: 35px;
    }
    .about-grid{
        grid-template-columns: 1fr;
        margin-top: 9%;
        gap:80px;
    }
    .about-img{
        height:100%;
        width:100%;
        margin-left: 5%;
        transform: rotate(-5deg);
    }
    .about-img-one{
        height:270px;
        width:270px;
    }
    .counter-grid{
        width:90%;
        margin-top: 4%;
    }
    .counter-sub-grid,.donate-grid{
        width:90%;
    }
    .work-grid{
        gap:20px;
    }
    .work-flex h2{
        font-size: 20px!important;
    }
    .work-content{
        padding-block: 20px;
        padding-inline: 15px;
        gap:20px;
    }
    .work-icon{
        height:60px;
        width:60px;
    }
    .work-icon i{
        font-size: 30px;
    }
    .volunteer p{
        font-size: 15px;
        margin-bottom: 5%!important;
    }
    .testimonial-content{
        font-size: 16px;
    }
    .carousel-grid{
        gap:30px;
        padding-inline: 80px;
    }
    .user{
        height:230px;
    }
    .fa-quote-right{
        font-size: 30px;
    }
    .footer-grid{
        grid-template-columns: 1fr 1fr;
    }
    .common h4{
        margin-bottom: 1.5%!important;
    }
    .president-grid,.board-grid{
        gap:30px;
    }
    .president-img{
        height:250px;
    }
    .board-grid{
        grid-template-columns: repeat(3,1fr);
    }
    .project-img{
        height:230px;
        object-fit: cover;
    }
    .admin-contact-form{
        width:90%;
    }
}

@media (max-width:425px){
    .arrow-up{
        right:4%;
    }
    .whatsapp,.pulse{
        right:2.5%;
    }
    .common h4{
        margin-bottom: 2%!important;
    }
    .first,.carousel-caption,.about-img-one{
        display: none;
    }
    .second{
        flex-direction: column;
        justify-content: center;
        gap:6px;
    }
    .txt{
        font-size: 17px!important;
        text-align: center;
    }
    .home-1,.home-2,.home-3{
        height:300px;
    }
    .home-1{
        background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)),url('images/4.jpeg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .home-2{
        background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)),url('images/9.jpeg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .home-3{
        background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)),url('images/3.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .gap{
        margin-top: 8%;
    }
    .about-grid{
        margin-top: 12%;
        gap:40px;
    }
    .about-img{
        height:100%;
        width:90%;
    }
    .fa-lightbulb,.fa-heart,.fa-bullseye{
        font-size: 40px;
    }
    .counter-grid h2{
        font-size: 38px;
    }
    .counter-grid h1{
        font-size: 90px;
    }
    .counter-grid h3{
        font-size: 25px;
    }
    .counter-sub-grid{
        grid-template-columns: 1fr;
        gap:30px;
    }
    .border-right{
        border: none;
    }
    .work-grid,.footer-grid,.president-grid,.board-grid,.media-grid,.upcoming-grid,.alter-grid,.contact-grid,.form-grid,.donate-grid{
        grid-template-columns: 1fr;
    }
    .work-flex h2{
        font-size: 25px!important;
    }
    .volunteer{
        padding-block: 25px;
        margin-bottom: 7%;
    }
    .volunteer-one:before {
        top: 120px;
        left: 50px;
    }
    .c-inner{
        padding-block: 20px;
    }
    .carousel-grid{
        grid-template-columns: 1fr!important;
        padding-inline: 50px;
    }
    .user{
        height:300px;
    }
    .footer-center{
        padding-left: 0px;
    }
    footer h5{
        margin-bottom: 6%!important;
    }
    .president-img{
        height:100%;
    }
    .team-img{
        height:270px;
        width:270px;
    }
    .order1{
        order: 1;
    }
    .order2{
        order: 2;
    }
    .member-form{
        width: 90%;
    }
    .map{
        height: 270px;
    }
    .admin-left{
        height:35vh;
        justify-content: center;
    }
    .admin-bottom{
        margin-bottom: 5%;
    }
    .admin-contact-form{
        width:100%;
    }
}

@media (max-width:375px){
    .home-1,.home-2,.home-3{
        height:270px;
    }
    .about-img{
        width:94%;
    }
    .aim-grid{
        gap:20px;
    }
    .counter-grid h1{
        font-size: 80px;
    }
}


