

    /* =========================================================
    FARUMA - DHIVEHI FONT
    ========================================================= */

        @font-face {
            font-family: 'Faruma';
            src: url('/fonts/Dhivehi.ttf') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
        }


        /* Dhivehi text */
        .hero-subtitle,
        .hero-title,
        .hero-title span {
            font-family: 'Faruma', sans-serif;
        }


    /* =========================================================
       GLOBAL
    ========================================================= */

    .site-hero,
    .site-hero *,
    .council-main,
    .council-main *,
    .council-footer,
    .council-footer * {
        box-sizing: border-box;
    }

    :root {
        --green-dark: #0d3826;
        --green-deep: #123f2b;
        --green: #1c6241;
        --green-light: #b7df75;
        --green-soft: #dff2bd;
        --cream: #f5f8f0;
        --white: #ffffff;
        --text: #183428;
        --muted: #6b7b71;
        --border: rgba(20, 70, 45, .10);
        --shadow: 0 20px 60px rgba(19, 57, 37, .10);
        --container: min(1500px, 94%);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        margin: 0;
        background: #f7faf5;
        color: var(--text);
    }


    /* =========================================================
       SCROLL REVEAL ANIMATION
    ========================================================= */

    .scroll-reveal {
        opacity: 0;
        transform: translateY(55px) scale(.985);
        transition:
            opacity .85s cubic-bezier(.22, 1, .36, 1),
            transform .85s cubic-bezier(.22, 1, .36, 1);
        will-change: opacity, transform;
    }

    .scroll-reveal.reveal-left {
        transform: translateX(-55px);
    }

    .scroll-reveal.reveal-right {
        transform: translateX(55px);
    }

    .scroll-reveal.reveal-scale {
        transform: translateY(25px) scale(.92);
    }

    .scroll-reveal.visible {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }

    .reveal-delay-1 {
        transition-delay: .08s;
    }

    .reveal-delay-2 {
        transition-delay: .16s;
    }

    .reveal-delay-3 {
        transition-delay: .24s;
    }

    .reveal-delay-4 {
        transition-delay: .32s;
    }

    .reveal-delay-5 {
        transition-delay: .40s;
    }

    @media (prefers-reduced-motion: reduce) {

        html {
            scroll-behavior: auto;
        }

        .scroll-reveal {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
        }

    }


    /* =========================================================
       HERO
    ========================================================= */

    .site-hero {
        position: relative;
        width: 100%;
        height: 680px;
        overflow: hidden;
        color: #fff;
        background: #dcefc7;
    }

    .site-hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .site-hero-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;

        background:
            linear-gradient(
                90deg,
                rgba(5, 35, 22, .62) 0%,
                rgba(10, 55, 34, .28) 42%,
                rgba(8, 45, 28, .56) 100%
            ),
            linear-gradient(
                180deg,
                rgba(8, 45, 28, .75) 0%,
                rgba(8, 55, 35, .18) 48%,
                rgba(8, 40, 25, .65) 100%
            );
    }

    .site-hero-green-glow {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;

        background:
            radial-gradient(
                circle at 75% 40%,
                rgba(190, 230, 145, .30),
                transparent 42%
            );
    }


    /* =========================================================
       Eglish NAVIGATION
    ========================================================= */

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 16px 0;
        transition: padding .3s ease;
    }

    .site-nav.scrolled {
        padding: 8px 0;
    }

    .nav-container {
        width: var(--container);
        margin: 0 auto;
        min-height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        padding: 6px 12px 6px 20px;

        border: 1px solid rgba(255, 255, 255, 0.259);
        border-radius: 20px;

        background: rgba(13, 54, 34, 0.741);

        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        box-shadow: 0 12px 40px rgba(0,0,0,.13);

        transition:
            background .3s ease,
            box-shadow .3s ease,
            min-height .3s ease;
    }

    .site-nav.scrolled .nav-container {
        background: rgba(10, 53, 34, .88);
        box-shadow: 0 12px 40px rgba(0,0,0,.20);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 13px;
        flex-shrink: 0;
        color: #fff;
        text-decoration: none;
    }

    .council-logo {
        width: 58px;
        height: 58px;
        padding: 4px;
        flex-shrink: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        background: #fff;
        border-radius: 17px;
        overflow: hidden;

        box-shadow: 0 8px 25px rgba(0,0,0,.18);
    }

    .council-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .council-name {
        display: flex;
        flex-direction: column;
        line-height: 1.15;
    }

    .council-title {
        font-size: 19px;
        font-weight: 750;
        color: #fff;
        white-space: nowrap;
    }

    .council-location {
        margin-top: 5px;
        font-size: 13px;
        color: rgba(255,255,255,.78);
        white-space: nowrap;
    }

    .nav-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 3px;

        list-style: none;
        padding: 0;
        margin: 0 0 0 auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        position: relative;
        display: block;

        padding: 11px 13px;

        color: rgba(255,255,255,.90);
        text-decoration: none;

        font-size: 13px;
        font-weight: 600;

        border-radius: 10px;

        transition:
            color .3s ease,
            background .3s ease,
            transform .3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #d1f29b;
        background: rgba(255,255,255,.09);
    }

    .nav-link::after {
        content: "";

        position: absolute;
        left: 50%;
        bottom: 4px;

        width: 0;
        height: 2px;

        transform: translateX(-50%);

        background: #c8ed91;
        border-radius: 10px;

        transition: width .3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 22px;
    }

    .nav-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 11px 18px;
        margin-left: 7px;

        border-radius: 50px;

        background: var(--green-light);
        color: #173d28;

        text-decoration: none;

        font-size: 13px;
        font-weight: 750;

        box-shadow: 0 8px 20px rgba(0,0,0,.10);

        transition: .3s ease;
    }

    .nav-button:hover {
        transform: translateY(-2px);
        background: #d8f5a7;
        color: #173d28;
    }

    .menu-toggle {
        display: none;

        width: 44px;
        height: 44px;
        margin-left: auto;

        border: 1px solid rgba(255,255,255,.25);
        border-radius: 12px;

        background: rgba(255,255,255,.08);
        color: #fff;

        cursor: pointer;
        font-size: 22px;

        align-items: center;
        justify-content: center;
    }


    /* =========================================================
       HERO CONTENT
    ========================================================= */

    .site-hero-content {
        position: relative;
        z-index: 5;

        width: var(--container);
        height: 100%;
        margin: auto;

        display: flex;
        align-items: center;
        justify-content: flex-end;

        padding-top: 75px;
        text-align: right;
    }

    .hero-text {
        width: min(680px, 100%);
        animation: heroIn 1.1s ease forwards;
    }

    .hero-subtitle {
        margin-bottom: 16px;
        margin-top: 16px;

        font-size: 12px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;

        color: #d9f3b5;
    }

    .hero-title {
        margin: 0;
         margin-top: 35px !important;
        font-size: clamp(50px, 6vw, 88px);
        line-height: .94;
        font-weight: 850;

        color: #fff;

        text-shadow:
            0 6px 30px rgba(0,40,20,.45);
    }

    .hero-title span {
        display: block;
        color: #c8ed91;
    }

    .hero-description {
        max-width: 570px;

        margin: 24px 0 28px auto;

        font-size: 16px;
        line-height: 1.75;

        color: rgba(255,255,255,.90);
    }

    .hero-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        padding: 14px 26px;

        border-radius: 50px;

        background: #b7df75;
        color: #173d28;

        font-weight: 750;
        text-decoration: none;

        box-shadow: 0 12px 35px rgba(40,80,30,.30);

        transition: .35s ease;
    }

    .hero-btn:hover {
        transform: translateY(-4px);
        background: #d5f3a4;
        color: #173d28;
    }

    .hero-secondary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 13px 22px;

        border: 1px solid rgba(255,255,255,.35);
        border-radius: 50px;

        color: #fff;
        text-decoration: none;

        background: rgba(255,255,255,.08);

        backdrop-filter: blur(10px);

        transition: .3s ease;
    }

    .hero-secondary-btn:hover {
        background: rgba(255,255,255,.16);
        color: #fff;
        transform: translateY(-3px);
    }

    .hero-leaf {
        position: absolute;
        z-index: 4;

        opacity: .50;
        pointer-events: none;

        animation: floatLeaf 5s ease-in-out infinite;
    }

    .leaf-one {
        left: 7%;
        top: 38%;
        font-size: 25px;
    }

    .leaf-two {
        left: 16%;
        bottom: 20%;
        font-size: 20px;
        animation-delay: 1.5s;
    }

    .leaf-three {
        right: 8%;
        top: 27%;
        font-size: 22px;
        animation-delay: 2s;
    }

    .hero-bottom-fade {
        position: absolute;
        z-index: 4;

        left: 0;
        bottom: 0;

        width: 100%;
        height: 110px;

        background:
            linear-gradient(
                transparent,
                rgba(247,250,245,.95)
            );

        pointer-events: none;
    }

    @keyframes floatLeaf {

        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(10deg);
        }

    }

    @keyframes heroIn {

        from {
            opacity: 0;
            transform: translateY(35px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }

    /* =========================================================
   DHIVEHI NAVIGATION
========================================================= */

.dv-site-nav {
    position: fixed;
    top: 0;
    right: 0;

    width: 100%;
    z-index: 9999;

    padding: 16px 0;

    direction: rtl;

    transition: padding .3s ease;
}


.dv-site-nav.dv-scrolled {
    padding: 8px 0;
}


.dv-nav-container {
    width: var(--container);

    margin: 0 auto;

    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 6px 20px 6px 12px;

    border: 1px solid rgba(255,255,255,.20);

    border-radius: 20px;

    background: rgba(15,63,40,.40);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 12px 40px rgba(0,0,0,.13);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        min-height .3s ease;
}


.dv-site-nav.dv-scrolled .dv-nav-container {
    background: rgba(10,53,34,.88);

    box-shadow:
        0 12px 40px rgba(0,0,0,.20);
}


/* =========================================================
   DHIVEHI LOGO
========================================================= */

.dv-nav-logo {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-shrink: 0;

    color: #fff;

    text-decoration: none;

    direction: rtl;
}


.dv-council-logo {
    width: 58px;
    height: 58px;

    padding: 4px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 17px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0,0,0,.18);
}


.dv-council-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.dv-council-name {
    display: flex;

    flex-direction: column;

    line-height: 1.15;

    text-align: right;

    direction: rtl;
}


.dv-council-title {
    font-family: 'Faruma', sans-serif;

    font-size: 20px;

    font-weight: normal;

    color: #fff;

    white-space: nowrap;
}


.dv-council-location {
    margin-top: 5px;

    font-family: 'Faruma', sans-serif;

    font-size: 15px;

    color: rgba(255,255,255,.78);

    white-space: nowrap;
}


/* =========================================================
   DHIVEHI NAV MENU
========================================================= */

.dv-nav-menu {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 3px;

    list-style: none;

    padding: 0;

    margin: 0 auto 0 0;

    direction: rtl;
}


.dv-nav-menu li {
    margin: 0;
}


/* =========================================================
   DHIVEHI NAV LINKS
========================================================= */

.dv-nav-link {
    position: relative;

    display: block;

    padding: 11px 13px;

    color: rgba(255,255,255,.90);

    text-decoration: none;

    font-family: 'Faruma', sans-serif;

    font-size: 15px;

    font-weight: normal;

    border-radius: 10px;

    direction: rtl;

    text-align: center;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;
}


.dv-nav-link:hover,
.dv-nav-link.active {
    color: #d1f29b;

    background: rgba(255,255,255,.09);
}


.dv-nav-link::after {
    content: "";

    position: absolute;

    right: 50%;
    bottom: 4px;

    width: 0;
    height: 2px;

    transform: translateX(50%);

    background: #c8ed91;

    border-radius: 10px;

    transition: width .3s ease;
}


.dv-nav-link:hover::after,
.dv-nav-link.active::after {
    width: 22px;
}


/* =========================================================
   DHIVEHI NAV BUTTON
========================================================= */

.dv-nav-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 11px 18px;

    margin-right: 7px;

    border-radius: 50px;

    background: var(--green-light);

    color: #173d28;

    text-decoration: none;

    font-family: 'Faruma', sans-serif;

    font-size: 15px;

    font-weight: normal;

    box-shadow:
        0 8px 20px rgba(0,0,0,.10);

    direction: rtl;

    transition: .3s ease;
}


