.slogan{
    font-size:14px;
    font-style:italic;
    font-weight:600;
    background:linear-gradient(90deg,#2e7d32,#1e88e5,#e53935);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===== SLIDER ===== */
.hero-slider{
    position:relative;
    width:100%;
    height:calc(100vw * 1210 / 1920); /* keep 1920x1210 ratio */
    max-height:90vh;
    min-height:520px;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    background-size:cover; /* best for 1920x1210 */
    background-position:center center;
    background-repeat:no-repeat;
    opacity:0;
    transition:opacity 1s ease-in-out;
}
.slide.active{opacity:1}

/* ===== CONTENT ===== */
.slide-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    max-width:900px;
    padding:24px 28px;
    background:rgba(0,0,0,.45);
    border-radius:14px;
}

.slide-content h1{
    font-size:44px;
    margin-bottom:12px;
}
.slide-content p{
    font-size:18px;
    margin-bottom:22px;
}
.slide-content a{
    display:inline-block;
    padding:12px 26px;
    background:#2ecc71;
    color:#08351e;
    border-radius:32px;
    text-decoration:none;
    font-weight:600;
    transition:transform .2s ease, box-shadow .2s ease;
}
.slide-content a:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(46,204,113,.4);
}

/* ===== MOBILE ===== */
@media(max-width:768px){
    .hero-slider{
        height:65vh;
        min-height:420px;
    }
    .slide-content{
        padding:18px 20px;
    }
    .slide-content h1{font-size:26px}
    .slide-content p{font-size:15px}
}
.services-section{
    padding:70px 20px;
    background:#f6f9ff;
}
.services-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}
.services-container h2{
    font-size:34px;
    color:#0e1b3d;
    margin-bottom:10px;
}
.services-container p.section-desc{
    max-width:800px;
    margin:0 auto 50px;
    font-size:16px;
    color:#555;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */
.service-card{
    background:#ffffff;
    padding:32px 22px;
    border-radius:14px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
    transition:transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 36px rgba(0,0,0,.12);
}
.service-icon{
    font-size:42px;
    color:#2ecc71;
    margin-bottom:18px;
}
.service-card h3{
    font-size:20px;
    color:#0e1b3d;
    margin-bottom:10px;
}
.service-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}

/* MOBILE */
@media(max-width:992px){
    .services-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
    .services-grid{grid-template-columns:1fr}
}
.achievements-section{
    width:100%;
    padding:80px 20px;
    background:linear-gradient(135deg,#0e1b3d,#132a6a);
    color:#ffffff;
}
.achievements-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}
.achievements-container h2{
    font-size:36px;
    margin-bottom:10px;
}
.achievements-container p.section-subtitle{
    font-size:17px;
    color:#dbe6ff;
    margin-bottom:60px;
}

/* GRID */
.achievement-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */
.achievement-card{
    background:rgba(255,255,255,.08);
    padding:36px 20px;
    border-radius:16px;
    backdrop-filter:blur(6px);
    transition:transform .25s ease, background .25s ease;
}
.achievement-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.14);
}
.achievement-icon{
    font-size:44px;
    color:#2ecc71;
    margin-bottom:16px;
}
.achievement-number{
    font-size:42px;
    font-weight:700;
    margin-bottom:6px;
}
.achievement-title{
    font-size:16px;
    color:#eaf0ff;
}

/* MOBILE */
@media(max-width:992px){
    .achievement-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
    .achievement-grid{grid-template-columns:1fr}
    .achievements-container h2{font-size:28px}
}
/* ===== INSPIRING STORIES ===== */
.stories-section{
    padding:80px 20px;
    background:#ffffff;
}
.stories-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}
.stories-container h2{
    font-size:36px;
    color:#0e1b3d;
    margin-bottom:8px;
}
.stories-container p.section-subtitle{
    font-size:17px;
    color:#555;
    margin-bottom:60px;
}

/* GRID */
.stories-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.story-card{
    background:#f7f9ff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:transform .25s ease, box-shadow .25s ease;
    text-align:left;
}
.story-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 42px rgba(0,0,0,.12);
}

/* IMAGE */
.story-image{
    height:220px;
    background-size:cover;
    background-position:center;
}

/* CONTENT */
.story-content{
    padding:24px 22px;
}
.story-content h3{
    font-size:20px;
    color:#0e1b3d;
    margin-bottom:8px;
}
.story-content p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:16px;
}
.story-content a{
    font-size:14px;
    font-weight:600;
    color:#2ecc71;
    text-decoration:none;
}
.story-content a:hover{
    text-decoration:underline;
}

/* MOBILE */
@media(max-width:992px){
    .stories-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
    .stories-grid{grid-template-columns:1fr}
    .stories-container h2{font-size:28px}
}
/* ===== UPCOMING EVENTS ===== */
.events-section{
    padding:80px 20px;
    background:#f4f7ff;
}
.events-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}
.events-container h2{
    font-size:36px;
    color:#0e1b3d;
    margin-bottom:8px;
}
.events-container p.section-subtitle{
    font-size:17px;
    color:#555;
    margin-bottom:60px;
}

