
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f5f7f5;
    color: #123019;
    line-height: 1.6;
    padding-top: 72px;   /* NEW: space for fixed header on all screens */
}

/* Layout helpers */
.container {
    width: min(1120px, 100% - 2.5rem);
    margin: 0 auto;
}

.header-container {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section {
    padding: 9.0rem 0;
}

.section-alt {
    background: #e9f2ea;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    max-width: 640px;
    margin: 0.5rem auto 0;
    color: #44634b;
}

.section-grid {
    display: grid;
    gap: 2rem;
}

.cards-grid {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .section-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    }
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Header & Nav */
.header {
    position: fixed;         /* CHANGED: fixed for all devices */
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: rgba(245, 247, 245, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d7e3d7;
}

/* small tweak for very small screens */
@media (max-width: 768px) {
    body {
        padding-top: 64px;   /* slightly smaller space on mobiles */
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 45px;       /* Controls logo height */
    width: auto;        /* Keeps aspect ratio */
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #123019;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f8f46, #64c27a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.03em;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.95rem;
    color: #23462a;
    font-weight: 500;
}

.nav-links a:hover {
    color: #1f8c43;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #23462a;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        inset: 100% 0 auto 0;
        background: #f5f7f5;
        flex-direction: column;
        padding: 1rem 1.5rem 1.25rem;
        border-bottom: 1px solid #d7e3d7;
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2f8f46, #4fb567);
    color: #fff;
    border-color: #2f8f46;
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #2f8f46;
    border-color: #2f8f46;
}

.btn-outline:hover {
    background: #e2f3e5;
}

.btn-small {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    background: #2f8f46;
    color: #fff;
}

.btn-small:hover {
    filter: brightness(1.06);
}

.full-width {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7,51,20,0.85), rgba(16,90,39,0.78));
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 640px;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #deefdf;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: #c2ebc8;
    margin-bottom: 0.75rem;
}

/* Cards & lists */
.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.card h3 {
    margin-bottom: 0.75rem;
}

.list {
    list-style: disc;
    padding-left: 1.2rem;
}

.list li {
    margin-bottom: 0.35rem;
}



.table-wrapper {
    overflow-x: auto;
    margin-top: 0.75rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.data-table th,
.data-table td {
    padding: 0.55rem 0.75rem;
    border: 1px solid #d7e3d7;
    text-align: left;
}

.data-table thead th {
    background: #1f8c43;
    color: #ffffff;
    font-weight: 600;
}

.data-table tbody tr:nth-child(even) {
    background: #f5f7f5;
}

.small-text {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #44634b;
}


/* PPT gallery */

.gallery-slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0,0,0,0.10);
    background: #e3efe3;
}

.gallery-window {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%; /* 2:1 aspect ratio */
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: content;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-arrow.prev {
    left: 1rem;
}

.gallery-arrow.next {
    right: 1rem;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #b4c9b4;
    cursor: pointer;
}

.gallery-dot.active {
    background: #1f8c43;
}

/* Contact form */
.contact-form {
    display: grid;
    gap: 0.9rem;
}

.contact-form label {
    font-size: 0.9rem;
    display: grid;
    gap: 0.35rem;
}

.contact-form input,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid #c7ddc8;
    padding: 0.55rem 0.75rem;
    font-family: inherit;
    font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2f8f46;
    box-shadow: 0 0 0 1px rgba(47,143,70,0.18);
}

.small.note {
    font-size: 0.75rem;
    color: #547157;
}

/* Footer */
.footer {
    border-top: 1px solid #d7e3d7;
    padding: 1.25rem 0 1.75rem;
    background: #f5f7f5;
    font-size: 0.85rem;
    color: #4a644c;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: space-between;
    align-items: center;
}


/* Anchor used for Home -> Snapshot */
#snapshot {
    display: block;
}


