
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary:       #0b5e3f;
    --secondary:     #146b46;
    --accent:        #e0a82b;
    --bg-light:      #fafdf7;
    --text-dark:     #1a2c2e;
    --text-muted:    #5a6e68;
    --border-light:  #e2ead8;
    --white:         #ffffff;
    --footer-bg:     #0b332a;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', sans-serif;

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-pill: 999px;

    --shadow-card: 0 4px 20px rgba(11, 94, 63, 0.08);
    --shadow-hover: 0 12px 32px rgba(11, 94, 63, 0.14);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===============================
   LAYOUT CONTAINER
================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

section {
    padding-block: 4rem;
}

/* ===============================
   TOP BAR
================================ */
.top-bar {
    background: #0b3b2f;
    color: #fff;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding-block: 0.45rem;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

/* ===============================
   MAIN HEADER
================================ */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 0.6rem;
    gap: 1rem;
}

/* ---- Logo ---- */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.62rem;
    color: var(--text-muted);
    line-height: 1.3;
}
/* ===============================
   ABOUT SECTION
================================ */
.about-section {
    padding: 4rem 0;
    padding-top: 0%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 10px;

    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.about-image.show img {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        margin-top: 1.5rem;
    }
}
/* ===============================
   NAVIGATION — DESKTOP
================================ */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.7rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}

.nav-item > a:hover {
    color: var(--secondary);
    background: #eef5ea;
}

/* --- Dropdown --- */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    min-width: 230px;
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.11);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 200;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.55rem 1.1rem;
    font-size: 0.84rem;
    color: #2d4a3b;
    transition: background var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
    background: #eef5ea;
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.6rem;
    font-size: 1.3rem;
    color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}

.mobile-toggle:hover {
    background: #eef5ea;
}

/* ===============================
   HERO SLIDER
================================ */
.hero-slider {
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}
 
.slider {
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 260px;
}
 
/* Every slide sits in the same absolute space */
.slide {
    position: absolute;
    inset: 0; 
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
 
/* Active slide fades in */
.slide.active {
    opacity: 1;
    pointer-events: auto;
}
 
/* Image fills the fixed container */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
 
/* Slide text overlay — unchanged from original */
.slide-text {
    position: absolute;
    bottom: 0.1rem;
    left: 1rem;
    right: 1.5rem;
    color: #ffffff;
    max-width: 620px;
    padding: 1.25rem 1.5rem;
}
 
.slide-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.25;
}
 
.slide-text p {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    opacity: 0.9;
}
 
/* Arrows — unchanged from original */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    border: none;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.25s ease;
    z-index: 10;
}
 
.prev { left: 1rem; }
.next { right: 1rem; }
 
.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.7);
}
 
@media (max-width: 640px) {
    .slider {
        height: 52vh;
        min-height: 200px;
    }
 
    .slide-text {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}
/* ===============================
   LANGUAGE SWITCHER
================================ 
.lang-dropdown {
    position: relative;
}


.lang-btn img,
.lang-menu img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}


.lang-menu {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 8px;
    display: none;
    min-width: 160px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    z-index: 999;
}

.lang-menu div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.lang-menu div:hover {
    background: var(--cream);
}

.lang-menu img {
    width: 18px;
}

.lang-dropdown.open .lang-menu {
    display: block;
}

#google_translate_element {
    display: none;
}
.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0px !important;
}
*/
/* ===============================
   COVERAGE SECTION
================================ */
.coverage-section {
    padding: 4rem 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Map */
.coverage-map img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
}

/* Content */
.coverage-content p {
    margin: 1rem 0;
    color: #5a6e68;
}

/* Stats */
.coverage-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.coverage-stats h3 {
    font-size: 1.8rem;
    color: #0f7b4a;
}

.coverage-stats p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .coverage-stats {
        justify-content: center;
    }
}
/* ===============================
   COVERAGE TABS
================================ */
.coverage-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.5rem 1.2rem;
    border: none;
    background: #eef5ea;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active {
    background: #0f7b4a;
    color: white;
}
/* ===============================
   PLATFORMS SECTION
================================ */
.platforms-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
/* Card */
.platform-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4 / 3;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.platform-overlay {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 0.1rem 0.7rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
/* Image */
.platform-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f7f5;
}

