*{
    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,h5,h6,p{
    margin-bottom: 0%!important;
}
body h1,h2,h3,h4,h5{
    font-family: "Amaranth", sans-serif;
}
:root{
    --primary:#1d5926;
    --secondary:#ffa64d;
    --white:white;
    --gray:gray;
    --lightgray:lightgray;
    --black:#222;
}
.grid{
    width:88%;
    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{
    height:100%;
    background:repeating-conic-gradient(#000 0deg 10deg, #222 10deg 20deg);
    background-size: 15px 15px;
    color:var(--white);
    padding-block: 40px;
}
.common h3{
    margin-bottom: 1%!important;    
}
.common a{
    color:var(--white);
}
.whatsapp,.pulse{
    background: #1ab744;
    height:55px;
    width:55px;
    border-radius: 50%;
    font-size: 30px;
    position: fixed;
    z-index: 99;
    bottom:10%;
    right:2%;
    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;
    }
}
.arrow{
    position: fixed;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    border:2px solid var(--primary);
    z-index: 100;
    color:var(--primary);
    bottom:3%;
    right:2.5%;
    background-color: var(--white);
}
.justify{
    text-align: justify;
}
.color{
    color:var(--secondary);
    font-family: "Amaranth", sans-serif;
}
.bg-color{
    background-color: var(--black);
    color:var(--white);
    .navbar-link{
        color:var(--white);
    }
    .navbar-link:hover{
        color:var(--secondary);
    }
    .heading{
        color:var(--secondary);
    }
    .work-grid{
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

/* navbar part start  */
nav{
    position: relative;
    padding-block: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    height:80px;
    width:80px;
    object-fit: contain;
    background-color: var(--white);
}
.navbar-menu{
    padding-left: 0%!important;
    margin-bottom: 0%!important;
    display: flex;
}
.navbar-menu li{
    padding-right: 70px;
}
.navbar-menu li:last-child{
    padding-right: 0px;
}
.navbar-link{
    font-size: 14.5px;
    color: var(--black);
}
.navbar-last{
    display: flex;
    align-items: center;
}
.bar-button{
    height:45px;
    width:45px;
    background-color: rgb(231, 231, 228);
    border: none;
    display: none;
}
.fa-bars{
    font-size: 22px;
}
.mob-wrapper{
    height:100vh;
    width:250px;
    background-color: var(--white);
    z-index: 500;
    position: fixed;
    top:0;
    left:-250px;
    padding-inline: 15px;
    padding-top: 10px;
    transition: 0.7s;
    border-right: 1px solid var(--lightgray);
}
.mob-navbar-menu{
    padding-left: 0%!important;
    margin-bottom: 0%!important;
}
.mob-navbar-menu li{
    padding-top: 20px;
}
.mob-navbar-menu li a{
    font-size: 14px;
    color:var(--black);
}
.show-navbar{
    left:0;
}
.switch {
    position: relative;
    width: 75px;
    height: 34px;
    overflow: hidden;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .5s;
    transition: .5s;
}
.slider:before {
    position: absolute;
    content: "";
    width:26px;
    height: 26px;
    left:4px;
    bottom:4px;
    border-radius: 50%;
    background-color:gold;
    box-shadow: 0 0 5px gold,
                0 0 25px gold,
                0 0 50px gold,
                0 0 100px gold;
    -webkit-transition: .5s;
    transition: .5s;
}
input:checked + .slider:before {
    -webkit-transform: translateX(40px);
    -ms-transform: translateX(40px);
    transform: translateX(40px);
    width:26px;
    height: 26px;
    left:-3px;
    bottom:4px;
    border-radius: 50%;
    background-color:transparent;
    box-shadow:5px 4px 0 0 white;
    rotate:-6deg;
}
.slider.round {
    border-radius: 34px;
    background-color: #555;
}

/* index page  */
header{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:50px;
    height: 88vh;
}
.header-left{
    margin-left: 90px;
    display: flex;
    flex-direction: column;
    gap:30px;
}
#curved-arrow {
    position: relative;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-right: 9px solid var(--secondary);
    transform: rotate(10deg);
    left:12px;
    top:5px;
}
#curved-arrow:after {
    content: "";
    position: absolute;
    border: 0 solid transparent;
    border-top: 3px solid var(--secondary);
    border-radius: 20px 0 0 0;
    top: -12px;
    left: -9px;
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
}
.header-left h6{
    color:var(--secondary);
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
.header-left h1{
    font-weight: 900;
    font-size: 60px;
}
.btn-one{
    padding:10px 27px;
    background-color: var(--primary);
    color:var(--white);
    box-shadow: 5px 5px var(--secondary);
    transition: all .6s;
}
.btn-one:hover{
    box-shadow: -5px -5px var(--secondary);
}
.header-img{
    height:100%;
    width:100%;
    object-fit: cover;
}
.counter-box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background-color: var(--primary);
    color:var(--white);
    border-radius: 5px;
}
.count{
    height:120px;
    width:120px;
    border:6px solid var(--white);
}
.count-one{
    border-left: 6px solid var(--secondary);
    border-radius: 62% 38% 53% 47% / 30% 50% 50% 70% ;
}
.count-two{
    border-left: 6px solid var(--secondary);
    border-top: 6px solid var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70% ;
}
.count-three{
    border-left: 6px solid var(--secondary);
    border-top: 6px solid var(--secondary);
    border-right: 6px solid var(--secondary);
    border-radius: 65% 35% 80% 20% / 42% 64% 36% 58% ;
}
.count-four{
    border: 6px solid var(--secondary);
    border-radius: 46% 54% 56% 44% / 49% 43% 57% 51% ;
}
.count-block{
    padding-block: 25px;
    text-align: center;
}
.count-border{
    border-right: 1px dashed var(--white);
}
.heading{
    font-size: 30px;
    font-weight: bold;
    color:var(--primary);
}
.about-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width:75%;
    margin: auto;
    margin-top: 5%;
    gap:50px;
}
.about-image{
    height: 100%;
    width: 100%;
    border-radius: 5px;
}
.work-grid{
    width:75%;
    margin: auto;
    margin-top: 5%;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.work-flex{
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap:25px;
    height: 100%;
    padding-block: 5px;
    padding-inline: 15px;
}
.work-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:20px;
}
.work-image{
    height:100%;
    width:100%;
}
.member-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:45px;
    row-gap: 60px;
}
.team-img{
    height:200px;
    width:200px;
    border-radius: 50%;
    background-color: lightgray;
    object-fit: cover;
    margin-bottom: 8%!important;
}

