:root {
    --green-dark: #0b4d34;
    --green: #0f6b46;
    --green-light: #e7f3ec;
    --gold: #f5a623;
    --red: #d13b3b;
    --text: #1f2d27;
    --muted: #5c6b64;
    --bg: #ffffff;
    --border: #dfe7e2;
    --radius: 10px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: 'Hind Siliguri', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

a { color: inherit; text-decoration: none; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.container.narrow { max-width: 760px; }

/* Header */
.site-header {
    background: var(--green-dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.logo { height: 48px; width: 48px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-text small { color: #cfe6da; font-weight: 400; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.main-nav a {
    color: #e8f3ee;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 15px;
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #fff;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 0.35; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,77,52,.9), rgba(15,107,70,.85));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 { font-size: 32px; max-width: 800px; margin: 0 auto 16px; }
.hero p { max-width: 640px; margin: 0 auto 28px; color: #dcefe4; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 15px;
}
.btn-primary { background: var(--gold); color: #3a2a00; }
.btn-primary:hover { background: #e0951a; }
.btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover { background: rgba(0,0,0,0.05); }
.hero .btn-outline { color: #fff; border-color: #fff; }
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Sections */
.section { padding: 56px 0; }
.section.alt-bg { background: var(--green-light); }
.section-title, .page-title {
    font-size: 26px;
    margin-bottom: 24px;
    color: var(--green-dark);
    border-bottom: 3px solid var(--gold);
    display: inline-block;
    padding-bottom: 6px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-card {
    background: var(--green-light);
    border-radius: var(--radius);
    padding: 28px 12px;
}
.stat-number { display: block; font-size: 32px; font-weight: 700; color: var(--green-dark); }
.stat-label { color: var(--muted); }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}
.card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.card-body { padding: 16px; }
.card-body h3 { margin: 6px 0; font-size: 18px; }
.badge {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.date { color: var(--muted); font-size: 13px; margin-left: 8px; }

.people-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.person-card {
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 12px;
    background: #fff;
}
.person-card img {
    width: 96px; height: 96px; border-radius: 50%;
    object-fit: cover; margin: 0 auto 12px; display: block;
    border: 3px solid var(--green-light);
}
.person-card h3 { margin: 4px 0; font-size: 16px; }
.person-card p { margin: 2px 0; color: var(--muted); font-size: 14px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; }
.gallery-grid img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gallery-grid figcaption { padding: 6px 8px; font-size: 13px; color: var(--muted); }

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin: 24px 0;
}
.info-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    background: var(--green-light);
}
.note { font-size: 13px; }

.center-cta { text-align: center; }
.cta-band { background: var(--green-dark); color: #fff; }
.cta-band h2 { margin-top: 0; }
.cta-band p { color: #dcefe4; margin-bottom: 20px; }

.check-list { list-style: none; padding: 0; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 8px; }
.check-list li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--green); font-weight: 700;
}

.filter-bar { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-bar input {
    padding: 10px 14px; border: 1px solid var(--border); border-radius: 999px;
    font-family: inherit;
}

.form { display: flex; flex-direction: column; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; color: var(--text); }
.form input, .form textarea {
    font-family: inherit;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 400;
    font-size: 15px;
}
.form button { align-self: flex-start; border: none; }

.alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 20px; }
.alert-success { background: #e3f6e9; color: #1c6b3d; }
.alert-error { background: #fdecec; color: #a12a2a; }
.alert ul { margin: 0; padding-left: 20px; }

.muted { color: var(--muted); }

.blog-body { font-size: 16px; line-height: 1.9; }
.blog-body img { max-width: 100%; border-radius: 8px; }

/* Footer */
.site-footer { background: var(--green-dark); color: #dcefe4; margin-top: 40px; }
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 40px 20px;
}
.footer-inner a { display: block; margin: 4px 0; color: #cfe6da; }
.footer-inner h4 { color: #fff; margin-bottom: 10px; }
.footer-bottom {
    text-align: center;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
}

@media (max-width: 780px) {
    .nav-toggle { display: block; }
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--green-dark);
        padding: 10px 0;
    }
    .main-nav.open { display: flex; }
    .header-inner { flex-wrap: wrap; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 26px; }
}