/* Remove hover overlay darkening */
.platform-card::after {
    display: none;
}

.platform-card:hover {
    transform: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.platform-card:hover img {
    transform: none;
}

.platform-card:hover .platform-overlay {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
}

@media (max-width: 640px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .platform-overlay {
        font-size: 0.75rem;
        padding: 0.1rem 0.5rem;
    }
}

@media (max-width: 360px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
}
/* ===============================
   CONTENT
================================ */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* GRID */
.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.coverage-grid img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    padding-left: 1rem;
    margin-bottom: 2rem;
    color: var(--primary);
    line-height: 1.3;
    text-align: center !important;
}
/* ===============================
   PARTNERS SLIDER
================================ */
.partners-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
}

/* TRACK */
.partners-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollPartners 30s linear infinite;
}

.partners-track img {
    height: 60px;
    object-fit: contain;
    transition: 0.3s ease;
}

/* subtle fade */
.partners-track img {
    opacity: 0.8;
}

.partners-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}
/* ANIMATION */
@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.partners-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollPartners 60s linear infinite;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* ===============================
   CARDS GRID
================================ */
.cards-grid,
.news-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

/* ===============================
   CARD
================================ */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.card i {
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 0.85rem;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    color: var(--primary);
}

.card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* ===============================
   BUTTONS
================================ */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;

    padding: 0.35rem 0.7rem;   /* small button size */
    margin-top: 0.75rem;

    color: var(--secondary);
    font-weight: 600;
    font-size: 0.8rem;

    border: 1.5px solid var(--secondary);
    border-radius: 6px;        /* gives button feel */
    background: transparent;

    cursor: pointer;

    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
.about-video {
    position: relative;
    max-width: 100%;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

/* Play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
}

.play-button::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-40%, -50%);
    
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent white;
}

/* Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.video-content iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}
/* ===============================
   EXEC SECTION
================================ */
.exec-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: center;
}

.exec-img img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-card);
}

.exec-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ===============================
   NEWS SECTION
================================ */
.news-section {
    background: #f3f7ec;
}

/* Header */
.ns-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ns-header .section-title {
    border-left: none;
    padding-left: 0;
    text-align: center;
}

.ns-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0.5rem auto 0;
}

/* Eyebrow pill */
.ns-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    background: #d8f0e3;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.ns-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    animation: ns-pulse 2s ease-in-out infinite;
}

@keyframes ns-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.35; transform: scale(0.6); }
}

/* ---- 3-column equal grid ---- */
.ns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

/* ---- News card ---- */
.news-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(11, 94, 63, 0.12);
}

/* Image */
.nc-img {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #c8dfc8;
    flex-shrink: 0;
}

.nc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-card:hover .nc-img img {
    transform: scale(1.05);
}

.nc-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b8d9c4, #7db89e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Category badge on image */
.nc-cat {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(11, 94, 63, 0.88);
    color: #fff;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

/* Body */
.nc-body {
    padding: 1.35rem 1.35rem 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nc-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    color: #0d3728;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nc-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer row */
.nc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.35rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.75rem;
    color: #7a9990;
    flex-shrink: 0;
}

.nc-date {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nc-read {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.75rem;
}

/* ---- Skeleton ---- */
.skel-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.skel-img {
    height: 210px;
    border-radius: 0;
    width: 100%;
}

.skel-body {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skeleton {
    background: linear-gradient(90deg, #ddecd5 25%, #cce0c0 50%, #ddecd5 75%);
    background-size: 200% 100%;
    animation: ns-shimmer 1.5s infinite;
    border-radius: 6px;
}

@keyframes ns-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ---- Error ---- */
.ns-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.ns-error h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0.5rem 0 0.3rem;
}

.ns-error p { font-size: 0.85rem; }

/* ---- View all button ---- */
.ns-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.btn-view-all:hover {
    background: #094d33;
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .ns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .ns-header .section-title {
        font-size: 1.4rem;
    }
}

/* ===============================
   PARTNER LOGOS
================================ */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(110px, 100%), 1fr));
    gap: 1.25rem;
    align-items: center;
}

