/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#333;
    line-height:1.6;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:sticky;
    top:0;
    z-index:1000;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding:18px 8%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0F4C81;
}

nav a{
    margin-left:25px;
    color:#333;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#0F4C81;
}

.active{
    color:#0F4C81;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius: 12px;
    transition: all .3s ease;
    font-weight:600;
    cursor: pointer;
}

.primary{
    background:#F9A826;
    color:#fff;
    box-shadow: 0 4px 15px rgba(249, 168, 38, 0.3);
}

.primary:hover{
    background:#e29512;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 168, 38, 0.4);
}

/* =========================
   HERO
========================= */

.hero{
    min-height:90vh;

    background:
    linear-gradient(rgba(15,76,129,.80),
    rgba(15,76,129,.80)),
    url("../images/hero/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    padding:0 8%;
    color:white;
}

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:60px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    margin-bottom:30px;
}

.tagline{
    background:#F9A826;
    padding:8px 15px;
    border-radius:20px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
    color:#fff;
}

/* =========================
   PAGE HERO
========================= */

.page-hero{
    height:50vh;

    background:
    linear-gradient(rgba(15,76,129,.85),
    rgba(15,76,129,.85)),
    url("../images/hero/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.page-hero h1{
    font-size:55px;
    margin-bottom:10px;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:#0F4C81;
    font-size:40px;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background: #F9A826;
    bottom: -10px;
    left: 20%;
    border-radius: 2px;
}

.section-title p{
    color:#666;
}

/* =========================
   ABOUT SECTION
========================= */

.about-container{
    padding:80px 8%;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.about-content h2{
    color:#0F4C81;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:15px;
}

.about-image img{
    border-radius:15px;
}

/* =========================
   IMPACT
========================= */

.impact{
    background:#f5f8fb;

    padding:70px 8%;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

    text-align:center;
}

.stat{
    background:white;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.02);
    transition: all .3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.stat h2{
    color:#0F4C81;
    font-size:50px;
}

/* =========================
   MISSION VISION
========================= */

.mission-vision{
    padding:80px 8%;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.mission-card,
.vision-card{
    background:#f7f7f7;
    padding:35px;
    border-radius:15px;
}

.mission-card h2,
.vision-card h2{
    color:#0F4C81;
    margin-bottom:15px;
}

/* =========================
   OBJECTIVES
========================= */

.objectives{
    padding:80px 8%;
}

.objective-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.objective-card{
    background:#fff;
    padding:25px;
    border-radius:16px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.02);
    transition: all .3s ease;

    font-weight:600;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

/* =========================
   PROGRAMS
========================= */

.program-grid{
    padding:0 8% 80px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.program-card{
    background:white;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.02);
    transition: all .3s ease;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.program-content{
    padding:20px;
}

.program-content h3{
    color:#0F4C81;
    margin-bottom:10px;
}

/* =========================
   REGISTRATION
========================= */

.registration{
    padding:80px 8%;
    background:#f5f8fb;
}

.registration-box{
    background:white;

    max-width:900px;
    margin:auto;

    padding:35px;
    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.registration-box p{
    margin-bottom:10px;
}

/* =========================
   LEADERSHIP
========================= */

.leadership{
    padding:80px 8%;
}

.leadership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.leader-card{
    background:white;
    text-align:center;

    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.02);
    transition: all .3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.leader-card img{
    height:220px;
    object-fit:cover;
}

.leader-card h3{
    margin-top:15px;
    color:#0F4C81;
}

.leader-card p{
    padding-bottom:20px;
}

/* =========================
   CTA
========================= */

.about-cta,
.cta{
    padding:80px 8%;
    text-align:center;

    background:#0F4C81;
    color:white;
}

.cta h2,
.about-cta h2{
    margin-bottom:15px;
    font-size:40px;
}

.cta p,
.about-cta p{
    margin-bottom:25px;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#092e4d;
    color:white;
    padding:50px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:20px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;

    background:#25D366;
    color:white;

    padding:14px 20px;
    border-radius:50px;

    font-weight:600;
    z-index:999;
}
/* =========================
   GALLERY PAGE
========================= */

.gallery-page {
    padding: 80px 8%;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    transition: .3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h3 {
    color: #0F4C81;
    margin-bottom: 8px;
}

.gallery-caption p {
    color: #666;
}
/* PRESIDENT SECTION */

.president-section{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:40px;
    align-items:center;
}

.president-image{
    display:flex;
    justify-content:center;
}

.president-image img{
    width:300px;
    height:380px;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.15);
}

.president-content h2{
    color:#0F4C81;
    margin-bottom:15px;
}

.president-content p{
    margin-bottom:15px;
}
.president-content span{
    font-size:22px;
    font-weight:800;
    color:#2E7D32;
    text-transform:uppercase;
    letter-spacing:1px;
}

.president-content h2{
    font-size:32px;
    font-weight:700;
    color:#0F4C81;
    margin-bottom:15px;
    line-height:1.2;
}

.president-content h4{
    font-size:34px;
    font-weight:900;
    color:#111;
    margin-top:20px;
    margin-bottom:8px;
    line-height:1.3;
}

.role{
    font-size:18px;
    font-weight:700;
    color:#2E7D32;
}
/* =========================
   BLOG STYLE ACTIVITIES PAGE
========================= */

.blog-activities {
    padding: 40px 8% 80px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 70px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(0,0,0,.08);
    overflow: hidden;
}

.blog-card.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.blog-card.reverse img {
    order: 2;
}

.blog-card.reverse .blog-content {
    order: 1;
}

.blog-card img {
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.blog-content {
    padding: 40px;
}

.blog-content span {
    display: inline-block;
    color: #2E7D32;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.blog-content h2 {
    font-size: 34px;
    color: #0F4C81;
    margin-bottom: 18px;
    line-height: 1.2;
}

.blog-content p {
    font-size: 17px;
    color: #444;
    margin-bottom: 15px;
}
/* =========================
   DONATION PAGE MODERN MODEL
========================= */

.donation-page{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:70px;
    background:#f7f9fc;
}

.donation-form-box h2{
    font-size:34px;
    color:#111;
    margin-bottom:28px;
}

.amount-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-bottom:30px;
}

.amount-btn{
    padding:18px;
    font-size:22px;
    font-weight:700;
    border:2px solid #dfe7f1;
    background:white;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.amount-btn:hover,
.amount-btn.active{
    border-color:#0F4C81;
    background:#eaf3ff;
    color:#0F4C81;
}

.donation-form{
    display:flex;
    flex-direction:column;
}

.donation-form label{
    font-weight:700;
    margin:14px 0 8px;
}

.donation-form input{
    padding:17px 20px;
    border:1px solid #dfe7f1;
    border-radius:12px;
    font-size:18px;
    outline:none;
}

.donation-form input:focus{
    border-color:#0F4C81;
}

.donate-submit{
    margin-top:35px;
    padding:18px;
    border:none;
    border-radius:12px;
    background:#F9A826;
    color:#111;
    font-size:20px;
    font-weight:800;
    cursor:pointer;
}

.donation-info-box{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.bank-card{
    background:white;
    padding:35px 40px;
    border-radius:18px;
    border:1px solid #dfe7f1;
}

.bank-row{
    display:flex;
    justify-content:space-between;
    gap:20px;
    padding:16px 0;
    border-bottom:1px solid #e5eaf0;
}

.bank-row:last-child{
    border-bottom:none;
}

.bank-row span{
    color:#666;
    font-size:17px;
}

.bank-row strong{
    color:#111;
    font-size:17px;
    text-align:right;
}

.info-alert{
    padding:25px;
    border-radius:14px;
}

.info-alert h3{
    margin-bottom:10px;
}

.green-alert{
    background:#e8f7e9;
    color:#167c25;
}

.blue-alert{
    background:#e4f3ff;
    color:#0759a3;
}

.note-alert{
    background:#fff7df;
    color:#8a6200;
}
/* =========================
   DONATION BENEFITS
========================= */

.donation-benefits{
    padding:80px 8%;
    background:white;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.benefit-card{
    background:#f7f9fc;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.07);
    border-top:5px solid #F9A826;
    transition:.3s;
}

.benefit-card:hover{
    transform:translateY(-5px);
}

.benefit-card h3{
    color:#0F4C81;
    margin-bottom:12px;
    font-size:22px;
}

.benefit-card p{
    color:#555;
    line-height:1.7;
}
/* =========================
   CONTACT PAGE
========================= */

.contact-section{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:50px;
    background:#f7f9fc;
}

.contact-info span{
    color:#2E7D32;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.contact-info h2,
.contact-form-box h2{
    font-size:38px;
    color:#0F4C81;
    margin:10px 0 20px;
}

.contact-info > p{
    margin-bottom:25px;
    color:#555;
    font-size:17px;
}

.contact-card{
    background:white;
    padding:24px;
    border-radius:14px;
    margin-bottom:18px;
    box-shadow:0 4px 15px rgba(0,0,0,.07);
}

.contact-card h3{
    color:#0F4C81;
    margin-bottom:8px;
}

.contact-form-box{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
}

.contact-form{
    display:flex;
    flex-direction:column;
}

.contact-form label{
    font-weight:700;
    margin:12px 0 7px;
}

.contact-form input,
.contact-form textarea{
    padding:16px 18px;
    border:1px solid #dfe7f1;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

.contact-form textarea{
    min-height:140px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0F4C81;
}

.contact-form button{
    margin-top:25px;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#F9A826;
    color:#111;
    font-size:18px;
    font-weight:800;
    cursor:pointer;
}

.map-section{
    padding:80px 8%;
}

.map-box{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 4px 18px rgba(0,0,0,.12);
}

.map-box iframe{
    width:100%;
    height:420px;
    border:0;
}
/* =========================
   POLISHED HOME PAGE
========================= */

.home-hero{
    min-height:90vh;
    position:relative;
    background:
    linear-gradient(rgba(8,40,70,.78), rgba(8,40,70,.78)),
    url("../images/hero/hero.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    padding:0 8%;
    color:white;
}

.home-hero-content{
    max-width:850px;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:#F9A826;
    color:#111;
    padding:9px 18px;
    border-radius:30px;
    font-weight:800;
    margin-bottom:22px;
}

.home-hero h1{
    font-size:64px;
    line-height:1.05;
    margin-bottom:24px;
    font-weight:900;
}

.home-hero p{
    font-size:20px;
    max-width:780px;
    margin-bottom:34px;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.secondary{
    background:#fff;
    color:#0F4C81;
}

.home-impact{
    margin:-55px 8% 0;
    position:relative;
    z-index:5;
    background:white;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.14);

    display:grid;
    grid-template-columns:repeat(4,1fr);

    overflow:hidden;
}

.impact-box{
    padding:34px 20px;
    text-align:center;
    border-right:1px solid #edf1f5;
}

.impact-box:last-child{
    border-right:none;
}

.impact-box h2{
    color:#0F4C81;
    font-size:44px;
    font-weight:900;
}

.impact-box p{
    font-weight:700;
    color:#555;
}

.home-about{
    padding:100px 8% 80px;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:55px;
    align-items:center;
}

.home-about-img img{
    height:430px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.14);
}

.home-about-content span{
    color:#2E7D32;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.home-about-content h2{
    color:#0F4C81;
    font-size:42px;
    line-height:1.2;
    margin:10px 0 20px;
}

.home-about-content p{
    margin-bottom:15px;
    color:#444;
    font-size:17px;
}

.text-link{
    color:#0F4C81;
    font-weight:800;
    display:inline-block;
    margin-top:10px;
}

.home-programs{
    padding:80px 8%;
    background:#f7f9fc;
}

.home-program-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.home-program-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.02);
    transition: all .3s ease;
}

.home-program-card:hover{
    transform:translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.home-program-card img{
    height:210px;
    object-fit:cover;
}

.home-program-card div{
    padding:22px;
}

.home-program-card h3{
    color:#0F4C81;
    margin-bottom:10px;
}

.center-btn{
    text-align:center;
    margin-top:35px;
}

.latest-activities{
    padding:80px 8%;
    background:#f7f9fc;
}

.latest-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.latest-card{
    background:white;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.02);
    transition: all .3s ease;
}

.latest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.latest-card img{
    height:240px;
    object-fit:cover;
}

.latest-content{
    padding:24px;
}

.latest-content span{
    color:#2E7D32;
    font-weight:800;
    text-transform:uppercase;
    font-size:14px;
}

.latest-content h3{
    color:#0F4C81;
    margin:10px 0;
}

.latest-content a{
    color:#0F4C81;
    font-weight:800;
}

.home-gallery{
    padding:80px 8%;
}

.home-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.home-gallery-grid img{
    height:260px;
    object-fit:cover;
    border-radius:14px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.home-cta{
    padding:90px 8%;
    text-align:center;
    color:white;
    background:
    linear-gradient(rgba(15,76,129,.9), rgba(15,76,129,.9)),
    url("../images/hero/hero.jpg");
    background-size:cover;
    background-position:center;
}

.home-cta h2{
    font-size:44px;
    margin-bottom:15px;
}

.home-cta p{
    max-width:760px;
    margin:0 auto 30px;
    font-size:18px;
}

.main-footer{
    background:#092e4d;
    color:white;
    padding:60px 8% 25px;
}

.footer-main{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.4fr;
    gap:35px;
}

.footer-main h3,
.footer-main h4{
    margin-bottom:16px;
}

.footer-main a{
    display:block;
    color:white;
    margin-bottom:9px;
}

.footer-main p{
    color:#e5edf5;
}
.focus-section{
    padding:80px 8%;
    background:#f5f8fb;
}

.focus-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.focus-card{
    background:#ffffff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    border-top:5px solid #F9A826;
    transition:.3s;
}

.focus-card:hover{
    transform:translateY(-5px);
}

.focus-card h3{
    color:#0F4C81;
    margin-bottom:12px;
    font-size:22px;
}

.focus-card p{
    color:#555;
    line-height:1.7;
}
.leader-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    object-position:center;
    background:#f5f8fb;
    padding:10px;
}
.logo img{
    height:65px;
    width:auto;
    display:block;
}

.logo a{
    display:flex;
    align-items:center;
}
/*logo changes*/

.logo a{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    height:65px;
    width:auto;
}

.logo span{
    font-size:32px;
    font-weight:800;
    color:#0F4C81;
    letter-spacing:1px;
}
.footer-logo{
    height:80px;
    width:auto;
    margin-bottom:15px;
}
/* =========================
   NAVBAR BRANDING
========================= */

.logo-section a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo-section img{
    height:170px;
    width:auto;
    object-fit:contain;
}

.logo-text h1{
    margin:0;
    font-size:52px;
    font-weight:900;
    color:#0F4C81;
    line-height:1;
}
.logo-text h2{
    margin:4px 0;
    font-size:24px;
    font-weight:600;
    color:#333;
}

.logo-text p{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#2E7D32;
}
.bank-card{
    margin-bottom:25px;
}

.bank-card h3{
    color:#0F4C81;
    font-size:24px;
    margin-bottom:5px;
}

.bank-subtitle{
    color:#2E7D32;
    font-weight:700;
    margin-bottom:18px;
}
.amount-grid{
    display:none;
}

/* =========================
   SCROLL ANIMATIONS
========================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional delays for staggered grid items */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* =========================
   FEATURED INITIATIVES
========================= */

.featured-initiatives{
    padding:90px 8%;
    background:#f7f9fc;
}

.initiative-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.initiative-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    transition:.3s;
}

.initiative-card:hover{
    transform:translateY(-6px);
}

.initiative-icon{
    font-size:40px;
    margin-bottom:15px;
}

.initiative-card h3{
    color:#0F4C81;
    margin-bottom:12px;
}

.initiative-card p{
    color:#555;
    line-height:1.7;
}
/* =========================
   PROGRAMMES V2 PAGE
========================= */

.programs-v2-intro{
    padding:80px 8% 30px;
}

.programs-v2{
    padding:40px 8% 80px;
}

.program-detail-card{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:40px;
    align-items:center;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 6px 22px rgba(0,0,0,.08);
    overflow:hidden;
    margin-bottom:60px;
}

.program-detail-card.reverse{
    grid-template-columns:1.3fr 1fr;
}

.program-detail-card.reverse .program-detail-image{
    order:2;
}

.program-detail-card.reverse .program-detail-content{
    order:1;
}

.program-detail-image img{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
}

.program-detail-content{
    padding:40px;
}

.program-detail-content span{
    color:#2E7D32;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.program-detail-content h2{
    color:#0F4C81;
    font-size:34px;
    line-height:1.2;
    margin:10px 0 18px;
}

.program-detail-content p{
    color:#444;
    font-size:17px;
    margin-bottom:18px;
}

.program-detail-content ul{
    padding-left:20px;
}

.program-detail-content li{
    margin-bottom:10px;
    color:#333;
    font-weight:600;
}

.program-summary{
    padding:80px 8%;
    background:#f7f9fc;
}

.summary-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.summary-card{
    background:white;
    padding:28px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.summary-card h3{
    color:#0F4C81;
    font-size:42px;
    font-weight:900;
}

.summary-card p{
    color:#555;
    font-weight:700;
}
/* =========================
   INITIATIVES PAGE
========================= */

.initiatives-intro{
    padding:80px 8% 30px;
}

.initiatives-page-grid{
    padding:40px 8% 80px;
}

.initiative-detail-card{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:40px;
    align-items:center;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 6px 22px rgba(0,0,0,.08);
    overflow:hidden;
    margin-bottom:60px;
}

.initiative-detail-card.reverse{
    grid-template-columns:1fr 1.3fr;
}

.initiative-detail-card.reverse .initiative-detail-image{
    order:1;
}

.initiative-detail-card.reverse .initiative-detail-content{
    order:2;
}

.initiative-detail-content{
    padding:40px;
}

.initiative-detail-content span{
    color:#2E7D32;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.initiative-detail-content h2{
    color:#0F4C81;
    font-size:34px;
    line-height:1.2;
    margin:10px 0 18px;
}

.initiative-detail-content p{
    color:#444;
    font-size:17px;
    margin-bottom:18px;
}

.initiative-detail-content ul{
    padding-left:20px;
    margin-top:20px;
}

.initiative-detail-content li{
    margin-bottom:10px;
    color:#333;
    font-weight:600;
}

.initiative-detail-image img{
    width:100%;
    height:100%;
    min-height:480px;
    object-fit:cover;
}

.initiative-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin:25px 0;
}

.initiative-stats div{
    background:#f7f9fc;
    padding:18px;
    border-radius:12px;
    text-align:center;
}

.initiative-stats h3{
    color:#0F4C81;
    font-size:28px;
    font-weight:900;
}

.initiative-stats p{
    font-size:13px;
    margin:0;
    color:#555;
    font-weight:700;
}

.progress-bar{
    width:100%;
    height:12px;
    background:#e6edf5;
    border-radius:50px;
    overflow:hidden;
    margin:20px 0;
}

.progress-fill{
    height:100%;
    background:#F9A826;
    border-radius:50px;
}

.sanitation-progress{
    width:20%;
}
/* =========================
   ANNUAL PLAN PAGE
========================= */

.annual-theme{
    padding:80px 8%;
    background:#f7f9fc;
}

.theme-card{
    max-width:1000px;
    margin:auto;
    background:white;
    padding:45px;
    border-radius:20px;
    box-shadow:0 6px 22px rgba(0,0,0,.08);
    border-left:7px solid #F9A826;
    text-align:center;
}

.theme-card span{
    color:#2E7D32;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.theme-card h2{
    color:#0F4C81;
    font-size:38px;
    margin:12px 0 18px;
}

.theme-card p{
    color:#444;
    font-size:18px;
    line-height:1.8;
}

.vision-mission-plan{
    padding:80px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.plan-vm-card{
    background:#ffffff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.plan-vm-card h3{
    color:#0F4C81;
    font-size:28px;
    margin-bottom:15px;
}

.plan-vm-card p{
    color:#444;
    font-size:17px;
    line-height:1.8;
}

.annual-objectives{
    padding:80px 8%;
    background:#f7f9fc;
}

.objectives-list{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.objectives-list div{
    background:white;
    padding:22px;
    border-radius:14px;
    box-shadow:0 4px 14px rgba(0,0,0,.07);
    border-left:5px solid #2E7D32;
    font-weight:700;
    color:#333;
}

.programme-targets{
    padding:80px 8%;
}

.target-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.target-card{
    background:#ffffff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.target-card h3{
    color:#0F4C81;
    font-size:24px;
    margin-bottom:18px;
}

.target-card ul{
    padding-left:22px;
}

.target-card li{
    margin-bottom:10px;
    color:#444;
    font-weight:600;
}

.monitoring-section{
    padding:80px 8%;
    background:#f7f9fc;
}

.monitoring-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.monitor-card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.monitor-card h3{
    color:#0F4C81;
    margin-bottom:12px;
}

.expected-reach{
    padding:80px 8%;
}

.reach-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.reach-card{
    background:#ffffff;
    padding:25px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.reach-card h3{
    color:#0F4C81;
    font-size:34px;
    font-weight:900;
}

.reach-card p{
    color:#555;
    font-weight:700;
}

.reach-card.highlight{
    background:#0F4C81;
    color:white;
}

.reach-card.highlight h3,
.reach-card.highlight p{
    color:white;
}
/* ==========*/
.plan-download{
    padding:50px 8%;
}

.download-card{
    background:#ffffff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.download-card h2{
    color:#0F4C81;
    margin-bottom:15px;
}

.download-card p{
    max-width:700px;
    margin:0 auto 25px;
    color:#555;
}

.download-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
/* =========================
   HOME IMPACT DASHBOARD
========================= */

.home-impact-dashboard{
    padding:90px 8%;
    background:white;
}

.impact-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.impact-dashboard-card{
    background:#f7f9fc;
    padding:28px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.07);
    border-top:5px solid #F9A826;
}

.impact-dashboard-card h3{
    color:#0F4C81;
    margin-bottom:12px;
    font-size:19px;
}

.impact-dashboard-card h2{
    color:#0F4C81;
    font-size:40px;
    font-weight:900;
    margin-bottom:8px;
}

.impact-dashboard-card p{
    color:#555;
    font-weight:700;
}
/* =========================
   VOLUNTEER PAGE
========================= */

.volunteer-intro{
    padding:80px 8% 40px;
}

.volunteer-opportunities{
    padding:40px 8% 80px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.volunteer-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    text-align:center;
}

.volunteer-icon{
    font-size:42px;
    margin-bottom:15px;
}

.volunteer-card h3{
    color:#0F4C81;
    margin-bottom:12px;
}

.volunteer-benefits{
    padding:80px 8%;
    background:#f7f9fc;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.benefit-box{
    background:white;
    padding:25px;
    border-radius:16px;
    text-align:center;
}

.volunteer-form-section{
    padding:80px 8%;
}

.volunteer-form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.volunteer-form input,
.volunteer-form select,
.volunteer-form textarea{
    padding:14px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}
.volunteer-btn-wrapper{
    text-align:center;
    margin-top:30px;
}
/* =========================
   RESOURCES DOWNLOAD BOX
========================= */

.annual-layout{
    padding:80px 8%;
    display:grid;
    grid-template-columns:2fr 0.9fr;
    gap:35px;
    align-items:start;
}

.annual-main-content{
    background:white;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.annual-main-content h2{
    color:#0F4C81;
    margin-bottom:15px;
}

.resources-box{
    background:#ffffff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    border-top:5px solid #F9A826;
    position:sticky;
    top:130px;
}

.resources-box h3{
    color:#0F4C81;
    margin-bottom:8px;
}

.resources-box p{
    color:#666;
    font-size:14px;
    margin-bottom:18px;
}

.resources-list{
    max-height:260px;
    overflow-y:auto;
    padding-right:8px;
}

.resources-list a{
    display:block;
    background:#f7f9fc;
    color:#0F4C81;
    padding:13px 14px;
    margin-bottom:10px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.resources-list a:hover{
    background:#0F4C81;
    color:white;
}

.resources-list::-webkit-scrollbar{
    width:6px;
}

.resources-list::-webkit-scrollbar-thumb{
    background:#0F4C81;
    border-radius:10px;
}

.resources-list::-webkit-scrollbar-track{
    background:#e5edf5;
}
/* NAVBAR DROPDOWN */

.dropdown{
    position:relative;
    display:inline-block;
}

.dropdown-toggle{
    cursor:pointer;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:white;
    min-width:220px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
    border-radius:10px;
    padding:10px 0;
    z-index:999;
}

.dropdown-menu a{
    display:block;
    padding:12px 18px;
    margin:0;
    color:#333;
    font-weight:600;
    white-space:nowrap;
}

.dropdown-menu a:hover{
    background:#f7f9fc;
    color:#0F4C81;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
/* Gallery Button */

.gallery-btn-wrapper{
    text-align:center;
    margin-top:40px;
}

.gallery-view-btn{
    display:inline-block;
    background:#0F4C81;
    color:white;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s ease;
}

.gallery-view-btn:hover{
    background:#F9A826;
    transform:translateY(-3px);
}

.gallery-grid-full{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.gallery-grid-full img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
}

.gallery-grid-full img:hover{
    transform:scale(1.03);
}
/* =========================
   MODERN INITIATIVE CARDS
========================= */

.initiative-detail-card{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(255,255,255,0.55);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 20px 50px rgba(15,76,129,0.12);
    transition:all 0.35s ease;
}

.initiative-detail-card::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:24px;
    background:linear-gradient(135deg,#0F4C81,#2E7D32,#F9A826);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:0.35s ease;
    pointer-events:none;
}

.initiative-detail-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(15,76,129,0.22);
}

.initiative-detail-card:hover::before{
    opacity:1;
}

.initiative-detail-content{
    position:relative;
    z-index:2;
}

.initiative-detail-content span{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:linear-gradient(135deg,rgba(15,76,129,0.12),rgba(46,125,50,0.12));
    color:#0F4C81;
    font-weight:900;
    letter-spacing:1px;
}

.initiative-stats div{
    background:rgba(255,255,255,0.68);
    border:1px solid rgba(15,76,129,0.10);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 8px 22px rgba(15,76,129,0.08);
    transition:0.3s ease;
}

.initiative-stats div:hover{
    transform:translateY(-4px);
    background:#ffffff;
}

.initiative-detail-content ul{
    background:rgba(255,255,255,0.6);
    border:1px solid rgba(15,76,129,0.08);
    border-left:5px solid #F9A826;
    border-radius:16px;
    padding:22px 22px 22px 42px;
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
}
/* ==========================
   CONTACT FORM
========================== */

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form label{
    font-size:15px;
    font-weight:600;
    color:#333;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 18px;
    border:1px solid #d9e2ec;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
    background:#fff;
    box-sizing:border-box;
}

.contact-form textarea{
    min-height:160px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0F4C81;
    box-shadow:0 0 0 3px rgba(15,76,129,.15);
}

.contact-form button{
    background:#0F4C81;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#0b3b63;
    transform:translateY(-2px);
}