:root {
    --brand: #17843F;
    --brand-dark: #126B32;
    --text: #374151;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

main {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.dynamic-page-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.site-header {
    background-color: #ffffff !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.site-header.scrolled {
    background: #ffffff !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.header-container {
    width: 100%;
}

.logo {
    transition: transform 0.25s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-image {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(23, 132, 63, 0.20);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 50px;
    background: var(--brand);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

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

.nav-link.active {
    color: var(--brand) !important;
}

.support-button {
    position: relative;
    overflow: hidden;
}

.support-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.support-button:hover::before {
    left: 140%;
}

.mobile-menu {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.mobile-menu.active {
    max-height: calc(100vh - 76px);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow-y: auto;
}

.menu-button {
    position: relative;
}

.hamburger-line {
    transition:
        transform 0.3s ease,
        opacity 0.2s ease;
}

.menu-button.active .line-1 {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active .line-2 {
    opacity: 0;
}

.menu-button.active .line-3 {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-link {
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.mobile-link:hover {
    transform: translateX(2px);
}

@media (max-width: 1279px) {
    .header-inner {
        min-height: 76px;
    }
}

@media (max-width: 640px) {
    .logo-title {
        font-size: 20px !important;
        letter-spacing: -0.5px !important;
    }

    .logo-subtitle {
        font-size: 10px !important;
    }

    .logo-image {
        width: 48px !important;
        height: 48px !important;
    }
}

@media (max-width: 420px) {
    .logo-title {
        font-size: 17px !important;
    }

    .logo-subtitle {
        font-size: 9px !important;
    }

    .logo-image {
        width: 44px !important;
        height: 44px !important;
    }

    .menu-button {
        width: 42px !important;
        height: 42px !important;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

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

.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111827;
}


/* =========================================================
   CAROUSEL TRACK
========================================================= */

.carousel-track {
    display: flex;
    width: 100%;

    transform: translate3d(0, 0, 0);

    transition:
        transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);

    will-change: transform;
}


/* =========================================================
   CAROUSEL SLIDE
========================================================= */

.carousel-slide {
    position: relative;

    min-width: 100%;
    width: 100%;

    flex-shrink: 0;

    overflow: hidden;
}


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

.carousel-slide img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    user-select: none;

    -webkit-user-drag: none;

    transform: scale(1);

    will-change: transform;

    transition:
        transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Slow cinematic zoom */

.carousel-slide.active img {
    transform: scale(1.035);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.carousel-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.32) 45%,
            rgba(0, 0, 0, 0.12) 100%);
}


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

.carousel-slide>div {
    position: relative;

    z-index: 2;
}


/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.carousel-arrow {
    position: absolute;

    top: 50%;

    z-index: 30;

    display: flex;

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

    width: 50px;
    height: 50px;

    padding: 0;

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

    border-radius: 50%;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.22);

    backdrop-filter: blur(10px);

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

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
}

.carousel-arrow:hover {
    border-color: #17843f;

    background: #17843f;

    transform:
        translateY(-50%) scale(1.06);
}

.carousel-arrow:active {
    transform:
        translateY(-50%) scale(0.96);
}


/* Previous */

.carousel-prev {
    left: 25px;
}


/* Next */

.carousel-next {
    right: 25px;
}


/* =========================================================
   CAROUSEL DOTS
========================================================= */

#carouselDots {
    pointer-events: auto;
}

.carousel-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 999px;

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

    cursor: pointer;

    transition:
        width 0.4s ease,
        background-color 0.4s ease,
        opacity 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.carousel-dot.active {
    width: 30px;

    background: #ffffff;
}


/* =========================================================
   BOTTOM GRADIENT
========================================================= */

.hero-carousel::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 120px;

    z-index: 10;

    pointer-events: none;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.35),
            transparent);
}


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

@media (max-width: 1023px) {

    .carousel-track {
        transition:
            transform 1.1s cubic-bezier(0.65,
                0,
                0.35,
                1);
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-prev {
        left: 16px;
    }

    .carousel-next {
        right: 16px;
    }

    .carousel-slide img {
        transition:
            transform 7s cubic-bezier(0.25,
                0.46,
                0.45,
                0.94);
    }

}


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

@media (max-width: 640px) {

    .carousel-track {
        transition:
            transform 1s cubic-bezier(0.65,
                0,
                0.35,
                1);
    }

    .carousel-slide img {
        transform: scale(1);
    }

    .carousel-slide.active img {
        transform: scale(1.025);
    }

    .carousel-slide::after {
        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, 0.58),
                rgba(0, 0, 0, 0.25));
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;

        background: rgba(0, 0, 0, 0.28);
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dot {
        width: 7px;
        height: 7px;
    }

    .carousel-dot.active {
        width: 23px;
    }

}


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

@media (max-width: 380px) {

    .carousel-arrow {
        width: 34px;
        height: 34px;
    }

    .carousel-arrow svg {
        width: 16px;
        height: 16px;
    }

    .carousel-prev {
        left: 7px;
    }

    .carousel-next {
        right: 7px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.carousel-arrow:focus-visible,
.carousel-dot:focus-visible {
    outline: 3px solid rgba(34, 197, 94, 0.55);

    outline-offset: 3px;
}


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

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

    .carousel-track,
    .carousel-slide img,
    .carousel-arrow,
    .carousel-dot {
        transition: none !important;
    }

}

/* =========================================================
   ABOUT SECTION
========================================================= */

#about {
    position: relative;
}


/* =========================================================
   ABOUT CONTENT ANIMATION
========================================================= */

.about-content {
    animation: aboutContentReveal 0.8s ease-out both;
}

@keyframes aboutContentReveal {

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

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

}


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

.about-image-wrapper {
    animation: aboutImageReveal 0.9s ease-out 0.1s both;
}

@keyframes aboutImageReveal {

    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

}


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

.about-image {
    cursor: pointer;
}

.about-image img {
    transform: scale(1);
}

.about-image:hover img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE SHINE EFFECT
========================================================= */

.about-image::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);

    transform: skewX(-20deg);

    transition: left 0.8s ease;

    pointer-events: none;
}

.about-image:hover::after {
    left: 140%;
}


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

@media (max-width: 1023px) {

    .about-image-wrapper {
        max-width: 800px;

        margin-left: auto;
        margin-right: auto;

        width: 100%;
    }

}


@media (max-width: 640px) {

    .about-content {
        animation: none;
    }

    .about-image-wrapper {
        animation: none;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

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

    .about-content,
    .about-image-wrapper,
    .about-image img,
    .about-image::after {
        animation: none !important;
        transition: none !important;
    }

}

/* =========================================================
   VILLAGE SECTION
========================================================= */

.village-section {
    position: relative;
    overflow: hidden;
}


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

.village-title {
    position: relative;
    overflow: hidden;

    border: 1px solid rgba(132, 204, 22, 0.15);

    background:
        linear-gradient(100deg,
            #8bc63f 0%,
            #a8d66f 45%,
            #dcecc8 100%);

    box-shadow:
        0 4px 15px rgba(132, 204, 22, 0.08);
}


/* Title shine */

.village-title::after {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);

    transform: skewX(-20deg);

    transition: left 0.8s ease;
}

.village-title:hover::after {
    left: 140%;
}


/* =========================================================
   VILLAGE CARD
========================================================= */

.village-card {
    position: relative;

    min-height: 185px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 25px 20px;

    overflow: hidden;

    border: 1px solid #dce1e5;

    border-radius: 12px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 3px 8px rgba(15, 23, 42, 0.08);

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


/* Top green line */

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

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    background: #218c3c;

    transition: width 0.4s ease;
}


/* Hover */

.village-card:hover {
    transform: translateY(-7px);

    border-color: rgba(33, 140, 60, 0.20);

    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.12);
}