.partner-item {
    background: var(--white);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border-light);
}

.partner-logos img {
    max-height: 60px;
    width: auto;
    margin: auto;
    object-fit: contain;
}
/* ===============================
   SDG SECTION
================================ */
.sdg-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 120px));
    gap: 1.5rem;
    justify-content: center;
}


.sdg-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
}

.sdg-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sdg-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
/* ===============================
   SUBSCRIPTION
================================ */
#subsEmail {
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--border-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
}

#subsEmail:focus {
    border-color: var(--secondary);
}

.btn-sub {
    margin-top: 0.6rem;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-pill);
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-sub:hover {
    background: #c9921f;
    transform: translateY(-1px);
}

/* ===============================
   FOOTER
================================ */
footer {
    background: var(--footer-bg);
    color: #c8ddd6;
    padding-block: 3.5rem 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
}

.footer-grid h4 {
    font-family: var(--font-display);
    color: #f3cf7a;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.footer-grid a {
    display: block;
    color: #b8d5cc;
    margin-block: 0.3rem;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.footer-grid a:hover {
    color: #f3cf7a;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #7fa898;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===============================
   HERO STATS (if used)
================================ */
.hero-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card);
    width: fit-content;
    margin-top: 1.5rem;
}

.stat-fig {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-display);
}

.stats-badge {
    margin-top: 1rem;
    display: inline-block;
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    box-shadow: var(--shadow-card);
}

/* ===============================
   RESPONSIVE — TABLET  ≤ 992px
================================ */
@media (max-width: 992px) {
    /* Hide desktop nav, show toggle */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-light);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 1rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.09);
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-item.open .dropdown-menu {
        display: block;
    }

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

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item > a {
        padding: 0.75rem 1.25rem;
        border-radius: 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.95rem;
    }

    /* Dropdown inside mobile nav: always visible when parent active */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f5faf2;
        padding: 0;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.55rem 2rem;
        font-size: 0.85rem;
        border-bottom: 1px solid #e5eed9;
    }

    .exec-grid {
        grid-template-columns: 1fr;
    }

    .exec-img img {
        max-width: 280px;
        margin: auto;
    }
}

/* ===============================
   RESPONSIVE — MOBILE  ≤ 640px
================================ */
@media (max-width: 640px) {
    section {
        padding-block: 2.5rem;
    }

    .logo-text {
        display: none;
    }

    .logo-img {
        height: 38px;
    }

    .slide img {
        height: 52vh;
        min-height: 200px;
    }

    .slide-text {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .top-bar .container {
        justify-content: center;
        font-size: 0.72rem;
    }

    .cards-grid,
    .news-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-stats {
        gap: 0.6rem;
    }
}
@media (max-width: 992px) {

    .nav-item > a .fa-chevron-down {
        transition: transform 0.2s ease;
        margin-left: auto;
    }

    .nav-item.open > a .fa-chevron-down {
        transform: rotate(180deg);
    }
}
.footer-subscribe {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-subscribe h5 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.footer-subscribe p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-subscribe-form {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-subscribe-form input[type="email"] {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: none;
    outline: none;
    padding: 9px 12px;
    font-size: 0.78rem;
    color: #fff;
    font-family: inherit;
    min-width: 0;
}

.footer-subscribe-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-subscribe-form button {
    background: var(--gold);
    border: none;
    padding: 9px 14px;
    color: #fff;
    cursor: pointer;
    font-size: 0.82rem;
    transition: background 0.2s;
    flex-shrink: 0;
}

.footer-subscribe-form button:hover {
    background: var(--green-mid);
}

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

    .partner-logos {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
}