.dv-nav-button:hover {
    transform: translateY(-2px);

    background: #d8f5a7;

    color: #173d28;
}


/* =========================================================
   DHIVEHI MOBILE MENU
========================================================= */

.dv-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    margin-right: auto;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 12px;

    background: rgba(255,255,255,.08);

    color: #fff;

    cursor: pointer;

    font-size: 22px;

    align-items: center;
    justify-content: center;
}


/* =========================================================
   DHIVEHI HERO
========================================================= */

.dv-site-hero-content {
    position: relative;

    z-index: 5;

    width: var(--container);

    height: 100%;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    padding-top: 75px;

    direction: rtl;

    text-align: right;
}


.dv-hero-text {
    width: min(680px, 100%);

    animation:
        dvHeroIn 1.1s ease forwards;

    direction: rtl;

    text-align: right;
}


/* =========================================================
   DHIVEHI HERO SUBTITLE
========================================================= */

.dv-hero-subtitle {
    margin-bottom: 16px;
    margin-top: 16px;

    font-family: 'Faruma', sans-serif;

    font-size: 18px;

    font-weight: normal;

    letter-spacing: 0;

    color: #d9f3b5;

    direction: rtl;

    text-align: right;
}


/* =========================================================
   DHIVEHI HERO TITLE
========================================================= */

.dv-hero-title {
    margin: 0;

    margin-top: 35px !important;

    font-family: 'Faruma', sans-serif;

    font-size: clamp(50px, 6vw, 88px);

    line-height: 1.15;

    font-weight: normal;

    color: #fff;

    direction: rtl;

    text-align: right;

    text-shadow:
        0 6px 30px rgba(0,40,20,.45);
}


.dv-hero-title span {
    display: block;

    font-family: 'Faruma', sans-serif;

    color: #c8ed91;
}


/* =========================================================
   SPACE BETWEEN DHIVEHI TITLE LINES
========================================================= */

.dv-title-line {
    display: block;
}


.dv-title-welcome {
    margin-top: 18px;
}


/* =========================================================
   DHIVEHI HERO DESCRIPTION
========================================================= */

.dv-hero-description {
    max-width: 570px;

    margin: 24px 0 28px 0;

    font-family: 'Faruma', sans-serif;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255,255,255,.90);

    direction: rtl;

    text-align: right;
}


/* =========================================================
   DHIVEHI HERO ACTIONS
========================================================= */

.dv-hero-actions {
    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 12px;

    flex-wrap: wrap;

    direction: rtl;
}


.dv-hero-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 26px;

    border-radius: 50px;

    background: #b7df75;

    color: #173d28;

    font-family: 'Faruma', sans-serif;

    font-size: 16px;

    font-weight: normal;

    text-decoration: none;

    box-shadow:
        0 12px 35px rgba(40,80,30,.30);

    transition: .35s ease;
}