.village-card:hover::before {
    width: 100%;
}


/* =========================================================
   ICON
========================================================= */

.village-icon {
    width: 66px;
    height: 66px;

    display: flex;

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

    margin-bottom: 13px;

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}

.village-card:hover .village-icon {
    transform:
        translateY(-3px) scale(1.05);
}


/* Icon SVG */

.village-icon svg {
    width: 60px;
    height: 60px;
}


/* =========================================================
   HISTORY ICON
========================================================= */

.history-icon {
    color: #1761ad;
}

.history-icon svg {
    stroke-width: 1.8;
}


/* =========================================================
   CULTURE ICON
========================================================= */

.culture-icon {
    color: #2d8b3d;
}

.culture-icon svg {
    width: 68px;
    height: 68px;
}


/* =========================================================
   PLACES ICON
========================================================= */

.places-icon {
    color: #218c3c;
}

.places-icon svg {
    width: 62px;
    height: 62px;
}


/* =========================================================
   COMMUNITIES ICON
========================================================= */

.communities-icon {
    color: #218c3c;
}

.communities-icon svg {
    width: 64px;
    height: 64px;
}


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

.village-card h3 {
    margin: 0;

    color: #202020;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.4px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.village-card:hover h3 {
    color: #18763a;

    transform: translateY(-1px);
}


/* =========================================================
   CARD ARROW
========================================================= */

.village-card-arrow {
    position: absolute;

    right: 18px;
    bottom: 14px;

    color: #218c3c;

    font-size: 18px;

    font-weight: 700;

    opacity: 0;

    transform: translateX(-6px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.village-card:hover .village-card-arrow {
    opacity: 1;

    transform: translateX(0);
}


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

@media (max-width: 1023px) {

    .village-card {
        min-height: 175px;
    }

    .village-card h3 {
        font-size: 21px;
    }

    .village-icon {
        width: 60px;
        height: 60px;
    }

    .village-icon svg {
        width: 55px;
        height: 55px;
    }

}


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

@media (max-width: 639px) {

    .village-title {
        min-height: 56px;
    }

    .village-card {
        min-height: 155px;

        padding: 22px 18px;

        border-radius: 16px;
    }

    .village-icon {
        width: 55px;
        height: 55px;

        margin-bottom: 10px;
    }

    .village-icon svg {
        width: 50px;
        height: 50px;
    }

    .village-card h3 {
        font-size: 19px;
    }

    .village-card-arrow {
        right: 15px;
        bottom: 12px;

        font-size: 16px;
    }

}


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

@media (max-width: 380px) {

    .village-card {
        min-height: 145px;
    }

    .village-card h3 {
        font-size: 18px;
    }

    .village-icon svg {
        width: 46px;
        height: 46px;
    }

}


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

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

    .village-card,
    .village-icon,
    .village-card h3,
    .village-card-arrow,
    .village-title::after {
        transition: none !important;
    }

}


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

.modern-footer {
    position: relative;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(34, 197, 94, 0.08),
            transparent 30%),
        radial-gradient(circle at 90% 70%,
            rgba(34, 197, 94, 0.07),
            transparent 30%),
        linear-gradient(135deg,
            #002f1a 0%,
            #003b21 45%,
            #002b18 100%);
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.footer-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(34, 197, 94, 0.08);

    filter: blur(80px);

    pointer-events: none;
}

.footer-glow-one {
    top: -180px;
    left: -150px;
}

.footer-glow-two {
    right: -150px;
    bottom: -200px;
}


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

.footer-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;

    padding:
        55px 40px 60px;
}


/* =========================================================
   CTA
========================================================= */

.footer-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 65px;

    padding:
        30px 32px;

    border: 1px solid rgba(134, 239, 172, 0.15);

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(34, 197, 94, 0.13),
            rgba(255, 255, 255, 0.025));

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(12px);

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


/* CTA Label */

.footer-cta-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 10px;

    color: #86efac;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}

.footer-cta-label i {
    color: #4ade80;
}


/* CTA Heading */

.footer-cta h2 {
    margin: 0;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -0.8px;
}

.footer-cta h2 span {
    color: #4ade80;
}


/* CTA Description */

.footer-cta p {
    max-width: 650px;

    margin: 9px 0 0;

    color: rgba(220, 252, 231, 0.68);

    font-size: 14px;

    line-height: 1.7;
}


/* CTA Button */

.footer-cta-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-width: 190px;

    height: 52px;

    padding: 0 25px;

    border-radius: 999px;

    color: #064e2b;

    background: #4ade80;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(34, 197, 94, 0.18);

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

.footer-cta-button:hover {
    background: #86efac;

    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(34, 197, 94, 0.28);
}

.footer-cta-button i {
    transition:
        transform 0.3s ease;
}

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


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

.footer-main {
    display: grid;

    grid-template-columns:
        1.05fr 1.75fr 1.05fr;

    gap: 55px;

    align-items: start;
}


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

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 28px;

    text-decoration: none;
}

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

    display: flex;

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

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #4ade80,
            #ffffff,
            #22c55e);

    transition:
        transform 0.3s ease;
}

.footer-logo:hover .footer-logo-image {
    transform: rotate(-4deg) scale(1.04);
}

.footer-logo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #00391f;
}

.footer-logo-text {
    display: flex;

    flex-direction: column;
}

.footer-logo-text strong {
    color: #ffffff;

    font-size: 24px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -0.6px;
}

.footer-logo-text span {
    margin-top: 5px;

    color: #4ade80;

    font-size: 14px;

    font-weight: 600;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.footer-about-text {
    max-width: 370px;

    margin: 0;

    color: rgba(220, 252, 231, 0.68);

    font-size: 14px;

    line-height: 1.9;

    font-weight: 500;
}


/* =========================================================
   MISSION
========================================================= */

.footer-mission {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding: 12px 14px;

    width: fit-content;

    border: 1px solid rgba(134, 239, 172, 0.12);

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.025);
}

.mission-icon {
    width: 38px;
    height: 38px;

    display: flex;

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

    border-radius: 10px;

    color: #064e2b;

    background: #4ade80;

    font-size: 15px;
}

.footer-mission strong,
.footer-mission span {
    display: block;
}

.footer-mission strong {
    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}

.footer-mission div span {
    margin-top: 3px;

    color: rgba(187, 247, 208, 0.55);

    font-size: 10px;

    font-weight: 500;
}


/* =========================================================
   MIDDLE
========================================================= */

.footer-middle {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 40px;
}


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

.footer-title {
    margin-bottom: 24px;
}

.footer-title>span {
    display: block;

    margin-bottom: 5px;

    color: #4ade80;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.footer-title h3 {
    margin: 0;

    color: #ffffff;

    font-size: 19px;

    line-height: 1.25;

    font-weight: 800;
}


/* =========================================================
   QUICK LINKS
========================================================= */