/* GRID */
.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.event-card{
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    overflow:hidden;
    text-align:left;
    transition:transform .25s ease, box-shadow .25s ease;
}
.event-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 42px rgba(0,0,0,.12);
}

/* DATE BADGE */
.event-date{
    background:#2ecc71;
    color:#08351e;
    padding:14px;
    text-align:center;
}
.event-date span{
    display:block;
    font-size:28px;
    font-weight:700;
}
.event-date small{
    font-size:13px;
    font-weight:600;
}

/* CONTENT */
.event-content{
    padding:24px 22px;
}
.event-content h3{
    font-size:20px;
    color:#0e1b3d;
    margin-bottom:10px;
}
.event-content p{
    font-size:14px;
    color:#555;
    line-height:1.6;
    margin-bottom:14px;
}
.event-meta{
    font-size:13px;
    color:#777;
    margin-bottom:16px;
}
.event-content a{
    font-size:14px;
    font-weight:600;
    color:#2ecc71;
    text-decoration:none;
}
.event-content a:hover{text-decoration:underline}

/* MOBILE */
@media(max-width:992px){
    .events-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
    .events-grid{grid-template-columns:1fr}
    .events-container h2{font-size:28px}
}
/* ===== VOICES OF IMPACT ===== */
.testimonial-section{
    padding:90px 20px;
    background:linear-gradient(135deg,#0b2d59,#123c7a);
    color:#ffffff;
    position:relative;
    overflow:hidden;
}
.testimonial-container{
    max-width:1000px;
    margin:auto;
    text-align:center;
}
.testimonial-container h2{
    font-size:36px;
    margin-bottom:8px;
}
.testimonial-container p.section-subtitle{
    font-size:17px;
    color:#dbe6ff;
    margin-bottom:60px;
}

/* SLIDER */
.testimonial-slider{
    position:relative;
}
.testimonial-slide{
    display:none;
    max-width:800px;
    margin:auto;
    background:rgba(255,255,255,.08);
    padding:40px 30px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.testimonial-slide.active{
    display:block;
    animation:fadeUp .6s ease;
}

/* TEXT */
.testimonial-text{
    font-size:18px;
    line-height:1.8;
    color:#f1f5ff;
    margin-bottom:28px;
}
.testimonial-author{
    font-size:16px;
    font-weight:600;
}
.testimonial-role{
    font-size:14px;
    color:#bcd0ff;
}

/* DOTS */
.testimonial-dots{
    margin-top:30px;
}
.testimonial-dots span{
    display:inline-block;
    width:10px;
    height:10px;
    background:rgba(255,255,255,.4);
    border-radius:50%;
    margin:0 6px;
    cursor:pointer;
}
.testimonial-dots span.active{
    background:#2ecc71;
}

/* ANIMATION */
@keyframes fadeUp{
    from{opacity:0;transform:translateY(20px)}
    to{opacity:1;transform:translateY(0)}
}

/* MOBILE */
@media(max-width:600px){
    .testimonial-container h2{font-size:28px}
    .testimonial-text{font-size:16px}
}
/* ===== VOLUNTEER CTA ===== */
.volunteer-section{
    padding:90px 20px;
    background:linear-gradient(135deg,#2e7d32,#1b5e20);
    color:#ffffff;
    text-align:center;
}
.volunteer-container{
    max-width:900px;
    margin:auto;
}
.volunteer-container h2{
    font-size:40px;
    margin-bottom:10px;
    font-weight:700;
}
.volunteer-container h3{
    font-size:24px;
    font-weight:500;
    margin-bottom:24px;
    color:#e6ffef;
}
.volunteer-container p{
    font-size:17px;
    line-height:1.8;
    color:#f1fff6;
    margin-bottom:36px;
}

/* BUTTON */
.volunteer-btn{
    display:inline-block;
    padding:14px 34px;
    background:#ffffff;
    color:#1b5e20;
    font-size:16px;
    font-weight:600;
    border-radius:40px;
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease;
}
.volunteer-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 36px rgba(0,0,0,.25);
}

/* MOBILE */
@media(max-width:600px){
    .volunteer-container h2{font-size:30px}
    .volunteer-container h3{font-size:20px}
    .volunteer-container p{font-size:15px}
}

/* ===== RESET ===== */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Poppins',sans-serif}

/* ===== SECTION 1 : TOP HEADER ===== */
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 28px;
    background:#ffffff;
    border-bottom:1px solid #eee;
}
.logo-area{display:flex;align-items:center;gap:12px}
.logo-area img{height:55px}
.logo-text h1{font-size:20px;color:#1b5e20;font-weight:600}
.logo-text p{font-size:13px;color:#666;font-style:italic}

.header-actions{display:flex;gap:12px}
.donate-btn{
    background:linear-gradient(135deg,#2e7d32,#00695c);
    color:#fff;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
}
.login-btn{
    border:2px solid #2e7d32;
    color:#2e7d32;
    padding:8px 18px;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
}

/* ===== SECTION 2 : NAVBAR ===== */
.nav-section{
    position:sticky;
    top:0;
    z-index:999;
    background:linear-gradient(180deg,#1b5e20,#00695c);
}
.nav-container{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:14px 10px;
}
.nav-menu{
    display:flex;
    list-style:none;
    gap:34px;
}
.nav-menu li{position:relative}
.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    text-transform:uppercase;
    transition:.3s;
}
.nav-menu a:hover,
.nav-menu a.active{color:#c8e6c9}

/* Dropdown */
.nav-menu li ul{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:190px;
    padding:8px 0;
    list-style:none;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    border-radius:6px;
}
.nav-menu li:hover ul{display:block}
.nav-menu li ul li a{
    color:#2e7d32;
    padding:9px 16px;
    display:block;
    text-transform:none;
}
.nav-menu li ul li a:hover{
    background:#e8f5e9;
}

/* ===== MOBILE ===== */
.menu-toggle{
    display:none;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}
@media(max-width:900px){
    .nav-container{justify-content:space-between;padding:14px 20px}
    .menu-toggle{display:block}
    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#1b5e20;
        flex-direction:column;
        gap:0;
        display:none;
    }
    .nav-menu.show{display:flex}
    .nav-menu li a{
        padding:14px 20px;
        display:block;
    }
    .nav-menu li ul{
        position:static;
        box-shadow:none;
        background:#2e7d32;
    }
    .nav-menu li ul li a{color:#fff}
}
.donate-btn{
    background:linear-gradient(135deg,#ff6f00,#ff8f00);
    color:#fff;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    box-shadow:0 6px 16px rgba(255,143,0,.35);
}
.donate-btn:hover{
    background:linear-gradient(135deg,#ff8f00,#ff6f00);
}

/* ===== CERTIFICATES SECTION ===== */
.certificates-section{
    padding:90px 20px;
    background:#f7f9ff;
}
.certificates-container{
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.cert-header{
    text-align:center;
    margin-bottom:60px;
}
.cert-header h2{
    font-size:38px;
    color:#1b5e20;
    margin-bottom:10px;
}
.cert-header h3{
    font-size:24px;
    color:#333;
    margin-bottom:16px;
}
.cert-header p{
    max-width:850px;
    margin:auto;
    font-size:17px;
    color:#555;
    line-height:1.7;
}

/* GRID */
.cert-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */
.cert-card{
    background:#ffffff;
    border-radius:18px;
    padding:30px 22px;
    text-align:center;
    box-shadow:0 14px 40px rgba(0,0,0,.12);
    transition:.3s;
}
.cert-card:hover{
    transform:translateY(-6px);
}

/* ICON */
.cert-icon{
    font-size:42px;
    color:#2e7d32;
    margin-bottom:16px;
}

/* TITLE */
.cert-card h4{
    font-size:18px;
    color:#111;
    margin-bottom:10px;
}

/* TEXT */
.cert-card p{
    font-size:15px;
    color:#555;
    line-height:1.6;
    margin-bottom:18px;
}

/* BUTTON */
.cert-card a{
    display:inline-block;
    padding:10px 22px;
    background:#1a73e8;
    color:#fff;
    border-radius:22px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    box-shadow:0 6px 16px rgba(26,115,232,.35);
}
.cert-card a:hover{
    background:#0d5cff;
}

/* MOBILE */
@media(max-width:1000px){
    .cert-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media(max-width:600px){
    .cert-grid{
        grid-template-columns:1fr;
    }
    .cert-header h2{
        font-size:30px;
    }
}
/* ===== GALLERY SECTION ===== */
.gallery-section{
    padding:90px 20px;
    background:#ffffff;
}
.gallery-container{
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.gallery-header{
    text-align:center;
    margin-bottom:60px;
}
.gallery-header h2{
    font-size:38px;
    color:#1b5e20;
    margin-bottom:10px;
}
.gallery-header p{
    max-width:820px;
    margin:auto;
    font-size:17px;
    color:#555;
    line-height:1.7;
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

/* ITEM */
.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:14px;
    box-shadow:0 12px 32px rgba(0,0,0,.15);
    cursor:pointer;
}
.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}
.gallery-item:hover img{
    transform:scale(1.08);
}

/* OVERLAY */
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.3s;
}
.gallery-item:hover .gallery-overlay{
    opacity:1;
}
.gallery-overlay i{
    font-size:36px;
    color:#fff;
}

/* LIGHTBOX */
.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    align-items:center;
    justify-content:center;
    z-index:9999;
}
.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}
.lightbox span{
    position:absolute;
    top:25px;
    right:35px;
    font-size:38px;
    color:#fff;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:1100px){
    .gallery-grid{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:800px){
    .gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:500px){
    .gallery-grid{grid-template-columns:1fr}
    .gallery-item img{height:220px}
}