.dv-hero-btn:hover {
    transform: translateY(-4px);

    background: #d5f3a4;

    color: #173d28;
}


.dv-hero-secondary-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 13px 22px;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 50px;

    color: #fff;

    text-decoration: none;

    font-family: 'Faruma', sans-serif;

    font-size: 16px;

    background: rgba(255,255,255,.08);

    backdrop-filter: blur(10px);

    direction: rtl;

    transition: .3s ease;
}


.dv-hero-secondary-btn:hover {
    background: rgba(255,255,255,.16);

    color: #fff;

    transform: translateY(-3px);
}


/* =========================================================
   DHIVEHI HERO LEAVES
========================================================= */

.dv-hero-leaf {
    position: absolute;

    z-index: 4;

    opacity: .50;

    pointer-events: none;

    animation:
        dvFloatLeaf 5s ease-in-out infinite;
}


.dv-leaf-one {
    right: 7%;
    top: 38%;

    font-size: 25px;
}


.dv-leaf-two {
    right: 16%;
    bottom: 20%;

    font-size: 20px;

    animation-delay: 1.5s;
}


.dv-leaf-three {
    left: 8%;
    top: 27%;

    font-size: 22px;

    animation-delay: 2s;
}


/* =========================================================
   DHIVEHI HERO BOTTOM FADE
========================================================= */

.dv-hero-bottom-fade {
    position: absolute;

    z-index: 4;

    right: 0;

    bottom: 0;

    width: 100%;

    height: 110px;

    background:
        linear-gradient(
            transparent,
            rgba(247,250,245,.95)
        );

    pointer-events: none;
}


/* =========================================================
   DHIVEHI ANIMATIONS
========================================================= */

@keyframes dvFloatLeaf {

    0%, 100% {
        transform:
            translateY(0)
            rotate(0deg);
    }

    50% {
        transform:
            translateY(-20px)
            rotate(10deg);
    }

}


@keyframes dvHeroIn {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   DHIVEHI RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .dv-nav-link {
        padding: 10px 9px;

        font-size: 14px;
    }

}


@media (max-width: 900px) {

    .dv-menu-toggle {
        display: flex;
    }


    .dv-nav-menu {
        display: none;

        position: absolute;

        top: calc(100% + 8px);

        right: 3%;

        width: min(360px, 94vw);

        padding: 15px;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        background: rgba(10,53,34,.97);

        border: 1px solid rgba(255,255,255,.15);

        border-radius: 16px;

        box-shadow:
            0 15px 40px rgba(0,0,0,.25);
    }


    .dv-nav-menu.dv-show {
        display: flex;
    }


    .dv-nav-link {
        width: 100%;

        box-sizing: border-box;

        text-align: right;
    }


    .dv-nav-button {
        width: 100%;

        box-sizing: border-box;

        justify-content: flex-start;

        margin-right: 0;
    }


    .dv-site-hero-content {
        justify-content: center;

        padding-top: 100px;

        text-align: center;
    }


    .dv-hero-text {
        text-align: center;
    }


    .dv-hero-subtitle,
    .dv-hero-title,
    .dv-hero-description {
        text-align: center;
    }


    .dv-hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .dv-hero-actions {
        justify-content: center;
    }

}