.quick-links {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.quick-link {
    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 40px;

    color: rgba(220, 252, 231, 0.66);

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.quick-link:hover {
    color: #ffffff;

    transform: translateX(5px);
}


/* Quick icon */

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

    display: flex;

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

    flex-shrink: 0;

    border: 1px solid rgba(134, 239, 172, 0.12);

    border-radius: 10px;

    color: #4ade80;

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

    font-size: 11px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.quick-link:hover .quick-icon {
    color: #064e2b;

    background: #4ade80;

    transform: scale(1.08);
}


/* =========================================================
   OUR WORK
========================================================= */

.work-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.work-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 8px;

    border-radius: 13px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.work-item:hover {
    background: rgba(255, 255, 255, 0.045);

    transform: translateX(3px);
}


/* Work Icon */

.work-icon {
    width: 40px;
    height: 40px;

    display: flex;

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

    flex-shrink: 0;

    border: 1px solid rgba(134, 239, 172, 0.12);

    border-radius: 11px;

    color: #4ade80;

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

    font-size: 15px;
}

.work-text strong,
.work-text small {
    display: block;
}

.work-text strong {
    color: #ffffff;

    font-size: 13px;

    font-weight: 700;
}

.work-text small {
    margin-top: 3px;

    color: rgba(187, 247, 208, 0.48);

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================================
   CONNECT
========================================================= */

.social-links {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 30px;
}

.social-link {
    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid rgba(134, 239, 172, 0.15);

    border-radius: 12px;

    color: rgba(220, 252, 231, 0.72);

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

    font-size: 15px;

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.social-link:hover {
    color: #064e2b;

    border-color: #4ade80;

    background: #4ade80;

    transform: translateY(-4px);
}


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

.contact-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px;

    border: 1px solid transparent;

    border-radius: 14px;

    text-decoration: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(134, 239, 172, 0.10);

    background: rgba(255, 255, 255, 0.035);
}

.contact-icon {
    width: 39px;
    height: 39px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 10px;

    color: #4ade80;

    background: rgba(74, 222, 128, 0.08);

    font-size: 14px;
}

.contact-text small,
.contact-text strong {
    display: block;
}

.contact-text small {
    margin-bottom: 3px;

    color: #4ade80;

    font-size: 10px;

    font-weight: 600;
}

.contact-text strong {
    color: rgba(255, 255, 255, 0.85);

    font-size: 12px;

    line-height: 1.45;

    font-weight: 600;
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-bottom {
    position: relative;

    z-index: 2;

    border-top: 1px solid rgba(134, 239, 172, 0.10);

    background: rgba(0, 0, 0, 0.10);
}

.footer-bottom-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    width: 100%;

    max-width: 1440px;

    margin: 0 auto;

    padding: 22px 40px;
}


/* Copyright */

.footer-copyright {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 4px;

    color: rgba(220, 252, 231, 0.45);

    font-size: 11px;

    font-weight: 500;
}

.footer-copyright strong {
    color: #4ade80;

    font-weight: 700;
}


/* Bottom links */

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(220, 252, 231, 0.48);

    font-size: 11px;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

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

.footer-bottom-links span {
    width: 1px;
    height: 14px;

    background: rgba(134, 239, 172, 0.18);
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .footer-container {
        padding-left: 30px;
        padding-right: 30px;
    }

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

        gap: 35px;
    }

    .footer-middle {
        gap: 25px;
    }

}


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

@media (max-width: 991px) {

    .footer-container {
        padding:
            45px 25px 50px;
    }

    .footer-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 25px;

        margin-bottom: 45px;
    }

    .footer-cta h2 {
        font-size: 26px;
    }

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

        gap: 45px 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-middle {
        grid-column: 1 / -1;

        grid-template-columns:
            1fr 1fr;
    }

    .footer-connect {
        grid-column: 1 / -1;
    }

}


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

@media (max-width: 639px) {

    .footer-container {
        padding:
            35px 18px 40px;
    }


    /* CTA */

    .footer-cta {
        gap: 20px;

        margin-bottom: 40px;

        padding: 22px 20px;

        border-radius: 20px;
    }

    .footer-cta-label {
        font-size: 9px;
    }

    .footer-cta h2 {
        font-size: 23px;

        line-height: 1.25;
    }

    .footer-cta p {
        font-size: 12px;

        line-height: 1.65;
    }

    .footer-cta-button {
        width: 100%;

        height: 48px;

        min-width: 0;

        font-size: 12px;
    }


    /* Main */

    .footer-main {
        display: block;
    }


    /* About */

    .footer-about {
        margin-bottom: 40px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo-image {
        width: 55px;
        height: 55px;
    }

    .footer-logo-text strong {
        font-size: 20px;
    }

    .footer-logo-text span {
        font-size: 12px;
    }

    .footer-about-text {
        font-size: 12px;

        line-height: 1.8;
    }

    .footer-mission {
        margin-top: 20px;

        padding: 9px 11px;
    }

    .mission-icon {
        width: 34px;
        height: 34px;

        font-size: 13px;
    }


    /* =====================================================
       QUICK LINKS + OUR WORK
       MOBILE 2 COLUMN GRID
    ====================================================== */

    .footer-middle {
        display: grid;

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

        gap: 20px;

        margin-bottom: 40px;
    }


    /* Titles */

    .footer-title {
        margin-bottom: 17px;
    }

    .footer-title>span {
        font-size: 8px;

        letter-spacing: 0.9px;
    }

    .footer-title h3 {
        font-size: 15px;
    }


    /* Quick Links */

    .quick-links {
        gap: 7px;
    }

    .quick-link {
        min-height: 35px;

        gap: 7px;

        font-size: 11px;
    }

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

        border-radius: 8px;

        font-size: 10px;
    }


    /* Work */

    .work-list {
        gap: 6px;
    }

    .work-item {
        gap: 7px;

        padding: 5px;
    }

    .work-icon {
        width: 32px;
        height: 32px;

        border-radius: 8px;

        font-size: 11px;
    }

    .work-text strong {
        font-size: 10px;
    }

    .work-text small {
        display: none;
    }


    /* Connect */

    .footer-connect {
        margin-top: 5px;
    }

    .social-links {
        margin-bottom: 22px;

        gap: 8px;
    }

    .social-link {
        width: 40px;
        height: 40px;

        border-radius: 11px;

        font-size: 14px;
    }

    .contact-list {
        gap: 8px;
    }

    .contact-item {
        padding: 8px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;

        border-radius: 9px;

        font-size: 12px;
    }

    .contact-text small {
        font-size: 8px;
    }

    .contact-text strong {
        font-size: 10px;
    }


    /* Bottom */

    .footer-bottom-container {
        flex-direction: column;

        justify-content: center;

        padding:
            18px;
    }

    .footer-copyright {
        justify-content: center;

        text-align: center;

        font-size: 9px;
    }

    .footer-bottom-links {
        gap: 12px;
    }

    .footer-bottom-links a {
        font-size: 9px;
    }

}


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

@media (max-width: 380px) {

    .footer-middle {
        gap: 12px;
    }

    .footer-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-cta {
        padding: 18px;
    }

    .footer-cta h2 {
        font-size: 21px;
    }

    .quick-link {
        font-size: 10px;
    }

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

        font-size: 9px;
    }

    .work-icon {
        width: 29px;
        height: 29px;
    }

    .work-text strong {
        font-size: 9px;
    }

}


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

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

    .footer-logo-image,
    .footer-cta-button,
    .quick-link,
    .quick-icon,
    .work-item,
    .social-link,
    .contact-item {
        transition: none !important;
    }

}

/* =========================================================
   QUICK LINKS & JOBS SECTION
========================================================= */

.quick-jobs-section {
    position: relative;

    overflow: hidden;
}


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

.info-link-card {
    position: relative;

    display: flex;

    flex-direction: column;

    min-width: 0;

    height: 100%;

    overflow: hidden;

    border: 1px solid #dbe2e8;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.05);

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


/* Card Hover */

.info-link-card:hover {
    transform: translateY(-4px);

    border-color: rgba(22, 163, 74, 0.25);

    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.09);
}


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

