*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1B263B;
    overflow-x:hidden;
}



/* HEADER */

.main-header{
    background:#ffffff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.logo-text{
    font-size:32px;
    font-weight:800;
    color:#0F5132;
    text-decoration:none;
}

.nav-link{
    color:#1B263B;
    font-weight:600;
    transition:0.3s;
}

.nav-link:hover{
    color:#0F5132;
}

.donate-btn{
    background:#0F5132;
    border:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
}



/* COMMON */

.section-padding{
    padding:100px 0;
}

.section-title{
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    color:#1B263B;
}

.section-subtitle{
    max-width:700px;
    margin:auto;
    color:#6c757d;
    font-size:18px;
}

.section-badge{
    display:inline-block;
    background:#E8F5EE;
    color:#0F5132;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

.light-badge{
    background:rgba(255,255,255,0.15);
    color:#ffffff;
}



/* HERO */

.hero-section{
    min-height:100vh;
    display:flex;
    align-items:center;

    background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    color:#ffffff;
}

.hero-title{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    max-width:850px;
}

.hero-text{
    margin-top:25px;
    font-size:20px;
    line-height:1.8;
    max-width:700px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn{
    background:#0F5132;
    color:#ffffff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
}

.primary-btn:hover{
    background:#0b3d26;
    color:#ffffff;
}

.secondary-btn{
    border:2px solid #ffffff;
    color:#ffffff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-weight:700;
    transition:0.3s;
}

.secondary-btn:hover{
    background:#ffffff;
    color:#1B263B;
}



/* IMPACT SECTION */

.impact-section{
    background:#F8F5F0;
}

.impact-card{
    background:#ffffff;
    padding:50px 30px;
    border-radius:24px;
    text-align:center;
    transition:0.3s;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.impact-card:hover{
    transform:translateY(-10px);
}

.impact-number{
    font-size:58px;
    font-weight:800;
    color:#0F5132;
}

.impact-text{
    margin-top:12px;
    font-size:18px;
    font-weight:600;
}



/* ABOUT */

.about-text{
    color:#6c757d;
    line-height:1.9;
    margin-top:20px;
    font-size:17px;
}

.mini-info-card{
    background:#ffffff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}



/* PROGRAMS */

.program-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    transition:0.3s;
    height:100%;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.program-card:hover{
    transform:translateY(-10px);
}

.program-image{
    width:100%;
    height:260px;
    object-fit:cover;
}

.program-content{
    padding:30px;
}

.program-title{
    font-size:26px;
    font-weight:700;
}

.program-description{
    margin-top:15px;
    color:#6c757d;
    line-height:1.8;
}

.program-link{
    display:inline-block;
    margin-top:20px;
    color:#0F5132;
    font-weight:700;
    text-decoration:none;
}



/* CAMPAIGNS */

.campaign-card{
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.campaign-image{
    width:100%;
    height:250px;
    object-fit:cover;
}

.campaign-content{
    padding:30px;
}

.campaign-title{
    font-size:28px;
    font-weight:700;
}

.campaign-description{
    margin-top:15px;
    color:#6c757d;
    line-height:1.8;
}

.campaign-progress{
    height:10px;
    margin-top:20px;
    border-radius:50px;
}

.campaign-amounts{
    margin-top:15px;
    display:flex;
    justify-content:space-between;
    font-weight:600;
}



/* CSR */

.csr-section{
    background:#0F5132;
    color:#ffffff;
}

.csr-title{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
}

.csr-text{
    margin-top:20px;
    font-size:18px;
    line-height:1.9;
}

.white-btn{
    display:inline-block;
    background:#ffffff;
    color:#0F5132;
    text-decoration:none;
    padding:18px 35px;
    border-radius:50px;
    font-weight:700;
}



/* TESTIMONIALS */

.testimonial-card{
    background:#ffffff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    height:100%;
}

.testimonial-message{
    font-size:18px;
    line-height:1.9;
    color:#6c757d;
}

.testimonial-user{
    margin-top:30px;
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-image{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}



/* GALLERY */

.gallery-card{
    border-radius:24px;
    overflow:hidden;
}

.gallery-image{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-image:hover{
    transform:scale(1.05);
}



/* PAGE BANNER */

.page-banner{
    background:#0F5132;
    padding:140px 0;
    color:#ffffff;
    text-align:center;
}

.page-title{
    font-size:64px;
    font-weight:800;
}

.page-subtitle{
    margin-top:20px;
    font-size:20px;
}



/* FOOTER */

.footer-section{
    background:#F8F5F0;
}

.footer-title{
    font-size:32px;
    font-weight:800;
    color:#0F5132;
}

.footer-text{
    margin-top:20px;
    line-height:1.8;
    color:#6c757d;
}

.footer-heading{
    font-size:24px;
    font-weight:700;
}

.footer-links{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#1B263B;
    text-decoration:none;
}



/* RESPONSIVE */

@media(max-width:992px){

    .hero-title{
        font-size:52px;
    }

    .section-title{
        font-size:42px;
    }

    .csr-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .hero-title{
        font-size:42px;
    }

    .hero-text{
        font-size:17px;
    }

    .section-title{
        font-size:34px;
    }

    .page-title{
        font-size:42px;
    }

    .csr-title{
        font-size:36px;
    }

    .section-padding{
        padding:70px 0;
    }

}