@media (max-width: 500px) {

    .dv-nav-container {
        width: 92%;
    }


    .dv-council-logo {
        width: 48px;
        height: 48px;
    }


    .dv-council-title {
        font-size: 17px;
    }


    .dv-council-location {
        font-size: 13px;
    }


    .dv-hero-title {
        font-size: clamp(42px, 13vw, 60px);

        line-height: 1.2;
    }


    .dv-hero-subtitle {
        font-size: 16px;
    }


    .dv-hero-description {
        font-size: 16px;
    }

}


    


    /* =========================================================
       MAIN
    ========================================================= */

    .council-main {
        width: var(--container);
        margin: 0 auto;

        position: relative;
        z-index: 10;
    }

    .section {
        padding: 95px 0;
    }

    .section-header {
        max-width: 760px;
        margin: 0 auto 50px;
        text-align: center;
    }

    .section-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        margin-bottom: 12px;
        padding: 7px 13px;

        border-radius: 50px;

        background: #eaf5d9;
        color: #327046;

        font-size: 11px;
        font-weight: 750;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .section-title {
        margin: 0;

        font-size: clamp(32px, 4vw, 50px);
        line-height: 1.05;

        color: #153b2a;
        font-weight: 800;
    }

    .section-description {
        margin: 18px auto 0;

        max-width: 680px;

        color: #6b7b71;

        font-size: 15px;
        line-height: 1.8;
    }


    /* =========================================================
       WELCOME
    ========================================================= */

    .welcome-section {
        padding-top: 55px;
    }

    .welcome-grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 35px;
        align-items: stretch;
    }

    .welcome-card {
        position: relative;
        overflow: hidden;

        padding: 45px;

        border-radius: 30px;

        background:
            linear-gradient(
                135deg,
                #ffffff,
                #f0f7e8
            );

        border: 1px solid rgba(40,90,55,.08);

        box-shadow: var(--shadow);

        transition:
            transform .35s ease,
            box-shadow .35s ease;
    }

    .welcome-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 70px rgba(19,57,37,.14);
    }

    .welcome-card::after {
        content: "";

        position: absolute;

        right: -100px;
        bottom: -120px;

        width: 300px;
        height: 300px;

        border-radius: 50%;

        background: rgba(183,223,117,.18);
    }

    .welcome-card h2 {
        margin: 0 0 18px;

        font-size: clamp(28px, 3vw, 42px);
        color: #153b2a;
    }

    .welcome-card p {
        position: relative;
        z-index: 2;

        margin: 0;

        color: #66776c;
        line-height: 1.85;
        font-size: 15px;
    }

    .welcome-points {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
        margin-top: 28px;
    }

    .welcome-point {
        display: flex;
        align-items: center;
        gap: 10px;

        padding: 14px;

        border-radius: 15px;

        background: rgba(255,255,255,.75);
        color: #28563b;

        font-size: 13px;
        font-weight: 650;
    }

    .welcome-point-icon {
        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        border-radius: 10px;

        background: #dff1be;
        color: #2c6641;
    }

    .quick-panel {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 15px;
    }

    .quick-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        min-height: 180px;
        padding: 25px;

        border-radius: 25px;

        color: #fff;
        text-decoration: none;

        background:
            linear-gradient(
                145deg,
                #1c6241,
                #0e3d28
            );

        box-shadow: var(--shadow);

        transition:
            transform .35s ease,
            box-shadow .35s ease;
    }

    .quick-card:nth-child(2) {
        background:
            linear-gradient(
                145deg,
                #729b45,
                #466d31
            );
    }

    .quick-card:nth-child(3) {
        background:
            linear-gradient(
                145deg,
                #285f55,
                #163e38
            );
    }

    .quick-card:nth-child(4) {
        background:
            linear-gradient(
                145deg,
                #536f39,
                #314b26
            );
    }

    .quick-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 25px 55px rgba(20,70,45,.20);
        color: #fff;
    }

    .quick-icon {
        width: 45px;
        height: 45px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 14px;

        background: rgba(255,255,255,.13);

        font-size: 20px;
    }

    .quick-card h3 {
        margin: 22px 0 5px;
        font-size: 17px;
    }

    .quick-card span {
        font-size: 12px;
        opacity: .75;
    }


    /* =========================================================
       SERVICES
    ========================================================= */

    .services-section {
        position: relative;

        padding: 100px 0;

        border-radius: 35px;

        background:
            linear-gradient(
                135deg,
                #edf6e3,
                #f8fbf5
            );
    }

    .services-inner {
        width: 94%;
        margin: auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .service-card {
        position: relative;

        display: flex;
        flex-direction: column;

        padding: 28px;
        min-height: 260px;

        border: 1px solid rgba(25,70,45,.08);
        border-radius: 24px;

        background: rgba(255,255,255,.90);

        box-shadow: 0 15px 45px rgba(30,70,45,.07);

        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 55px rgba(30,70,45,.13);
    }

    .service-icon {
        width: 52px;
        height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 15px;

        background: #e2f1c8;
        color: #2b6742;

        font-size: 22px;
    }

    .service-card h3 {
        margin: 20px 0 10px;
        font-size: 19px;
        color: #183e2c;
    }

    .service-card p {
        margin: 0;

        color: #718076;

        font-size: 13px;
        line-height: 1.7;
    }

    .service-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;

        margin-top: auto;
        padding-top: 22px;

        color: #2d6943;

        font-size: 13px;
        font-weight: 750;

        text-decoration: none;
    }

    .service-link:hover {
        color: #163f29;
    }

    .online-banner {
        margin-top: 25px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        padding: 30px 35px;

        border-radius: 25px;

        color: #fff;

        background:
            linear-gradient(
                120deg,
                #103f2a,
                #28704a
            );

        box-shadow: 0 20px 55px rgba(20,70,45,.15);
    }

    .online-banner h3 {
        margin: 0 0 7px;
        font-size: 22px;
    }

    .online-banner p {
        margin: 0;
        opacity: .78;
        font-size: 13px;
    }

    .online-banner a {
        flex-shrink: 0;

        padding: 13px 20px;

        border-radius: 50px;

        background: #b7df75;
        color: #173d28;

        text-decoration: none;

        font-weight: 750;
        font-size: 13px;
    }


    /* =========================================================
       VACANCIES
    ========================================================= */

    .vacancy-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .vacancy-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;

        padding: 28px;

        border: 1px solid rgba(30,70,45,.08);
        border-radius: 22px;

        background: #fff;

        box-shadow: 0 15px 45px rgba(30,70,45,.06);

        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }

    .vacancy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 55px rgba(30,70,45,.12);
    }

    .vacancy-left {
        display: flex;
        align-items: center;
        gap: 17px;
    }

    .vacancy-icon {
        width: 48px;
        height: 48px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 14px;

        background: #e6f2d3;

        font-size: 20px;
    }

    .vacancy-card h3 {
        margin: 0 0 6px;
        color: #183e2c;
        font-size: 17px;
    }

    .vacancy-card p {
        margin: 0;
        color: #7a877f;
        font-size: 12px;
    }

    .vacancy-btn {
        flex-shrink: 0;

        padding: 11px 17px;

        border-radius: 50px;

        color: #24603d;
        background: #edf6df;

        text-decoration: none;

        font-size: 12px;
        font-weight: 750;
    }


    /* =========================================================
       CONSULTATION
    ========================================================= */

    .consultation-section {
        padding-top: 20px;
    }

    .consultation-grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 25px;
    }

    .consultation-feature {
        position: relative;
        overflow: hidden;

        padding: 40px;

        border-radius: 28px;

        color: #fff;

        background:
            linear-gradient(
                135deg,
                #184f35,
                #0d3826
            );
    }

    .consultation-feature::after {
        content: "✦";

        position: absolute;

        right: 35px;
        top: 25px;

        font-size: 110px;

        color: rgba(183,223,117,.10);
    }

    .consultation-feature h3 {
        position: relative;
        z-index: 2;

        margin: 0 0 15px;

        font-size: 28px;
    }

    .consultation-feature p {
        position: relative;
        z-index: 2;

        max-width: 600px;

        margin: 0;

        line-height: 1.8;

        color: rgba(255,255,255,.78);

        font-size: 14px;
    }

    .consultation-feature a {
        position: relative;
        z-index: 2;

        display: inline-flex;

        margin-top: 25px;
        padding: 12px 20px;

        border-radius: 50px;

        background: #b7df75;
        color: #173d28;

        font-weight: 750;
        text-decoration: none;

        font-size: 13px;
    }

    .consultation-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .consultation-item {
        padding: 20px;

        border-radius: 18px;

        background: #fff;

        border: 1px solid rgba(30,70,45,.08);

        box-shadow: 0 10px 35px rgba(30,70,45,.05);

        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }

    .consultation-item:hover {
        transform: translateX(5px);
        box-shadow: 0 15px 40px rgba(30,70,45,.09);
    }

    .consultation-item h4 {
        margin: 0 0 7px;
        color: #183e2c;
        font-size: 15px;
    }

    .consultation-item p {
        margin: 0;

        color: #79867e;

        font-size: 12px;
        line-height: 1.6;
    }


    /* =========================================================
       WEATHER
    ========================================================= */

    .weather-section {
        padding-top: 50px;
    }

    .weather-card {
        position: relative;
        overflow: hidden;

        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 30px;

        padding: 40px;

        border-radius: 30px;

        color: #fff;

        background:
            linear-gradient(
                135deg,
                #164f4b,
                #0d392f
            );

        box-shadow: 0 25px 65px rgba(15,65,50,.16);
    }

    .weather-card::before {
        content: "";

        position: absolute;

        width: 350px;
        height: 350px;

        right: -120px;
        top: -150px;

        border-radius: 50%;

        background: rgba(183,223,117,.13);
    }

    .weather-main,
    .weather-details {
        position: relative;
        z-index: 2;
    }

    .weather-location {
        display: flex;
        align-items: center;
        gap: 8px;

        color: #c9e99c;

        font-size: 12px;
        font-weight: 750;

        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .weather-status {
        margin: 18px 0 5px;

        font-size: 48px;
        font-weight: 800;
        line-height: 1;
    }

    .weather-description {
        margin: 8px 0 0;

        color: rgba(255,255,255,.75);

        font-size: 14px;
    }

    .weather-updated {
        margin-top: 20px;

        color: rgba(255,255,255,.50);

        font-size: 11px;
    }

    .weather-details {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        align-content: center;
    }

    .weather-detail {
        padding: 18px;

        border-radius: 18px;

        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.08);
    }

    .weather-detail span {
        display: block;

        margin-bottom: 5px;

        color: rgba(255,255,255,.55);

        font-size: 11px;
    }

    .weather-detail strong {
        font-size: 18px;
        color: #fff;
    }

    .weather-loading {
        color: rgba(255,255,255,.75);
        font-size: 14px;
    }


    /* =========================================================
       CONTACT
    ========================================================= */

    .contact-section {
        padding-bottom: 100px;
    }

    .contact-cta {
        display: grid;
        grid-template-columns: 1fr auto;

        align-items: center;
        gap: 30px;

        padding: 42px;

        border-radius: 30px;

        background:
            linear-gradient(
                135deg,
                #ffffff,
                #edf6e4
            );

        border: 1px solid rgba(30,70,45,.08);

        box-shadow: var(--shadow);
    }

    .contact-cta h2 {
        margin: 0 0 10px;
        color: #183e2c;
        font-size: 30px;
    }

    .contact-cta p {
        margin: 0;

        color: #718076;

        line-height: 1.7;
        font-size: 14px;
    }

    .contact-btn {
        padding: 14px 23px;

        border-radius: 50px;

        background: #1b5b3b;
        color: #fff;

        text-decoration: none;

        font-size: 13px;
        font-weight: 750;

        white-space: nowrap;
    }


    /* =========================================================
       FOOTER
    ========================================================= */

    .council-footer {
        margin-top: 0;

        color: #fff;

        background: #0b3021;
    }

    .footer-main {
        width: var(--container);
        margin: auto;

        padding: 70px 0 45px;

        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 45px;
    }

    .footer-brand {
        max-width: 360px;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        gap: 12px;

        text-decoration: none;
        color: #fff;
    }

    .footer-logo-image {
        width: 48px;
        height: 48px;

        padding: 3px;

        border-radius: 13px;

        background: #fff;

        object-fit: contain;
    }

    .footer-logo-text {
        font-size: 17px;
        font-weight: 750;
    }

    .footer-brand p {
        margin: 22px 0 0;

        color: rgba(255,255,255,.62);

        font-size: 13px;
        line-height: 1.8;
    }

    .footer-heading {
        margin: 0 0 20px;

        color: #d3eeaa;

        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 11px;
    }

    .footer-links a {
        color: rgba(255,255,255,.64);
        text-decoration: none;

        font-size: 13px;

        transition: color .25s ease;
    }

    .footer-links a:hover {
        color: #c8ed91;
    }

    .footer-contact-item {
        margin-bottom: 12px;

        color: rgba(255,255,255,.65);

        font-size: 13px;
        line-height: 1.6;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-bottom-inner {
        width: var(--container);
        margin: auto;

        min-height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 20px;

        color: rgba(255,255,255,.48);

        font-size: 11px;
    }

    .footer-bottom-links {
        display: flex;
        gap: 18px;
    }

    .footer-bottom-links a {
        color: rgba(255,255,255,.48);
        text-decoration: none;
    }


    /* =========================================================
       COUNCILOR CHATBOT
    ========================================================= */

    .councilor-widget {
        position: fixed;

        right: 25px;
        bottom: 25px;

        z-index: 10000;
    }

    .councilor-button {
        position: relative;

        width: 64px;
        height: 64px;

        border: none;
        border-radius: 50%;

        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;

        background:
            linear-gradient(
                135deg,
                #c8ed91,
                #82bb55
            );

        box-shadow:
            0 15px 40px
            rgba(20,70,40,.30);

        transition:
            transform .3s ease,
            box-shadow .3s ease;
    }

    .councilor-button:hover {
        transform:
            translateY(-4px)
            scale(1.03);

        box-shadow:
            0 20px 45px
            rgba(20,70,40,.38);
    }

    .councilor-button.has-message::after {
        content: "";

        position: absolute;

        right: 1px;
        top: 2px;

        width: 13px;
        height: 13px;

        border: 3px solid #fff;
        border-radius: 50%;

        background: #ef6b62;
    }

    .fish-icon {
        width: 37px;
        height: 37px;
    }

    .councilor-label {
        position: absolute;

        right: 74px;
        bottom: 10px;

        padding: 8px 12px;

        border-radius: 10px;

        color: #fff;

        background: #123f2b;

        font-size: 11px;
        font-weight: 750;

        white-space: nowrap;

        box-shadow: 0 8px 25px rgba(0,0,0,.15);
    }

    .councilor-label::after {
        content: "";

        position: absolute;

        right: -5px;
        top: 50%;

        width: 10px;
        height: 10px;

        transform:
            translateY(-50%)
            rotate(45deg);

        background: #123f2b;
    }

    .councilor-chat {
        position: absolute;

        right: 0;
        bottom: 78px;

        width: 370px;

        display: none;

        overflow: hidden;

        border-radius: 22px;

        background: #fff;

        border: 1px solid rgba(20,70,45,.10);

        box-shadow:
            0 25px 70px
            rgba(15,50,30,.22);
    }

    .councilor-chat.show {
        display: block;

        animation:
            chatIn .28s
            cubic-bezier(.22,1,.36,1)
            forwards;
    }

    @keyframes chatIn {

        from {
            opacity: 0;
            transform:
                translateY(15px)
                scale(.94);
        }

        to {
            opacity: 1;
            transform:
                translateY(0)
                scale(1);
        }

    }

    .councilor-header {
        display: flex;
        align-items: center;
        gap: 12px;

        padding: 16px 18px;

        color: #fff;

        background:
            linear-gradient(
                135deg,
                #174d34,
                #0d3826
            );
    }

    .councilor-header-fish {
        width: 38px;
        height: 38px;

        padding: 6px;

        border-radius: 12px;

        background: rgba(255,255,255,.10);
    }

    .councilor-header h4 {
        margin: 0;
        font-size: 14px;
    }

    .councilor-header span {
        display: block;

        margin-top: 3px;

        color: rgba(255,255,255,.60);

        font-size: 10px;
    }

    .councilor-close {
        margin-left: auto;

        width: 32px;
        height: 32px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        border-radius: 10px;

        background: rgba(255,255,255,.08);
        color: #fff;

        cursor: pointer;

        font-size: 17px;
    }

    .councilor-body {
        height: 390px;

        display: flex;
        flex-direction: column;

        background: #f9fbf8;
    }

    .councilor-messages {
        flex: 1;

        overflow-y: auto;

        padding: 18px;

        scroll-behavior: smooth;
    }

    .chat-row {
        display: flex;
        margin-bottom: 12px;
    }

    .chat-row.bot {
        justify-content: flex-start;
    }

    .chat-row.user {
        justify-content: flex-end;
    }

    .chat-message {
        max-width: 82%;

        padding: 11px 13px;

        border-radius: 15px;

        font-size: 12px;
        line-height: 1.6;

        word-break: break-word;
    }

    .chat-row.bot .chat-message {
        border-radius: 15px 15px 15px 4px;

        background: #eaf4e4;

        color: #3f5d4b;
    }

    .chat-row.user .chat-message {
        border-radius: 15px 15px 4px 15px;

        background: #1c6241;

        color: #fff;
    }

    .chat-time {
        display: block;

        margin-top: 5px;

        opacity: .55;

        font-size: 9px;
    }

    .councilor-typing {
        display: none;

        padding: 0 18px 10px;
    }

    .councilor-typing.show {
        display: block;
    }

    .typing-dots {
        display: inline-flex;
        align-items: center;
        gap: 4px;

        padding: 9px 12px;

        border-radius: 14px 14px 14px 3px;

        background: #eaf4e4;
    }

    .typing-dots span {
        width: 5px;
        height: 5px;

        border-radius: 50%;

        background: #5b8067;

        animation:
            typingDot 1s infinite;
    }

    .typing-dots span:nth-child(2) {
        animation-delay: .15s;
    }

    .typing-dots span:nth-child(3) {
        animation-delay: .30s;
    }

    @keyframes typingDot {

        0%, 60%, 100% {
            opacity: .3;
            transform: translateY(0);
        }

        30% {
            opacity: 1;
            transform: translateY(-3px);
        }

    }

    .councilor-input-area {
        padding: 12px;

        border-top: 1px solid #e4ebe2;

        background: #fff;
    }

    .councilor-form {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .councilor-input {
        min-width: 0;
        flex: 1;

        height: 43px;

        padding: 0 13px;

        border: 1px solid #dce7da;
        border-radius: 13px;

        outline: none;

        background: #f8fbf7;

        color: #234735;

        font-size: 12px;

        transition:
            border-color .2s ease,
            box-shadow .2s ease,
            background .2s ease;
    }

    .councilor-input:focus {
        border-color: #80ae68;

        background: #fff;

        box-shadow:
            0 0 0 3px
            rgba(128,174,104,.13);
    }

    .councilor-send {
        width: 43px;
        height: 43px;

        flex-shrink: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        border-radius: 13px;

        background: #1c6241;
        color: #fff;

        cursor: pointer;

        font-size: 18px;

        transition:
            transform .2s ease,
            background .2s ease;
    }

    .councilor-send:hover {
        transform: translateY(-2px);
        background: #123f2b;
    }

    .councilor-send:disabled {
        opacity: .5;
        cursor: not-allowed;
        transform: none;
    }

    .chat-reset {
        display: none;

        margin-top: 8px;

        width: 100%;

        padding: 8px;

        border: 0;
        border-radius: 10px;

        background: #eef6e8;

        color: #326442;

        cursor: pointer;

        font-size: 10px;
        font-weight: 700;
    }

    .chat-reset.show {
        display: block;
    }


    /* =========================================================
       RESPONSIVE TABLET
    ========================================================= */

    @media (max-width: 1200px) {

        .nav-link {
            padding: 10px 9px;
            font-size: 12px;
        }

        .nav-button {
            padding: 10px 14px;
        }

        .council-title {
            font-size: 17px;
        }

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

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

    }


    /* =========================================================
       MOBILE
    ========================================================= */

    @media (max-width: 900px) {

        .site-hero {
            height: 600px;
        }

        .nav-container {
            min-height: 62px;

            padding:
                5px
                8px
                5px
                12px;
        }

        .nav-menu {
            position: absolute;

            top: calc(100% + 10px);
            left: 0;

            width: 100%;

            display: none;

            flex-direction: column;
            align-items: stretch;

            gap: 5px;

            padding: 12px;

            border: 1px solid rgba(255,255,255,.20);
            border-radius: 17px;

            background: rgba(10,55,35,.95);

            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);

            box-shadow: 0 20px 50px rgba(0,0,0,.25);
        }

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

        .nav-menu li {
            width: 100%;
        }

        .nav-link {
            width: 100%;

            padding: 13px 15px;

            text-align: center;

            font-size: 14px;
        }

        .nav-button {
            width: 100%;

            margin: 5px 0 0;

            padding: 13px;
        }

        .menu-toggle {
            display: flex;
        }

        .site-hero-content {
            width: var(--container);

            justify-content: center;

            text-align: center;

            padding-top: 75px;
        }

        .hero-text {
            width: 100%;
        }

        .hero-subtitle {
            font-size: 10px;
            letter-spacing: 3px;
        }

        .hero-title {
            font-size: clamp(43px, 13vw, 70px);
        }

        .hero-description {
            margin: 20px auto 25px;
            font-size: 14px;
        }

        .hero-actions {
            justify-content: center;
        }

        .welcome-grid,
        .consultation-grid,
        .weather-card {
            grid-template-columns: 1fr;
        }

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

        .online-banner {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-main {
            grid-template-columns: repeat(2,1fr);
            gap: 35px;
        }

    }


    /* =========================================================
       SMALL MOBILE
    ========================================================= */

    @media (max-width: 600px) {

        .site-hero {
            height: 560px;
        }

        .site-nav {
            padding: 10px 0;
        }

        .nav-container {
            width: 94%;
            border-radius: 15px;
        }

        .council-logo {
            width: 47px;
            height: 47px;
            border-radius: 13px;
        }

        .nav-logo {
            gap: 9px;
        }

        .council-title {
            font-size: 14px;
        }

        .council-location {
            font-size: 10px;
            margin-top: 3px;
        }

        .section {
            padding: 70px 0;
        }

        .welcome-card {
            padding: 28px;
        }

        .welcome-points {
            grid-template-columns: 1fr;
        }

        .quick-panel {
            grid-template-columns: 1fr 1fr;
        }

        .services-section {
            padding: 70px 0;
        }

        .services-inner {
            width: 90%;
        }

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

        .vacancy-card {
            align-items: flex-start;
            flex-direction: column;
        }

        .vacancy-btn {
            width: 100%;
            text-align: center;
        }

        .weather-card {
            padding: 28px;
        }

        .weather-details {
            grid-template-columns: 1fr 1fr;
        }

        .contact-cta {
            grid-template-columns: 1fr;
            padding: 30px;
        }

        .contact-btn {
            text-align: center;
        }

        .footer-main {
            grid-template-columns: 1fr;
            padding: 55px 0 35px;
        }

        .footer-bottom-inner {
            flex-direction: column;
            justify-content: center;

            padding: 20px 0;

            text-align: center;
        }

        .councilor-widget {
            right: 16px;
            bottom: 16px;
        }

        .councilor-chat {
            right: -5px;

            width:
                min(
                    370px,
                    calc(100vw - 32px)
                );
        }

        .councilor-label {
            display: none;
        }

        .councilor-body {
            height: 380px;
        }

    }


    @media (max-width: 400px) {

        .hero-title {
            font-size: 42px;
        }

        .council-title {
            font-size: 13px;
        }

        .council-location {
            font-size: 9px;
        }

        .quick-panel {
            grid-template-columns: 1fr;
        }

        .weather-details {
            grid-template-columns: 1fr;
        }

    }



    .sub-page-header{
       border-radius: 10px;
        background-color: rgba(229, 207, 174, 0.584);
    }

    .sub-opage-content{
        padding: 15px;;
    }

    .sub-page-header{
        font-family: Arial, Helvetica, sans-serif;
        font-weight: bolder;
        background-color: rgba(229, 207, 174, 0.584);
        padding: 2px;;
    }


        .team-section {
            background: rgba(76, 175, 80, 0.06);
            border-top: 1px solid rgba(76, 175, 80, 0.08);
            border-bottom: 1px solid rgba(76, 175, 80, 0.08);
            border-radius: 10px;
    }

    .team-member {
        padding: 25px 15px;
        border-radius: 20px;
        
        transition: all 0.3s ease;
    }

    .team-member:hover {
       
        transform: translateY(-5px);
    }

    .team-member img {
        transition: all 0.3s ease;
    }

    .team-member:hover img {
        transform: scale(1.04);
    }


     /* =========================================================
       Status / About
    ========================================================= */


    .stats-section{
        background-color: rgba(141, 165, 210, 0.225);
        border-radius: 10px;
    }


    /* ============================================================
   COUNCIL PAGE
   FLOATING / SCROLL EFFECTS
============================================================ */

/* Initial state for elements that float into view */
.scroll-float {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Visible state */
.scroll-float.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* ============================================================
   STATISTICS CARDS
============================================================ */

.stats-section .card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform;
}

/* Floating hover effect */
.stats-section .card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 18px 40px rgba(25, 59, 40, 0.14) !important;
}





/* ============================================================
   GENTLE FLOATING ANIMATION
============================================================ */

@keyframes gentleFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }

}