.card-gradient-header {
    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 64px;

    padding: 0 22px;

    background:
        linear-gradient(110deg,
            #86efac 0%,
            #4ade80 50%,
            #84cc16 100%);

    overflow: hidden;
}


/* Header Shine */

.card-gradient-header::after {
    content: "";

    position: absolute;

    top: 0;
    right: -80px;

    width: 180px;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.14),
            transparent);

    transform: skewX(-20deg);

    pointer-events: none;
}


/* Header Icon */

.header-icon {
    position: relative;

    z-index: 1;

    width: 34px;
    height: 34px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 10px;

    color: #166534;

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

    font-size: 15px;
}


/* Header Title */

.card-gradient-header h2 {
    position: relative;

    z-index: 1;

    margin: 0;

    color: #0f172a;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -0.3px;
}


/* =========================================================
   CARD BODY
========================================================= */

.card-body {
    flex: 1;

    padding: 24px;
}


/* =========================================================
   QUICK LINKS GRID
========================================================= */

.quick-links-grid {
    display: grid;

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

    column-gap: 12px;

    row-gap: 10px;
}


/* =========================================================
   QUICK LINK ITEM
========================================================= */

.quick-link-item {
    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;

    min-height: 48px;

    padding: 8px 10px;

    border: 1px solid transparent;

    border-radius: 11px;

    color: #1e293b;

    background: transparent;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* Quick Link Hover */

.quick-link-item:hover {
    color: #15803d;

    border-color: #dcfce7;

    background: #f0fdf4;

    transform: translateX(3px);
}


/* =========================================================
   QUICK LINK ICON
========================================================= */

.quick-link-icon {
    width: 30px;
    height: 30px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 8px;

    color: #15803d;

    background: #ecfdf5;

    font-size: 12px;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}


.quick-link-item:hover .quick-link-icon {
    color: #ffffff;

    background: #16a34a;

    transform: scale(1.05);
}


/* =========================================================
   QUICK LINK ARROW
========================================================= */

.quick-link-arrow {
    margin-left: auto;

    color: #94a3b8;

    font-size: 9px;

    opacity: 0;

    transform: translateX(-4px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.quick-link-item:hover .quick-link-arrow {
    color: #16a34a;

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   JOBS BODY
========================================================= */

.jobs-card-body {
    display: flex;

    flex-direction: column;
}


/* =========================================================
   JOBS GRID
========================================================= */

.jobs-grid {
    display: grid;

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

    gap: 14px;
}


/* =========================================================
   JOB ITEM
========================================================= */

.job-item {
    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 0;

    min-height: 88px;

    padding: 13px;

    border: 1px solid #f1f5f9;

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 5px 16px rgba(15, 23, 42, 0.04);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}


/* Job Hover */

.job-item:hover {
    border-color: #bbf7d0;

    background: #fafffb;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.07);
}


/* =========================================================
   JOB ICON
========================================================= */

.job-icon {
    width: 38px;
    height: 38px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 10px;

    color: #166534;

    background:
        linear-gradient(135deg,
            #fefce8,
            #fef9c3);

    font-size: 14px;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}


.job-item:hover .job-icon {
    transform: scale(1.08);
}


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

.job-content {
    min-width: 0;

    flex: 1;
}


.job-content h3 {
    display: -webkit-box;

    margin: 0;

    overflow: hidden;

    color: #2563eb;

    font-size: 12px;

    line-height: 1.45;

    font-weight: 800;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 2;
}


.job-content span {
    display: block;

    margin-top: 5px;

    color: #94a3b8;

    font-size: 9px;

    font-weight: 600;
}


/* =========================================================
   JOB ARROW
========================================================= */

.job-arrow {
    flex-shrink: 0;

    color: #94a3b8;

    font-size: 9px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.job-item:hover .job-arrow {
    color: #16a34a;

    transform: translateX(3px);
}


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

.view-all-jobs-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 150px;

    padding: 10px 18px;

    border: 1px solid #dbe3ea;

    border-radius: 9px;

    color: #1e293b;

    background: #ffffff;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.03);

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.view-all-jobs-btn:hover {
    color: #ffffff;

    border-color: #15803d;

    background: #15803d;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(21, 128, 61, 0.20);
}


.view-all-jobs-btn i {
    font-size: 10px;

    transition:
        transform 0.3s ease;
}


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


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

@media (max-width: 1023px) {

    .card-body {
        padding: 20px;
    }

    .quick-links-grid {
        column-gap: 8px;
    }

    .quick-link-item {
        font-size: 12px;
    }

    .jobs-grid {
        gap: 10px;
    }

    .job-item {
        padding: 11px;
    }

}


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

@media (max-width: 639px) {

    .card-gradient-header {
        min-height: 58px;

        padding: 0 17px;
    }

    .card-gradient-header h2 {
        font-size: 17px;
    }

    .header-icon {
        width: 31px;
        height: 31px;

        font-size: 13px;
    }

    .card-body {
        padding: 17px;
    }

    .quick-links-grid {
        grid-template-columns:
            repeat(1, minmax(0, 1fr));

        gap: 6px;
    }

    .quick-link-item {
        min-height: 44px;

        padding: 6px 8px;

        font-size: 12px;
    }

    .quick-link-icon {
        width: 29px;
        height: 29px;
    }

    .quick-link-arrow {
        opacity: 1;

        transform: none;
    }

    .jobs-grid {
        grid-template-columns:
            repeat(1, minmax(0, 1fr));

        gap: 9px;
    }

    .job-item {
        min-height: 76px;
    }

    .job-content h3 {
        font-size: 12px;
    }

    .view-all-jobs-btn {
        width: 100%;

        max-width: 220px;
    }

}


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

@media (max-width: 380px) {

    .card-gradient-header h2 {
        font-size: 15px;
    }

    .card-body {
        padding: 14px;
    }

    .quick-link-item {
        font-size: 11px;
    }

    .job-content h3 {
        font-size: 11px;
    }

    .job-content span {
        font-size: 8px;
    }

}


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

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

    .info-link-card,
    .quick-link-item,
    .quick-link-icon,
    .quick-link-arrow,
    .job-item,
    .job-icon,
    .job-arrow,
    .view-all-jobs-btn,
    .view-all-jobs-btn i {
        transition: none !important;
    }

}

.services-card {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.services-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 68px;
    padding: 12px 28px;
    background: linear-gradient(110deg, #84cc16 0%, #a3e635 45%, #ecfccb 100%);
}

.services-header-content {
    display: flex;
    align-items: center;
    gap: 11px;
}

.services-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #166534;
    background: rgba(255, 255, 255, 0.45);
}

.services-header h2 {
    margin: 0;
    color: #166534;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.services-header p {
    margin: 0;
    color: #365314;
    font-size: 12px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 22px 18px;
}

.service-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 20px 12px;
    border-right: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-box:last-child {
    border-right: 0;
}

.service-box:hover {
    border-radius: 14px;
    background: #f0fdf4;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(22, 101, 52, 0.08);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 13px;
    border-radius: 15px;
    font-size: 25px;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.08);
}

.education {
    color: #2563eb;
    background: #eff6ff;
}

.sports {
    color: #1d4ed8;
    background: #eff6ff;
}

.cultural {
    color: #16a34a;
    background: #f0fdf4;
}

.employment {
    color: #2563eb;
    background: #eff6ff;
}

.health {
    color: #e11d48;
    background: #fff1f2;
}

.entrepreneurship {
    color: #2563eb;
    background: #eff6ff;
}

.service-box h3 {
    margin: 0;
    color: #334155;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    text-align: center;
    transition: color 0.3s ease;
}

.service-box:hover h3 {
    color: #15803d;
}

.service-arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #16a34a;
    background: #dcfce7;
    font-size: 9px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.service-box:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 18px;
    }

    .service-box {
        min-height: 140px;
        border-bottom: 1px solid #e2e8f0;
    }

    .service-box:nth-child(3n) {
        border-right: 0;
    }

    .service-box:nth-child(n + 4) {
        border-bottom: 0;
    }
}

@media (max-width: 639px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 14px 17px;
    }

    .services-header h2 {
        font-size: 17px;
    }

    .services-header p {
        padding-left: 47px;
        font-size: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 10px;
    }

    .service-box {
        min-height: 125px;
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }

    .service-box:nth-child(3n) {
        border-right: 1px solid #e2e8f0;
    }

    .service-box:nth-child(2n) {
        border-right: 0;
    }

    .service-box:nth-child(n + 5) {
        border-bottom: 0;
    }

    .service-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 10px;
        border-radius: 13px;
        font-size: 21px;
    }

    .service-box h3 {
        font-size: 11px;
    }

    .service-arrow {
        right: 8px;
        bottom: 8px;
        width: 21px;
        height: 21px;
        font-size: 8px;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 380px) {
    .services-grid {
        gap: 4px;
        padding: 7px;
    }

    .service-box {
        min-height: 115px;
        padding: 15px 7px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
        font-size: 19px;
    }

    .service-box h3 {
        font-size: 10px;
    }
}


.project-tab.active-tab {
    background: #16a34a;
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.35);
}

