*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:#f5f7f5;

color:#222;

overflow-x:hidden;

}
/* NAVBAR */

header{

position:fixed;

top:0;

width:100%;

z-index:1000;

background:rgba(0,0,0,0.45);

backdrop-filter:blur(12px);

}

.navbar{

width:90%;

margin:auto;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 0;

}

.logo-section{

display:flex;

align-items:center;

gap:12px;

}

.logo{

width:60px;

height:60px;

border-radius:50%;

}

.logo-section h2{

color:white;

font-size:28px;

}

.nav-links{

display:flex;

list-style:none;

gap:30px;

}

.nav-links a{

color:white;

text-decoration:none;

font-size:15px;

transition:.3s;

font-weight:500;

}

.nav-links a:hover{

color:#39b54a;

}

.mobile-menu{

display:none;

color:white;

font-size:28px;

cursor:pointer;

}
.about-hero{

height:60vh;

background:

linear-gradient(
rgba(0,0,0,.65),
rgba(0,0,0,.65)
),

url(images/about1.png);

background-size:cover;

background-position:center;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

color:white;

}

.overlay h1{

font-size:60px;

margin-bottom:20px;

}

.overlay p{

font-size:20px;

}

.about-main{

padding:100px 5%;

display:grid;

grid-template-columns:1fr 1fr;

gap:35px;

}

.about-card{

background:white;

padding:40px;

border-radius:25px;

box-shadow:

0 8px 25px rgba(0,0,0,.08);

}

.about-card h2{

color:#145624;

margin-bottom:20px;

}

.about-card p{

line-height:1.9;

margin-bottom:15px;

}

.about-card ul{

padding-left:25px;

line-height:2;

}

.values{

padding:100px 5%;

background:#eef5ef;

text-align:center;

}

.values h2{

font-size:42px;

margin-bottom:50px;

}

.values-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.value-box{

background:white;

padding:40px;

border-radius:25px;

}

.value-box i{

font-size:45px;

color:#1b7d32;

margin-bottom:20px;

}

.services{

padding:100px 5%;

}

.services h2{

text-align:center;

margin-bottom:50px;

}

.service-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(280px,1fr));

gap:30px;

}

.service-card{

background:white;

padding:35px;

border-radius:25px;

box-shadow:

0 5px 20px rgba(0,0,0,.08);

}

.mission{

padding:100px 5%;

background:#145624;

color:white;

text-align:center;

}

.mission h2{

margin-bottom:25px;

}

.mission p{

max-width:900px;

margin:auto;

line-height:2;

margin-bottom:15px;

}

.help{

padding:100px 5%;

text-align:center;

}

.help-grid{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin:50px 0;

}

.help-grid div{

background:white;

padding:30px;

border-radius:20px;

box-shadow:

0 5px 20px rgba(0,0,0,.08);

}

.help h3{

color:#1b7d32;

font-size:34px;

}

@media(max-width:900px){

.about-main{

grid-template-columns:1fr;

}

.overlay h1{

font-size:42px;

}

}
/* FOOTER */

footer{

   background:linear-gradient(
        135deg,
        #0b4d1d,
        #145624,
        #1b7d32
    );
    border-top:4px solid #FFD54F;

padding:60px 8%;

display:flex;

justify-content:space-between;

flex-wrap:wrap;

color:white;

}

.footer-links{

display:flex;

flex-direction:column;

gap:12px;

}

.footer-links a{

color:white;

text-decoration:none;

}

.footer-logo{

text-align:right;

}

.footer-logo img{

width:90px;

margin-bottom:15px;

}

.socials{

margin-top:15px;

}

.socials i{

margin-left:15px;

font-size:22px;

cursor:pointer;

}
.mobile-nav-active{
display:flex !important;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#082111;
padding:20px 0;
gap:0;
}

.mobile-nav-active li{
width:100%;
text-align:center;
padding:15px 0;
border-bottom:1px solid rgba(255,255,255,.1);
}

.mobile-nav-active a{
color:white;
display:block;
}
/* MOBILE NAVIGATION */

@media(max-width:900px){

.nav-links{
display:none;
}

.mobile-menu{
display:block;
}

.nav-links.mobile-nav-active{
display:flex !important;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#082111;
padding:15px 0;
z-index:9999;
gap:0;
box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.nav-links.mobile-nav-active li{
width:100%;
list-style:none;
text-align:center;
padding:15px 0;
border-bottom:1px solid rgba(255,255,255,.1);
}

.nav-links.mobile-nav-active a{
display:block;
color:white;
font-size:16px;
}

}
.socials a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    color: #25D366; /* Change color on hover */
}
@media(max-width:768px){

    .footer-links{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        width:100%;
        max-width:300px;
        margin:auto;
    }

}
@media(max-width:768px){

    .footer-logo{
        border-top:1px solid rgba(255,255,255,.15);
        padding-top:25px;
    }

}
@media(max-width:768px){

footer{
    text-align:center;
    align-items:center;
}

.footer-logo{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

}
@media(max-width:768px){

    footer{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
        padding:40px 20px;
    }

    .footer-links{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:15px;
        width:100%;
        max-width:300px;
        margin:auto;
        text-align:center;
    }

    .footer-logo{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        width:100%;

        border-top:1px solid rgba(255,255,255,.15);
        padding-top:25px;
    }

    .footer-logo img{
        margin:0 auto 12px;
    }

    .footer-logo p{
        text-align:center;
        margin:0;
    }

    .socials{
        display:flex;
        justify-content:center;
        gap:20px;
        margin-top:15px;
    }

    .socials i{
        margin-left:0;
    }

}