/*
 * Only cards marked with .floating-card receive
 * the continuous floating animation.
 */
.floating-card.visible {
    animation:
        gentleFloat 4s ease-in-out infinite;
}


/* ============================================================
   STAGGERED ANIMATION
============================================================ */

.scroll-float.delay-1 {
    transition-delay: 0.08s;
}

.scroll-float.delay-2 {
    transition-delay: 0.16s;
}

.scroll-float.delay-3 {
    transition-delay: 0.24s;
}

.scroll-float.delay-4 {
    transition-delay: 0.32s;
}

.scroll-float.delay-5 {
    transition-delay: 0.40s;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 767px) {

    .scroll-float {
        transform: translateY(35px) scale(0.98);
    }

    .stats-section .card:hover {
        transform: translateY(-5px);
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .scroll-float {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .floating-card.visible {
        animation: none;
    }

    .stats-section .card,
    .team-member,
    .team-member img {
        transition: none;
    }

}


/* ============================================================
   HULHUDHOO SATELLITE MAP
============================================================ */

.hulhudhoo-map-section {
    position: relative;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
}


/* ============================================================
   MAP CONTAINER
============================================================ */

.hulhudhoo-map-wrapper {
    position: relative;

    width: 100%;
    height: 620px;

    overflow: hidden;

    background: #dce8e1;
}


/* Google Maps iframe */

.hulhudhoo-map {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    transform: scale(1.02);

    filter: saturate(1.08) contrast(1.03);

}


/* ============================================================
   GRADIENT OVERLAY
============================================================ */

.hulhudhoo-map-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(7, 30, 19, 0.82) 0%,
            rgba(7, 30, 19, 0.62) 28%,
            rgba(7, 30, 19, 0.18) 58%,
            rgba(7, 30, 19, 0.02) 100%
        );
}