.project-tab:hover {
    background: #16a34a;
}

.project-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    text-align: left;
    border: 1px solid #dbe1e7;
    border-radius: 10px;
    background: #f8fafc;
    transition: all 0.25s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-2px);
    border-color: #86efac;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.project-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    font-size: 19px;
}

.project-content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.project-title {
    color: #2563eb;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.project-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.status-badge {
    flex-shrink: 0;
    padding: 5px 17px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.status-ongoing {
    background: #16a34a;
}

.status-completed {
    background: #2563eb;
}

.status-proposed {
    background: #f97316;
}

@media (max-width: 640px) {
    .project-card {
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        flex-wrap: wrap;
    }

    .project-content {
        width: calc(100% - 52px);
        flex: none;
    }

    .project-title {
        font-size: 15px;
    }

    .project-description {
        font-size: 12px;
    }

    .status-badge {
        margin-left: 50px;
        padding: 6px 13px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .project-card {
        padding: 13px;
    }

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

    .project-description {
        font-size: 11px;
    }

    .status-badge {
        margin-left: 0;
    }
}

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(5px);
}

.project-modal.show {
    display: flex;
}

.project-modal-box {
    width: 100%;
    max-width: 560px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.25);
    animation: modalShow 0.25s ease;
}

@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }

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

.project-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 22px;
    background: #14833b;
    color: #ffffff;
}

.project-modal-title {
    font-size: 18px;
    font-weight: 800;
}

.project-modal-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.project-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.project-modal-body {
    padding: 24px;
}

.project-modal-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.project-modal-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #dcfce7;
    font-size: 24px;
}

.project-modal-description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.project-modal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.project-detail {
    padding: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
}

.project-detail-label {
    display: block;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-detail-value {
    color: #1e293b;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .project-modal {
        padding: 12px;
    }

    .project-modal-box {
        border-radius: 16px;
    }

    .project-modal-header {
        padding: 16px;
    }

    .project-modal-title {
        font-size: 16px;
    }

    .project-modal-body {
        padding: 18px;
    }

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

.member-link {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.member-link>span:first-child {
    color: #334155;
    font-size: 14px;
}

.member-link:hover {
    color: #14833b;
    transform: translateX(3px);
}

.download-image {
    display: block;
    height: 112px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

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

.download-image:hover {
    border-color: #86efac;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.10);
    transform: translateY(-2px);
}

.download-image:hover img {
    transform: scale(1.04);
}

.donation-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
    text-align: center;
}

.donation-label {
    color: #334155;
    font-size: 14px;
    font-weight: 800;
}

.donation-value {
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 639px) {
    .member-link {
        min-height: 34px;
        font-size: 13px;
    }

    .download-image {
        height: 170px;
    }

    .donation-detail {
        margin-bottom: 20px;
    }
}

@media (min-width: 640px) and (max-width: 1279px) {
    .download-image {
        height: 150px;
    }
}

@media (min-width: 1280px) {
    .download-image {
        height: 112px;
    }
}
/* =========================================================
   VILLAGE + SAMITI SECTION
========================================================= */

.village-section,
.samiti-section {
    width: 100%;
    background: #f5f7fb;
}

.village-section {
    padding: 70px 20px 55px;
}

.samiti-section {
    padding: 25px 20px 75px;
}

.village-container,
.samiti-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: 999px;
    background: #e8f7ee;
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.section-heading h2 {
    margin: 0;
    color: #172033;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
}

.section-heading h2 span {
    color: #16a34a;
}

.section-heading p {
    margin: 14px auto 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
}


/* =========================================================
   VILLAGE GRID
========================================================= */

.village-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* =========================================================
   VILLAGE CARD
========================================================= */

.village-card {
    position: relative;
    display: block;
    min-height: 275px;
    padding: 25px;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e5e7eb;
    border-radius: 20px;

    text-decoration: none;

    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.06);

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

.village-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    transition: transform 0.4s ease;
}

.village-card:hover {
    transform: translateY(-7px);
    border-color: #bbf7d0;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.12);
}

.village-card:hover::before {
    transform: scale(1.8);
}


/* =========================================================
   CARD TOP
========================================================= */

.village-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.village-icon {
    width: 58px;
    height: 58px;

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

    border-radius: 16px;

    font-size: 24px;

    background: #ecfdf5;
    color: #16a34a;

    transition: transform 0.3s ease;
}

.village-card:hover .village-icon {
    transform: scale(1.08) rotate(-3deg);
}

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

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

    border-radius: 50%;

    background: #f8fafc;
    color: #64748b;

    font-size: 14px;

    transition: all 0.3s ease;
}

.village-card:hover .card-arrow {
    background: #16a34a;
    color: #fff;
    transform: rotate(45deg);
}


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

.village-card-content {
    margin-top: 45px;
}

.small-label {
    display: block;
    margin-bottom: 8px;

    color: #94a3b8;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.village-card-content h3 {
    margin: 0;

    color: #172033;

    font-size: 22px;
    font-weight: 800;
}

.village-card-content p {
    margin: 10px 0 0;

    color: #64748b;

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


/* Different Card Icons */

.history-card .village-icon {
    background: #eff6ff;
    color: #2563eb;
}

.culture-card .village-icon {
    background: #fdf4ff;
    color: #a21caf;
}

.places-card .village-icon {
    background: #fff7ed;
    color: #ea580c;
}

.community-card .village-icon {
    background: #ecfdf5;
    color: #16a34a;
}


/* =========================================================
   SAMITI + JOB GRID
========================================================= */

.information-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}


/* =========================================================
   INFORMATION PANEL
========================================================= */

.info-panel {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.06);
}


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

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px 24px;

    color: #fff;
}