/* Snapshot section (separate from hero) */
.snapshot {
    padding: 4rem 0;
    background: #f5f7f5;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.7fr);
    gap: 3rem;
    align-items: stretch;
}

.snapshot-text h1 {
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    line-height: 1.15;
    color: #0f2615;
    margin-bottom: 1rem;
}

.snapshot-subtitle {
    font-size: 1rem;
    color: #415545;
    margin-bottom: 1.75rem;
    max-width: 640px;
}

.snapshot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.snapshot-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.snapshot-stat {
    min-width: 140px;
}

.snapshot-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f8c43;
    margin-bottom: 0.25rem;
}

.snapshot-stat-label {
    display: block;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #4b6250;
}

/* Snapshot side card */
.snapshot-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.75rem 1.9rem;
    box-shadow: 0 18px 55px rgba(13, 49, 25, 0.14);
    align-self: stretch;
}

.snapshot-card h2 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #12351f;
}

.snapshot-card h3 {
    font-size: 1.05rem;
    margin-top: 1.5rem;
    margin-bottom: 0.45rem;
    color: #12351f;
}

.snapshot-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #43584a;
}

.snapshot-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.2rem;
}

.snapshot-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #e3f4e6;
    font-size: 0.8rem;
    color: #235733;
    font-weight: 500;
}

@media (max-width: 900px) {
    .snapshot-grid {
        grid-template-columns: 1fr;
    }

    .snapshot-card {
        order: -1;
    }

    .snapshot {
        padding: 3rem 0 2.5rem;
    }
}

/* FULL IMAGE Key Themes Section */
.key-theme-full {
    padding: 3rem 0;
}

/* FULL IMAGE Key Themes Section - mobile friendly */
.theme-full-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1rem;         /* small side padding */
    box-sizing: border-box;
}

.theme-full-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 900px;        /* nice size on large screens */
    border-radius: 12px;
}

/* Extra safety on small screens */
@media (max-width: 768px) {
    .theme-full-image-wrap {
        padding: 0 0.5rem;
    }

    .theme-full-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4.5rem 0;  /* smaller padding on phones */
    }
}

/* === FORCE HEADER TO STAY ON TOP ON ALL DEVICES === */
.header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999 !important;
}

/* Give space so content doesn't hide behind the fixed header */
body {
    padding-top: 80px !important;   /* adjust if header is shorter/taller */
}

@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
}

/* Key Focus Area layout */
.key-focus-layout {
    display: flex;
    align-items: flex-start;
    gap: 3rem;

    background: #ffffff;       /* WHITE background */
    padding: 2rem;             /* spacing inside */
    border-radius: 8px;        /* optional – looks cleaner */
    box-shadow: 0 0 8px rgba(0,0,0,0.05); /* optional subtle shadow */
}

/* Left image column */
.key-focus-image {
    flex: 0 0 32%;           /* Increase width slightly */
    max-width: 500px;
    display: flex;
    align-items: flex-start;
}

.key-focus-image img {
    width: 100%;
    height: auto;
    max-height: 840px;       /* Increased height for larger display */
    object-fit: contain;
}

/* Right content column */
.key-focus-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* Ensure there is NO internal scroll for the text block */
.key-focus-text {
    max-height: none;
    overflow: visible;
}

/* List styling */
.key-focus-text .section-title {
    margin-bottom: 0.75rem;
}

.key-focus-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.key-focus-list > li {
    margin-bottom: 0.5rem;
}

.key-focus-list > li > strong {
    display: block;
    margin-bottom: 0.15rem;
}

.key-focus-list ul {
    margin: 0 0 0.25rem 1.25rem;
    padding-left: 0;
}

.key-focus-list ul li {
    list-style: disc;
}

/* Mobile: stack image above text */
@media (max-width: 768px) {
    .key-focus-layout {
        flex-direction: column;
    }

    .key-focus-image {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .key-focus-text {
        font-size: 0.9rem;  /* slightly bigger for mobile readability */
    }
}