/* ============================================================
   INFORMATION CARD
============================================================ */

.hulhudhoo-map-card {
    position: absolute;

    z-index: 5;

    top: 50%;
    left: 7%;

    width: min(470px, 88%);

    padding: 38px;

    transform:
        translateY(-50%);

    border-radius: 24px;

    background:
        rgba(12, 38, 25, 0.91);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    color: white;
}


/* ============================================================
   EYEBROW
============================================================ */

.map-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #78d6a1;

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.map-eyebrow i {
    font-size: 0.85rem;
}


/* ============================================================
   TITLE
============================================================ */

.hulhudhoo-map-card h1 {
    margin: 12px 0 8px;

    color: #ffffff;

    font-size: clamp(
        2.6rem,
        5vw,
        4.5rem
    );

    font-weight: 750;

    line-height: 1;

    letter-spacing: -2px;
}


/* Subtitle */

.hulhudhoo-map-card > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 1.05rem;

    line-height: 1.6;
}


/* ============================================================
   DIVIDER
============================================================ */

.map-divider {
    width: 55px;

    height: 3px;

    margin: 23px 0;

    border-radius: 10px;

    background: #35b86f;
}


/* ============================================================
   MAP DETAILS
============================================================ */

.map-details {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 28px;
}


.map-detail {
    display: flex;

    align-items: center;

    gap: 13px;
}