.samiti-header {
    background:
        linear-gradient(135deg, #16a34a, #84cc16);
}

.jobs-header {
    background: linear-gradient(135deg, #16a34a, #84cc16);
}
.header-icon {
    flex: 0 0 auto;

    width: 52px;
    height: 52px;

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

    border-radius: 15px;

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

    font-size: 23px;
}

.panel-header span {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;

    opacity: 0.85;
}

.panel-header h2 {
    margin: 0;

    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}


/* =========================================================
   PANEL BODY
========================================================= */

.panel-body {
    padding: 22px 24px 25px;
}

.panel-description {
    margin: 0 0 20px;

    color: #64748b;

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


/* =========================================================
   SAMITI MENU
========================================================= */

.samiti-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.samiti-item {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 12px;

    color: #334155;
    text-decoration: none;

    background: #f8fafc;

    border: 1px solid #eef2f7;
    border-radius: 12px;

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

    transition: all 0.25s ease;
}

.samiti-item > span:nth-child(2) {
    flex: 1;
}

.samiti-item > i {
    color: #94a3b8;
    font-size: 11px;

    transition: transform 0.25s ease;
}

.samiti-item:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;

    transform: translateX(3px);
}

.samiti-item:hover > i {
    color: #16a34a;
    transform: translateX(3px);
}

.menu-icon {
    width: 31px;
    height: 31px;

    flex: 0 0 auto;

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

    border-radius: 9px;

    background: #dcfce7;
    color: #16a34a;

    font-size: 13px;
}


/* =========================================================
   JOB LIST
========================================================= */

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-card {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 13px;

    background: #fff;

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

    text-decoration: none;

    transition: all 0.25s ease;
}

.job-card:hover {
    border-color: #bfdbfe;

    background: #f8fbff;

    transform: translateX(4px);

    box-shadow:
        0 7px 20px rgba(37, 99, 235, 0.08);
}

.job-logo {
    width: 43px;
    height: 43px;

    flex: 0 0 auto;

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

    border-radius: 11px;

    background: #eff6ff;
    color: #2563eb;

    font-size: 18px;
}

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

.job-type {
    display: block;

    margin-bottom: 3px;

    color: #2563eb;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.job-content h3 {
    margin: 0;

    color: #1e293b;

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

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-content p {
    margin: 3px 0 0;

    color: #94a3b8;

    font-size: 11px;
}

.job-arrow {
    width: 30px;
    height: 30px;

    flex: 0 0 auto;

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

    border-radius: 50%;

    background: #f8fafc;
    color: #64748b;

    font-size: 11px;

    transition: all 0.25s ease;
}

.job-card:hover .job-arrow {
    background: #2563eb;
    color: #fff;
}


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

.view-all-wrapper {
    display: flex;
    justify-content: center;

    margin-top: 18px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 18px;

    border-radius: 10px;

    background: #eff6ff;
    color: #2563eb;

    border: 1px solid #dbeafe;

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

    text-decoration: none;

    transition: all 0.25s ease;
}

.view-all-btn:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.view-all-btn i {
    transition: transform 0.25s ease;
}

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


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

@media (max-width: 1100px) {

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

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

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 640px) {

    .village-section {
        padding: 50px 14px 40px;
    }

    .samiti-section {
        padding: 15px 14px 55px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading p {
        font-size: 13px;
    }

    .village-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .village-card {
        min-height: auto;
        padding: 20px;
        border-radius: 16px;
    }

    .village-card-content {
        margin-top: 30px;
    }

    .village-card-content h3 {
        font-size: 20px;
    }

    .village-card-content p {
        font-size: 12px;
    }

    .information-grid {
        gap: 15px;
    }

    .panel-header {
        padding: 17px;
        gap: 12px;
    }

    .header-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 19px;
    }

    .panel-header h2 {
        font-size: 16px;
    }

    .panel-header span {
        font-size: 8px;
    }

    .panel-body {
        padding: 17px;
    }

    .panel-description {
        font-size: 12px;
    }

    .samiti-menu {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .samiti-item {
        padding: 11px;
        font-size: 12px;
    }

    .job-card {
        padding: 11px;
    }

    .job-logo {
        width: 39px;
        height: 39px;
        font-size: 16px;
    }

    .job-content h3 {
        font-size: 12px;
    }

    .job-content p {
        font-size: 10px;
    }

}


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

@media (max-width: 380px) {

    .village-section,
    .samiti-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .panel-header h2 {
        font-size: 14px;
    }

    .job-content h3 {
        font-size: 11px;
    }

}
/* =========================================================
   JS REVEAL ANIMATION
========================================================= */

.section-hidden {
    opacity: 0;
    transform: translateY(18px);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.job-clicked {
    transform: scale(0.98) !important;
}
/* =========================================================
   PROJECTS SECTION
========================================================= */

.projects-section {
    width: 100%;
    padding: 65px 20px 75px;
    background: #f5f7fb;
}

.projects-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.projects-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.projects-badge {
    display: inline-flex;
    padding: 7px 15px;
    margin-bottom: 12px;

    border-radius: 999px;

    background: #e8f7ee;
    color: #15803d;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.projects-heading h2 {
    margin: 0;

    color: #172033;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    font-weight: 800;
}

.projects-heading h2 span {
    color: #16a34a;
}

.projects-heading p {
    max-width: 620px;
    margin: 13px auto 0;

    color: #64748b;

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


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

.projects-panel {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: 22px;

    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.07);
}


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

.projects-panel-header {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px 25px;

    color: #fff;

    background:
        linear-gradient(135deg, #16a34a, #84cc16);
}

.projects-title-icon {
    width: 52px;
    height: 52px;

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

    flex-shrink: 0;

    border-radius: 15px;

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

    font-size: 22px;
}

.projects-panel-header span {
    display: block;

    margin-bottom: 3px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;

    opacity: .85;
}

.projects-panel-header h3 {
    margin: 0;

    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   TABS
========================================================= */

.project-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    padding: 8px;

    gap: 7px;

    background: #f8fafc;

    border-bottom: 1px solid #e5e7eb;
}

.project-tab {
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 9px 12px;

    border: 0;
    border-radius: 12px;

    background: transparent;

    color: #64748b;

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

    cursor: pointer;

    transition: all .25s ease;
}

.project-tab i {
    font-size: 14px;
}

.project-tab b {
    display: inline-flex;

    min-width: 25px;
    height: 22px;

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

    padding: 0 6px;

    border-radius: 999px;

    background: #e2e8f0;
    color: #64748b;

    font-size: 10px;
}

.project-tab:hover {
    background: #f0fdf4;
    color: #15803d;
}

.project-tab.active {
    color: #fff;

    background:
        linear-gradient(135deg, #16a34a, #65a30d);

    box-shadow:
        0 6px 18px rgba(22, 163, 74, .2);
}

.project-tab.active b {
    background: rgba(255,255,255,.2);
    color: #fff;
}


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

.project-content {
    display: none;

    padding: 24px 26px 27px;

    animation: projectFade .3s ease;
}

.project-content.active-content {
    display: block;
}

@keyframes projectFade {

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

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

}


/* =========================================================
   PROJECT LIST
========================================================= */

.project-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


/* =========================================================
   PROJECT ITEM
========================================================= */

.project-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px;

    border: 1px solid #e5e7eb;
    border-radius: 15px;

    background: #fff;

    text-decoration: none;

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

.project-item:hover {
    transform: translateX(4px);

    border-color: #bbf7d0;

    background: #f8fffa;

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


/* =========================================================
   PROJECT ICON
========================================================= */

.project-item-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

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

    border-radius: 14px;

    font-size: 19px;

    transition: transform .25s ease;
}

.project-item:hover .project-item-icon {
    transform: scale(1.07);
}


/* Icon Colors */

.green-icon {
    background: #dcfce7;
    color: #16a34a;
}

.pink-icon {
    background: #fce7f3;
    color: #db2777;
}

.blue-icon {
    background: #dbeafe;
    color: #2563eb;
}

.purple-icon {
    background: #f3e8ff;
    color: #9333ea;
}

.orange-icon {
    background: #ffedd5;
    color: #ea580c;
}


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

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

.project-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 4px;
}

.project-category {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.green-text {
    color: #16a34a;
}

.pink-text {
    color: #db2777;
}

.blue-text {
    color: #2563eb;
}

.purple-text {
    color: #9333ea;
}

.orange-text {
    color: #ea580c;
}

.project-item-content h4 {
    margin: 0;

    color: #1e293b;

    font-size: 15px;
    font-weight: 800;
}

.project-item-content p {
    margin: 5px 0 0;

    color: #64748b;

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


/* =========================================================
   STATUS
========================================================= */

.project-status {
    flex-shrink: 0;

    padding: 5px 9px;

    border-radius: 999px;

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

    white-space: nowrap;
}

.ongoing-status {
    background: #dcfce7;
    color: #15803d;
}

.completed-status {
    background: #dbeafe;
    color: #1d4ed8;
}

.proposed-status {
    background: #ffedd5;
    color: #c2410c;
}


/* =========================================================
   ARROW
========================================================= */

.project-arrow {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

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

    border-radius: 50%;

    background: #f8fafc;
    color: #94a3b8;

    font-size: 12px;

    transition: all .25s ease;
}

.project-item:hover .project-arrow {
    background: #16a34a;
    color: #fff;

    transform: rotate(45deg);
}


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

.project-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;

    margin-top: 18px;
}

.project-stat {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 17px;

    border-radius: 15px;

    border: 1px solid transparent;

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

.project-stat:hover {
    transform: translateY(-3px);

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

.project-stat .stat-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

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

    border-radius: 12px;

    font-size: 17px;
}

.project-stat strong {
    display: block;

    font-size: 21px;
    line-height: 1;

    font-weight: 900;
}

.project-stat span {
    display: block;

    margin-top: 4px;

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

    color: #64748b;
}


/* Stat Colors */

.green-stat {
    background: #f0fdf4;
    border-color: #dcfce7;
}

.green-stat .stat-icon {
    background: #dcfce7;
    color: #16a34a;
}

.green-stat strong {
    color: #15803d;
}


.blue-stat {
    background: #eff6ff;
    border-color: #dbeafe;
}

.blue-stat .stat-icon {
    background: #dbeafe;
    color: #2563eb;
}

.blue-stat strong {
    color: #1d4ed8;
}


.orange-stat {
    background: #fff7ed;
    border-color: #fed7aa;
}

.orange-stat .stat-icon {
    background: #ffedd5;
    color: #ea580c;
}

.orange-stat strong {
    color: #c2410c;
}


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

@media (max-width: 900px) {

    .projects-section {
        padding: 55px 16px 65px;
    }

    .project-item-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

}


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

@media (max-width: 640px) {

    .projects-section {
        padding: 48px 12px 55px;
    }

    .projects-heading {
        margin-bottom: 28px;
    }

    .projects-heading h2 {
        font-size: 29px;
    }

    .projects-heading p {
        font-size: 12px;
    }

    .projects-panel {
        border-radius: 17px;
    }

    .projects-panel-header {
        padding: 17px;
        gap: 11px;
    }

    .projects-title-icon {
        width: 43px;
        height: 43px;

        border-radius: 12px;

        font-size: 18px;
    }

    .projects-panel-header h3 {
        font-size: 16px;
    }

    .projects-panel-header span {
        font-size: 8px;
    }


    /* Tabs */

    .project-tabs {
        padding: 6px;
        gap: 4px;
    }

    .project-tab {
        min-height: 47px;

        flex-direction: column;

        gap: 3px;

        padding: 7px 3px;

        font-size: 10px;
    }

    .project-tab i {
        font-size: 12px;
    }

    .project-tab b {
        display: none;
    }


    /* Project content */

    .project-content {
        padding: 16px 12px 18px;
    }

    .project-list {
        gap: 9px;
    }


    /* Project card */

    .project-item {
        align-items: flex-start;

        gap: 10px;

        padding: 12px;

        border-radius: 13px;
    }

    .project-item-icon {
        width: 41px;
        height: 41px;

        border-radius: 11px;

        font-size: 16px;
    }

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

    .project-item-content p {
        font-size: 10px;
        line-height: 1.55;
    }

    .project-category {
        font-size: 7px;
    }

    .project-status {
        font-size: 8px;
        padding: 4px 7px;
    }

    .project-arrow {
        width: 28px;
        height: 28px;

        font-size: 10px;
    }


    /* Statistics */

    .project-stat-grid {
        grid-template-columns: 1fr;

        gap: 9px;

        margin-top: 12px;
    }

    .project-stat {
        padding: 13px;
    }

    .project-stat .stat-icon {
        width: 38px;
        height: 38px;
    }

}


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

@media (max-width: 380px) {

    .projects-section {
        padding-left: 9px;
        padding-right: 9px;
    }

    .project-item {
        gap: 8px;
        padding: 10px;
    }

    .project-item-icon {
        width: 37px;
        height: 37px;
    }

    .project-item-content h4 {
        font-size: 12px;
    }

    .project-item-content p {
        font-size: 9px;
    }

    .project-arrow {
        display: none;
    }

}
/* =========================================================
   MEMBERS SECTION
========================================================= */

.members-section {
    width: 100%;
    padding: 60px 20px 75px;
    background: #f5f7fb;
}

.members-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


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

.members-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr);
    gap: 20px;

    align-items: stretch;
}

.members-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   MODERN PANEL
========================================================= */

.modern-panel {
    overflow: hidden;

    background: #fff;

    border: 1px solid #e2e8f0;
    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.06);
}


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

.modern-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 20px 23px;

    color: #fff;
}

.green-gradient {
    background:
        linear-gradient(135deg, #16a34a, #84cc16);
}

.panel-header-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

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

    border-radius: 14px;

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

    font-size: 20px;
}

.modern-panel-header span {
    display: block;

    margin-bottom: 3px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;

    opacity: .85;
}

.modern-panel-header h2 {
    margin: 0;

    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}


/* =========================================================
   MEMBERS BODY
========================================================= */

.modern-panel-body {
    padding: 22px;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 11px;
}


/* =========================================================
   MEMBER LINK
========================================================= */

.member-link {
    min-height: 57px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 10px 12px;

    color: #334155;
    text-decoration: none;

    background: #f8fafc;

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

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

    transition: all .25s ease;
}

.member-link > span:nth-child(2) {
    flex: 1;
}

.member-link > i {
    color: #94a3b8;
    font-size: 11px;

    transition: transform .25s ease;
}

.member-link:hover {
    color: #15803d;

    background: #f0fdf4;
    border-color: #bbf7d0;

    transform: translateX(3px);
}

.member-link:hover > i {
    color: #16a34a;
    transform: translateX(3px);
}


/* =========================================================
   MEMBER ICONS
========================================================= */

.member-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

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

    border-radius: 10px;

    font-size: 14px;
}

.green-light {
    background: #dcfce7;
    color: #16a34a;
}

.blue-light {
    background: #dbeafe;
    color: #2563eb;
}

.purple-light {
    background: #f3e8ff;
    color: #9333ea;
}

.orange-light {
    background: #ffedd5;
    color: #ea580c;
}

.red-light {
    background: #fee2e2;
    color: #dc2626;
}


/* =========================================================
   RESOURCES BODY
========================================================= */

.resources-body {
    display: grid;
    grid-template-columns: minmax(210px, .85fr) minmax(0, 1.6fr);

    gap: 25px;

    padding: 22px;
}


/* =========================================================
   RESOURCE LINKS
========================================================= */

.resources-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px;

    text-decoration: none;

    border: 1px solid #e8edf3;
    border-radius: 12px;

    background: #fff;

    transition: all .25s ease;
}

.resource-link:hover {
    background: #f0fdf4;
    border-color: #bbf7d0;

    transform: translateX(3px);
}

.resource-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

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

    border-radius: 9px;

    background: #dcfce7;
    color: #16a34a;

    font-size: 14px;
}

.resource-link div {
    min-width: 0;
    flex: 1;
}

.resource-link strong {
    display: block;

    color: #334155;

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

.resource-link small {
    display: block;

    margin-top: 2px;

    color: #94a3b8;

    font-size: 9px;
}

.resource-link > i {
    color: #94a3b8;
    font-size: 10px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-wrapper {
    min-width: 0;
}

.gallery-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 11px;
}

.gallery-title > span {
    color: #334155;

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

.gallery-title a {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #16a34a;
    text-decoration: none;

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

.gallery-title a:hover {
    text-decoration: underline;
}

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

.gallery-item {
    position: relative;

    display: block;

    height: 145px;

    overflow: hidden;

    border-radius: 13px;

    border: 1px solid #e2e8f0;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;

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

    background: rgba(22, 163, 74, .55);

    opacity: 0;

    transition: opacity .3s ease;

    color: #fff;
    font-size: 18px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* =========================================================
   DONATE CARD
========================================================= */

.donate-card {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #bbf7d0;
    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(15, 23, 42, 0.07);
}


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

.donate-header {
    padding: 27px 22px 25px;

    text-align: center;

    color: #fff;

    background:
        linear-gradient(145deg, #15803d, #65a30d);
}

.donate-icon {
    width: 55px;
    height: 55px;

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

    margin: 0 auto 12px;

    border-radius: 50%;

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

    font-size: 21px;
}

.donate-header > span {
    display: block;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.3px;

    opacity: .85;
}

.donate-header h2 {
    margin: 4px 0 0;

    font-size: 25px;
    font-weight: 900;
}

.donate-header p {
    max-width: 240px;

    margin: 8px auto 0;

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

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


/* =========================================================
   DONATE BODY
========================================================= */

.donate-body {
    padding: 20px;
}


/* =========================================================
   DONATE DETAILS
========================================================= */

.donate-detail {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px;

    margin-bottom: 9px;

    background: #f8fafc;

    border: 1px solid #e8edf3;
    border-radius: 12px;
}

.detail-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

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

    border-radius: 9px;

    background: #dcfce7;
    color: #16a34a;

    font-size: 13px;
}

.donate-detail > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}

.donate-detail span {
    display: block;

    color: #94a3b8;

    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.donate-detail strong {
    display: block;

    margin-top: 3px;

    color: #334155;

    font-size: 11px;

    overflow-wrap: anywhere;
}

.upi-text {
    font-size: 9px !important;
}

.copy-btn {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    border: 0;
    border-radius: 8px;

    background: #e2e8f0;
    color: #64748b;

    cursor: pointer;

    transition: all .2s ease;
}

.copy-btn:hover {
    background: #16a34a;
    color: #fff;
}

.copy-btn.copied {
    background: #16a34a;
    color: #fff;
}


/* =========================================================
   QR
========================================================= */

.qr-section {
    margin-top: 18px;

    padding-top: 18px;

    text-align: center;

    border-top: 1px solid #e5e7eb;
}

.qr-section > span {
    display: block;

    margin-bottom: 10px;

    color: #64748b;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.qr-box {
    width: 175px;
    height: 175px;

    margin: 0 auto;

    padding: 7px;

    background: #fff;

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

    box-shadow:
        0 5px 18px rgba(15,23,42,.06);
}

.qr-box img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.qr-section p {
    max-width: 220px;

    margin: 9px auto 0;

    color: #94a3b8;

    font-size: 9px;
    line-height: 1.5;
}


/* =========================================================
   DONATE BUTTON
========================================================= */

.donate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;

    margin-top: 17px;

    padding: 12px 16px;

    border-radius: 11px;

    color: #fff;
    text-decoration: none;

    background:
        linear-gradient(135deg, #16a34a, #65a30d);

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

    box-shadow:
        0 7px 18px rgba(22,163,74,.2);

    transition: all .25s ease;
}

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

    box-shadow:
        0 10px 24px rgba(22,163,74,.3);
}

.donate-button i:last-child {
    transition: transform .25s ease;
}

.donate-button:hover i:last-child {
    transform: translateX(4px);
}


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

@media (max-width: 1050px) {

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

    .donate-card {
        height: auto;
    }

    .resources-body {
        grid-template-columns: 1fr 1.6fr;
    }

}


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

@media (max-width: 700px) {

    .members-section {
        padding: 45px 12px 55px;
    }

    .members-layout {
        gap: 14px;
    }

    .members-main {
        gap: 14px;
    }

    .modern-panel,
    .donate-card {
        border-radius: 16px;
    }

    .modern-panel-header {
        padding: 16px;
        gap: 11px;
    }

    .panel-header-icon {
        width: 42px;
        height: 42px;

        border-radius: 11px;

        font-size: 17px;
    }

    .modern-panel-header h2 {
        font-size: 16px;
    }

    .modern-panel-header span {
        font-size: 7px;
    }

    .modern-panel-body {
        padding: 15px;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .member-link {
        min-height: 52px;
        font-size: 12px;
    }

    .resources-body {
        grid-template-columns: 1fr;
        gap: 20px;

        padding: 15px;
    }

    .gallery-grid {
        gap: 6px;
    }

    .gallery-item {
        height: 105px;
        border-radius: 10px;
    }

    .donate-header {
        padding: 23px 17px;
    }

    .donate-body {
        padding: 16px;
    }

    .qr-box {
        width: 160px;
        height: 160px;
    }

}


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

@media (max-width: 380px) {

    .members-section {
        padding-left: 9px;
        padding-right: 9px;
    }

    .gallery-item {
        height: 90px;
    }

    .donate-header h2 {
        font-size: 22px;
    }

    .qr-box {
        width: 145px;
        height: 145px;
    }

}
/* =========================================================
   CONTACT MODAL
========================================================= */

#contactPopup {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

#contactPopup.flex {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   MODAL ANIMATION
========================================================= */

#contactPopup > div {
    transform: translateY(25px) scale(0.96);
    transition: transform 0.3s ease;
}

#contactPopup.flex > div {
    transform: translateY(0) scale(1);
}


/* =========================================================
   MODAL SCROLLBAR
========================================================= */

#contactPopup > div::-webkit-scrollbar {
    width: 5px;
}

#contactPopup > div::-webkit-scrollbar-track {
    background: transparent;
}

#contactPopup > div::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 999px;
}


/* =========================================================
   INPUT AUTOFILL
========================================================= */

#contactPopup input:-webkit-autofill,
#contactPopup input:-webkit-autofill:hover,
#contactPopup input:-webkit-autofill:focus {
    -webkit-text-fill-color: #1f2937;
    -webkit-box-shadow: 0 0 0 1000px #f9fafb inset;
    transition: background-color 5000s ease-in-out 0s;
}


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

@media (max-width: 640px) {

    #contactPopup {
        padding: 12px;
    }

    #contactPopup > div {
        max-width: 390px;
        border-radius: 18px;
    }
}


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

@media (max-width: 380px) {

    #contactPopup {
        padding: 10px;
    }

    #contactPopup > div {
        max-width: 100%;
    }
}