/* footer page  */
footer{
    background: repeating-conic-gradient(#000 0deg 30deg,#111 30deg 60deg);
    background-size: 15px 15px;
    color:var(--white);
    padding-top: 30px;
    padding-bottom: 15px;
    margin-top: 1%;
}
footer a{
    color:var(--white);
}
.footer-grid{
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap:50px;
}
.footer-sub-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
}
.footer-sub-grid h5{
    margin-bottom: 8%!important;
    font-size: 25px;
}
.footer-top{
    margin-top: 5%;
}
.footer-last-grid{
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    align-items: center;
}
.footer-social{
    display: flex;
    justify-content: end;
    gap:8px;
}
.footer-icon{
    height:36px!important;
    width:36px!important;
    border:2px solid var(--white);
    border-radius: 50%;
    padding-top: 8px;
}

/* media page  */
.media-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap:30px;
}
.media-img{
    height:100%;
    width:100%;
}

/* contact page  */
.contact-grid{
    width:75%;
    margin: auto;
    margin-top: 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap:20px;
}
.contact-left{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.contact-icon{
    height: 37px!important;
    width:37px!important;
    border:2px solid var(--black);
    color:var(--black);
    border-radius: 50%;
    padding-top: 8px;
}
.contact-icon:hover{
    background-color: var(--black);
    color:var(--white);
}
.map{
    height:400px;
    width:100%;
}

/* donate page  */
.donate-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:30px;
    width:65%;
    margin: auto;
    margin-top: 5%;
}
.donate-box{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding-inline: 15px;
    padding-block: 20px;
}

/* responsive part  */
@media (max-width:1024px){
    html,body{
        overflow-x: clip!important;
    }
    .grid,.about-grid,.work-grid,.donate-grid{
        width:90%!important;
    }
    .navbar-menu li{
        padding-right: 50px;
    }
    .header-left{
        margin-left: 50px;
    }
    .header-left h1{
        font-size: 55px;
    }
    .about-image{
        height: 300px;
        object-fit: cover;
    }
    .work-flex{
        padding-block: 20px;
    }
    .team-img{
        height:180px;
        width:180px;
    }
    .footer-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px){
    .navbar-menu,.switch{
        display: none;
    }
    .bar-button,.mob-switch{
        display: block;
    }
    header{
        grid-template-columns: 1fr;
        height:100%;
        padding-top: 35px;
    }
    .header-left{
        margin-inline: 40px;
    }
    .counter-box{
        grid-template-columns: 1fr 1fr;
    }
    .count-border{
        border-bottom: 1px dashed var(--white);
    }
    .count-border:nth-child(2){
        border-right: none;
    }
    .count-border:nth-child(3){
        border-bottom: none;
    }
    .about-grid{
        grid-template-columns: 1fr;
    }
    .about-image{
        height:100%;
    }
    .member-grid,.media-grid {
        grid-template-columns: 1fr 1fr;
        gap:30px;
    }
    .contact-grid{
        width:90%;
    }
    .work-image{
        height:100%;
        width:100%;
        object-fit: cover;
    }
}

@media (max-width:425px){
    header{
        padding-top: 50px;
    }
    .header-left{
        margin-inline: 22px;
    }
    .header-left h1{
        font-size: 40px;
    }
    .header-left h6{
        font-size: 13px;
    }
    .work-flex,.member-grid,.footer-sub-grid,.footer-last-grid,.media-grid,.contact-grid,.donate-grid{
        grid-template-columns: 1fr;
    }
    .footer-grid{
        gap:30px;
    }
    .footer-last-grid{
        gap:25px;
    }
    .footer-social{
        justify-content: start;
    }
    .map{
        height:250px;
    }
}

@media (max-width:375){
    .header-left h1{
        font-size: 35px;
    }
}