.map-detail > i {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    color: #72d69a;

    background:
        rgba(72, 207, 123, 0.12);
}


.map-detail small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.50);

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.map-detail strong {
    display: block;

    color: #ffffff;

    font-size: 0.91rem;

    font-weight: 600;
}


/* ============================================================
   EXPLORE BUTTON
============================================================ */

.map-explore-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 12px 19px;

    color: #ffffff;

    background: #198754;

    border-radius: 10px;

    font-size: 0.88rem;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.map-explore-btn:hover {
    color: #ffffff;

    background: #157347;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(25, 135, 84, 0.30);
}


.map-explore-btn i {
    font-size: 0.78rem;
}


/* ============================================================
   MAP LABEL
============================================================ */

    .map-label {
        position: absolute;

        z-index: 4;

        right: 35px;
        bottom: 35px;

        display: flex;

        align-items: center;

        gap: 9px;

        padding: 10px 15px;

        color: #193b28;

        background:
            rgba(255, 255, 255, 0.92);

        border-radius: 50px;

        box-shadow:
            0 8px 25px rgba(0, 0, 0, 0.15);

        font-size: 0.83rem;

        font-weight: 700;

        backdrop-filter: blur(8px);
    }


    /* Location pulse */

    .map-pulse {
        position: relative;

        display: block;

        width: 9px;
        height: 9px;

        border-radius: 50%;

        background: #198754;

        box-shadow:
            0 0 0 0 rgba(25, 135, 84, 0.55);

        animation:
            mapPulse 2s infinite;
    }


    @keyframes mapPulse {

        0% {
            box-shadow:
                0 0 0 0 rgba(25, 135, 84, 0.55);
        }

        70% {
            box-shadow:
                0 0 0 10px rgba(25, 135, 84, 0);
        }

        100% {
            box-shadow:
                0 0 0 0 rgba(25, 135, 84, 0);
        }

    }


    /* ============================================================
    MOBILE
    ============================================================ */

    @media (max-width: 991px) {

        .hulhudhoo-map-wrapper {
            height: 650px;
        }

        .hulhudhoo-map-card {
            top: auto;
            bottom: 25px;
            left: 50%;

            width: calc(100% - 30px);

            padding: 28px;

            transform:
                translateX(-50%);
        }

        .hulhudhoo-map-overlay {
            background:
                linear-gradient(
                    180deg,
                    rgba(7, 30, 19, 0.05) 0%,
                    rgba(7, 30, 19, 0.15) 35%,
                    rgba(7, 30, 19, 0.88) 72%,
                    rgba(7, 30, 19, 0.96) 100%
                );
        }

        .map-label {
            top: 25px;
            right: 20px;
            bottom: auto;
        }

    }


    @media (max-width: 575px) {

        .hulhudhoo-map-wrapper {
            height: 680px;
        }

        .hulhudhoo-map-card {
            bottom: 15px;

            width: calc(100% - 20px);

            padding: 24px;

            border-radius: 20px;
        }

        .hulhudhoo-map-card h1 {
            font-size: 2.8rem;
        }

        .hulhudhoo-map-card > p {
            font-size: 0.94rem;
        }

        .map-details {
            gap: 12px;
        }

        .map-detail strong {
            font-size: 0.82rem;
        }

        .map-label {
            top: 15px;
            right: 15px;
        }

    }


/* =========================================================
   ANNOUNCEMENTS — COMPACT OFFICIAL DESIGN
========================================================= */

.announcements-section {
    width: 100%;
    margin: 0 auto;

    /* Reduce excessive spacing */
}


.announcements-section .section-kicker {
    color: #438563;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.announcements-section .section-title {
    margin-bottom: 0;
}


/* =========================================================
   MAIN GRID
========================================================= */

.announcements-layout {
    display: grid;

    /*
     * Featured announcement slightly larger,
     * but both sides remain balanced.
     */
    grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);

    gap: 22px;

    width: auto;

    margin: 0;
}


/* =========================================================
   FEATURED ANNOUNCEMENT
========================================================= */

.featured-announcement {
    position: relative;

    min-height: 340px;

    display: flex;
    align-items: center;

    padding: 38px 40px;

    overflow: hidden;

    border-radius: 26px;

    /*
     * LIGHTER GREEN
     */
    background:
        linear-gradient(
            135deg,
            #eaf7dc 0%,
            #dcefcf 48%,
            #d2e8c5 100%
        );

    border: 1px solid #d2e6c9;

    box-shadow:
        0 16px 35px rgba(48, 91, 61, .08);

    isolation: isolate;
}


/* =========================================================
   OFFICIAL BACKGROUND DESIGN
========================================================= */

.featured-announcement::before {
    content: "";

    position: absolute;

    width: 390px;
    height: 390px;

    right: -125px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    border: 1px solid rgba(42, 108, 73, .10);

    box-shadow:
        0 0 0 25px rgba(42, 108, 73, .025),
        0 0 0 55px rgba(42, 108, 73, .018),
        0 0 0 90px rgba(42, 108, 73, .012);

    z-index: -1;
}


.featured-announcement::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: 40px;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(64, 137, 91, .13) 0%,
            rgba(64, 137, 91, .06) 42%,
            transparent 70%
        );

    z-index: -1;
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


/* =========================================================
   FEATURED LABEL
========================================================= */

.featured-label {
    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;

    color: #4f8e69;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.3px;
}


/* Small green indicator */
.featured-label::before {
    content: "";

    width: 7px;
    height: 7px;

    margin-right: 9px;

    border-radius: 50%;

    background: #8fcf45;

    box-shadow:
        0 0 0 4px rgba(143, 207, 69, .12);
}


/* =========================================================
   FEATURED TITLE
========================================================= */

.featured-announcement h3 {
    margin: 0 0 14px;

    color: #24563d;

    font-size: 29px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: -.5px;
}


/* =========================================================
   FEATURED DESCRIPTION
========================================================= */

