*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(50, 42, 42, 0.826), rgba(36, 37, 36, 0.7)), url(image/Banner.png);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Inner pages: sub-header already starts at top, push content below fixed nav */
.sub-header{
    padding-top: 80px;
}

nav{
    display: flex;
    padding: 6px 5%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled{
    background: #223027;
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

/* Logo */
.nav-logo img {
    width: 70px;
}

/* Center nav links */
.nav-links{
    flex: 1;
    text-align: center;
    margin-top: 0;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 16px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #66786a;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

/* "Get in touch" pill button — top right */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.3s, color 0.3s;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #66786a;
    color: #fff;
}

.nav-cta .fa {
    display: inline !important; /* override nav .fa { display:none } */
    font-size: 16px;
    margin: 0;
}

/* Hero text — LEFT aligned like Eniola's Change */
.text-box{
    width: 50%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
}

/* Small pill tag above headline */
.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.text-box h1{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-box p{
    margin: 0 0 36px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    line-height: 1.7;
    padding: 0;
}

/* "Get Started" rounded pill button */
.get-started-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    transition: background 0.3s, color 0.3s;
}

.get-started-btn:hover {
    background: hsl(135, 25%, 13%);
    color: #fff;
}

.get-started-btn .fa {
    font-size: 18px;
}

/* Keep old .hero-btn for other pages */
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
}

.hero-btn:hover{
    border: 1px solid #1b2a1f;
    background: #1c3222;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width: 700px) {
    .text-box {
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .text-box h1{
        font-size: 28px;
    }

    .nav-cta {
        display: none;
    }

    .nav-links ul li{
        display: block;
    }

    .nav-links{
        position: fixed;
        background: #111;
        height: 100vh;
        width: 200px;          
        top: 0;
        right: -200px;         
        text-align: left;
        z-index: 2;
        transition: 0.5s;
        padding: 30px 20px;
    }    

    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
}



/* WHAT WE DO*/
.whatwedo{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #000000;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin: 5%;
    display: flex;
    justify-content: space-between;
}

.whatwedo-col{
    flex-basis: 31%;
    background: #d8f9de;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

.whatwedo-col:hover{
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}


/*Our reaching point*/

.ourreachpoints{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 50px;
}


.ourreachpoints-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.ourreachpoints-col img{
    width: 100%;
    display: block;
}

.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover{
    background: rgba(105, 136, 116, 0.7);
}

.layer h3{
    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 26px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;     
    transition: 0.5s;
}

.layer:hover h3{
    bottom: 49%;
    opacity: 1;
}

/*Our Programs*/

.programs{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.programs-col{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.programs-col img{
    width: 100%;
    border-radius: 10px;
}

.programs-col p{
    padding: 0;
}

.programs-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}


/*call to action*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(image/Donate.png);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*Footer*/
.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
}

.icons .fa{
    color: #00552c;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}

.fa-heart-o{
    color: #025812;
}

/*About Us Page*/

.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(132, 132, 132, 0.7), rgba(48, 48, 48, 0.7)), url(image/Banner.png);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sub-header h1{
    margin-top: 0;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}
.about-col p{
    padding: 15px 0 25px;
}

.red-btn{
    border: 1px solid #66786a;
    background: transparent;
    color: #66786a;
}

.red-btn:hover{
    color: #fff;
}

/*Contact Us*/

.location{
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: #66786a;
    margin: 10px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/*Donate Page*/

.donate{
    width: 80%;
    margin: auto;
    padding-top: 80px;
    padding-bottom: 50px;
}

.donate-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.donate-col img{
    width: 100%;
}

.donate-col h1{
    padding-top: 0;
}
.donate-col p{
    padding: 15px 0 25px;
}

.red-btn{
    border: 1px solid #66786a;
    background: transparent;
    color: #66786a;
}

.red-btn:hover{
    color: #fff;
}