.featured-announcement p {
    max-width: 630px;

    margin: 0 0 25px;

    color: #5e7568;

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   FEATURED BUTTON
========================================================= */

.featured-button {
    display: inline-flex;
    align-items: center;

    padding: 11px 19px;

    border-radius: 30px;

    background: #aee45f;

    color: #173d2b;

    font-size: 12px;
    font-weight: 750;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.featured-button:hover {
    background: #bdf174;

    color: #173d2b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(54, 100, 64, .12);
}

.featured-button i {
    transition: transform .2s ease;
}

.featured-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RIGHT ANNOUNCEMENT LIST
========================================================= */

.announcement-list {
    display: flex;
    flex-direction: column;

    gap: 14px;

    height: 100%;
}


/* =========================================================
   PUBLIC ANNOUNCEMENT CARDS
========================================================= */

.announcement-item {
    position: relative;

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    padding: 20px 21px;

    /*
     * DARKER / STRONGER OFFICIAL CARD
     */
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fbf8 100%
        );

    border: 1px solid #dce9e1;

    border-radius: 17px;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(40, 70, 55, .045);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.announcement-item:hover {
    transform: translateY(-2px);

    border-color: #bcd6c6;

    box-shadow:
        0 13px 28px rgba(40, 70, 55, .09);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.announcement-item-content {
    min-width: 0;
    flex: 1;
}


/*
 * PUBLIC NOTICE LEFT
 * DATE RIGHT
 */
.announcement-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    gap: 15px;

    margin-bottom: 7px;
}


/* =========================================================
   PUBLIC NOTICE
========================================================= */

.announcement-category {
    color: #337354;

    font-size: 9.5px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* =========================================================
   DATE
========================================================= */

.announcement-date {
    flex-shrink: 0;

    color: #82968b;

    font-size: 9.5px;

    white-space: nowrap;
}


/* =========================================================
   ANNOUNCEMENT TITLE
========================================================= */

.announcement-item h4 {
    margin: 0 0 5px;

    color: #214936;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.announcement-item p {
    margin: 0;

    color: #70847a;

    font-size: 11px;

    line-height: 1.55;
}


/* =========================================================
   RIGHT CIRCLE / OFFICIAL MARK
========================================================= */

.announcement-arrow {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf6f0;

    color: #438463;

    font-size: 12px;

    transition: all .25s ease;
}

.announcement-item:hover .announcement-arrow {
    background: #dceee3;

    color: #2d6d4b;

    transform: translate(2px, -2px);
}


/* =========================================================
   VIEW ALL
========================================================= */

.announcements-bottom {
    display: flex;

    justify-content: flex-end;

    margin-top: 17px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;

    color: #438463;

    font-size: 11.5px;

    font-weight: 700;

    text-decoration: none;
}

.view-all-link:hover {
    color: #245d3e;
}

.view-all-link i {
    transition: transform .2s ease;
}

.view-all-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .announcements-layout {
        grid-template-columns: 1fr;
    }

    .featured-announcement {
        min-height: 300px;
    }

    .announcement-list {
        height: auto;
    }

    .announcement-item {
        min-height: 120px;
    }
}


@media (max-width: 700px) {

    .announcements-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .announcements-layout {
        gap: 16px;
    }

    .featured-announcement {
        min-height: auto;

        padding: 30px 25px;

        border-radius: 21px;
    }

    .featured-announcement h3 {
        font-size: 24px;
    }

    .featured-announcement p {
        font-size: 12px;
    }

    .featured-announcement::before,
    .featured-announcement::after {
        display: none;
    }

    .announcement-item {
        padding: 18px;

        min-height: auto;
    }

    .announcement-item-top {
        align-items: flex-start;
    }

    .announcement-item h4 {
        font-size: 13px;
    }

    .announcements-bottom {
        justify-content: flex-start;
    }
}




/* ============================================================
   RASHIGEN AAMU HABRO — LOCAL NEWS
============================================================ */

.local-news-section {
    width: 100%;
    padding: 65px 0;
    background: #f7faf8;
}

.local-news-inner {
    width: 100%;
    max-width: 1520px;

    margin: 0 auto;

    padding-left: 32px;
    padding-right: 32px;
}


/* ============================================================
   HEADER
============================================================ */

.local-news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}

.local-news-kicker {
    display: block;

    margin-bottom: 8px;

    color: #438563;

    font-size: 11px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}


.local-news-title {
    margin: 0 0 8px;

    color: #173f2c;

    font-size: 32px;
    font-weight: 750;

    line-height: 1.15;

    letter-spacing: -.5px;
}


.local-news-description {
    max-width: 650px;

    margin: 0;

    color: #718279;

    font-size: 13px;

    line-height: 1.7;
}


/* ============================================================
   VIEW ALL BUTTON
============================================================ */

.local-news-view-all {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    padding: 11px 17px;

    border: 1px solid #cfe0d5;

    border-radius: 30px;

    background: #ffffff;

    color: #347353;

    font-size: 11px;

    font-weight: 750;

    text-decoration: none;

    transition:
        all .25s ease;
}


.local-news-view-all:hover {
    background: #347353;

    border-color: #347353;

    color: #ffffff;
}


.local-news-view-all i {
    transition:
        transform .2s ease;
}


.local-news-view-all:hover i {
    transform: translateX(4px);
}


/* ============================================================
   NEWS GRID
============================================================ */

.local-news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    width: 100%;
}


/* ============================================================
   NEWS CARD
============================================================ */

.local-news-card {
    display: block;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e1ebe5;

    border-radius: 20px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(34, 72, 52, .055);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.local-news-card:hover {
    transform: translateY(-5px);

    border-color: #c7dbce;

    box-shadow:
        0 18px 35px rgba(34, 72, 52, .11);
}


/* ============================================================
   IMAGE
============================================================ */

.local-news-image {
    position: relative;

    width: 100%;

    height: 215px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #dfeee4,
            #cfe4d6
        );
}


.local-news-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .45s ease;
}


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


/* ============================================================
   IMAGE BADGE
============================================================ */

.local-news-badge {
    position: absolute;

    left: 15px;
    bottom: 15px;

    display: inline-flex;

    padding: 7px 11px;

    border-radius: 20px;

    background:
        rgba(20, 62, 42, .90);

    color: #ffffff;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: .5px;

    backdrop-filter: blur(5px);
}


/* ============================================================
   CONTENT
============================================================ */

.local-news-content {
    padding: 21px 22px 23px;
}


/* ============================================================
   DATE
============================================================ */

.local-news-meta {
    margin-bottom: 9px;

    color: #82938a;

    font-size: 10px;
}


.local-news-meta i {
    margin-right: 4px;

    color: #438563;
}


/* ============================================================
   TITLE
============================================================ */

.local-news-content h3 {
    margin: 0 0 9px;

    color: #214936;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.35;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.local-news-content p {
    margin: 0 0 17px;

    color: #718179;

    font-size: 11.5px;

    line-height: 1.65;
}


/* ============================================================
   READ MORE
============================================================ */

.local-news-read {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #438563;

    font-size: 10.5px;

    font-weight: 750;
}


.local-news-read i {
    transition:
        transform .2s ease;
}


.local-news-card:hover
.local-news-read i {
    transform: translateX(4px);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 950px) {

    .local-news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    .local-news-section {
        padding: 45px 0;
    }


    .local-news-inner {
        padding-left: 18px;
        padding-right: 18px;
    }


    .local-news-header {
        display: block;

        margin-bottom: 22px;
    }


    .local-news-title {
        font-size: 27px;
    }


    .local-news-description {
        margin-bottom: 18px;
    }


    .local-news-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .local-news-image {
        height: 200px;
    }

}





