 

        /* =========================================================
           GLOBAL
        ========================================================= */

        :root {
            --primary: #0f766e;
            --primary-dark: #095c56;
            --secondary: #f59e0b;
            --secondary-dark: #d97706;

            --dark: #102a2a;
            --text: #475569;
            --muted: #64748b;

            --light: #f8fafc;
            --white: #ffffff;

            --border: #e2e8f0;

            --radius: 18px;
            --shadow: 0 20px 60px rgba(15, 23, 42, .10);

            --container: 1180px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "DM Sans", sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
        }

        img {
            width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            font-family: inherit;
        }

        .container {
            width: min(92%, var(--container));
            margin: auto;
        }

        .section {
            padding: 100px 0;
        }

        .section-heading {
            max-width: 700px;
            margin-bottom: 55px;
        }

        .section-heading.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;

            margin-bottom: 14px;
        }

        .eyebrow::before {
            content: "";
            width: 30px;
            height: 2px;
            background: var(--secondary);
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--dark);
            line-height: 1.2;
        }

        h1,
        h2 {
            font-family: "Playfair Display", serif;
        }

        h2 {
            font-size: clamp(34px, 4vw, 52px);
            margin-bottom: 18px;
        }

        .section-heading p {
            color: var(--muted);
            font-size: 17px;
        }

        /* =========================================================
           BUTTONS
        ========================================================= */

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;

            padding: 13px 24px;

            border-radius: 999px;

            border: none;

            font-size: 14px;
            font-weight: 700;

            cursor: pointer;

            transition: .3s ease;
        }

        .btn-primary {
            background: var(--secondary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
        }

        .btn-light {
            background: #fff;
            color: var(--primary);
        }

        .btn-light:hover {
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 1px solid rgba(255,255,255,.5);
            color: #fff;
            background: transparent;
        }

        .btn-outline:hover {
            background: #fff;
            color: var(--primary);
        }

        /* =========================================================
           HEADER
        ========================================================= */

        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;

            z-index: 1000;

            transition: .3s ease;
        }

        .header.scrolled {
            background: rgba(255,255,255,.96);
            backdrop-filter: blur(16px);

            box-shadow: 0 8px 30px rgba(15,23,42,.08);
        }

        .nav {
            height: 82px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-mark {
            width: 44px;
            height: 44px;

            border-radius: 14px;

            background: var(--secondary);

            color: #fff;

            display: grid;
            place-items: center;

            font-weight: 800;
            font-size: 20px;
        }

        .logo-text {
            color: #fff;
            font-weight: 800;
            font-size: 19px;
            letter-spacing: -.4px;
        }

        .header.scrolled .logo-text {
            color: var(--dark);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;

            list-style: none;
        }

        .nav-links a {
            color: rgba(255,255,255,.92);
            font-size: 14px;
            font-weight: 600;

            transition: .25s;
        }

        .header.scrolled .nav-links a {
            color: var(--dark);
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .menu-toggle {
            display: none;

            border: none;
            background: transparent;

            color: #fff;

            font-size: 28px;
            cursor: pointer;
        }

        .header.scrolled .menu-toggle {
            color: var(--dark);
        }

        /* =========================================================
           HERO CAROUSEL
        ========================================================= */

        .hero {
            height: 100vh;
            min-height: 680px;

            position: relative;

            overflow: hidden;
        }

        .slide {
            position: absolute;
            inset: 0;

            opacity: 0;

            background-size: cover;
            background-position: center;

            transition: opacity 1s ease;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::after {
            content: "";

            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    90deg,
                    rgba(3, 25, 24, .88),
                    rgba(3, 25, 24, .48),
                    rgba(3, 25, 24, .20)
                );
        }

        .slide-content {
            position: relative;

            z-index: 2;

            height: 100%;

            display: flex;
            align-items: center;
        }

        .hero-content {
            max-width: 760px;

            color: #fff;

            padding-top: 60px;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;

            padding: 7px 13px;

            border-radius: 999px;

            background: rgba(255,255,255,.13);
            backdrop-filter: blur(10px);

            border: 1px solid rgba(255,255,255,.18);

            font-size: 12px;
            font-weight: 700;

            text-transform: uppercase;
            letter-spacing: 1.4px;

            margin-bottom: 20px;
        }

        .hero-label span {
            width: 7px;
            height: 7px;

            border-radius: 50%;

            background: var(--secondary);
        }

        .hero h1 {
            color: #fff;

            font-size: clamp(45px, 6vw, 76px);

            margin-bottom: 24px;
        }

        .hero p {
            max-width: 650px;

            color: rgba(255,255,255,.88);

            font-size: 18px;

            margin-bottom: 32px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 13px;
        }

        .carousel-controls {
            position: absolute;

            z-index: 5;

            right: 5%;
            bottom: 45px;

            display: flex;
            gap: 10px;
        }

        .carousel-btn {
            width: 46px;
            height: 46px;

            border-radius: 50%;

            border: 1px solid rgba(255,255,255,.35);

            background: rgba(255,255,255,.1);

            color: #fff;

            cursor: pointer;

            backdrop-filter: blur(10px);

            transition: .3s;
        }

        .carousel-btn:hover {
            background: var(--secondary);
            border-color: var(--secondary);
        }

        .carousel-dots {
            position: absolute;

            z-index: 5;

            left: 5%;
            bottom: 55px;

            display: flex;
            gap: 7px;
        }

        .dot {
            width: 26px;
            height: 4px;

            border-radius: 10px;

            background: rgba(255,255,255,.35);

            cursor: pointer;

            transition: .3s;
        }

        .dot.active {
            width: 50px;
            background: var(--secondary);
        }

        /* =========================================================
           INTRO
        ========================================================= */

        .intro {
            padding: 80px 0;

            background: var(--light);
        }

        .intro-grid {
            display: grid;

            grid-template-columns: 1fr 1.8fr;

            gap: 70px;

            align-items: center;
        }

        .intro-title h2 {
            font-size: 46px;
        }

        .intro-text p {
            color: var(--muted);

            font-size: 17px;

            margin-bottom: 18px;
        }

        .intro-signature {
            display: flex;
            align-items: center;
            gap: 12px;

            margin-top: 25px;

            color: var(--dark);
            font-weight: 700;
        }

        .intro-signature span {
            width: 35px;
            height: 2px;

            background: var(--secondary);
        }

        /* =========================================================
           ABOUT
        ========================================================= */

        .about-grid {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 80px;

            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            height: 570px;

            object-fit: cover;

            border-radius: 24px;
        }

        .experience-card {
            position: absolute;

            bottom: 30px;
            right: -25px;

            background: #fff;

            padding: 25px;

            border-radius: 18px;

            box-shadow: var(--shadow);

            max-width: 190px;
        }

        .experience-card strong {
            display: block;

            color: var(--primary);

            font-family: "Playfair Display", serif;

            font-size: 42px;
            line-height: 1;
        }

        .experience-card span {
            font-size: 13px;
            color: var(--muted);
        }

        .about-content p {
            margin-bottom: 20px;
            color: var(--muted);
        }

        /* =========================================================
           WHO WE ARE
        ========================================================= */

        .who {
            background: var(--light);
        }

        .who-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 25px;
        }

        .info-card {
            background: #fff;

            padding: 34px;

            border-radius: var(--radius);

            border: 1px solid var(--border);

            transition: .3s;
        }

        .info-card:hover {
            transform: translateY(-7px);

            box-shadow: var(--shadow);
        }

        .info-icon {
            width: 55px;
            height: 55px;

            display: grid;
            place-items: center;

            border-radius: 16px;

            background: rgba(15,118,110,.10);

            color: var(--primary);

            font-size: 25px;

            margin-bottom: 22px;
        }

        .info-card h3 {
            font-size: 21px;

            margin-bottom: 12px;
        }

        .info-card p {
            color: var(--muted);
            font-size: 15px;
        }

        /* =========================================================
           INFLUENCE
        ========================================================= */

        .influence {
            background: var(--primary);
            color: #fff;
        }

        .influence .section-heading h2,
        .influence .section-heading p {
            color: #fff;
        }

        .influence-grid {
            display: grid;

            grid-template-columns: repeat(5, 1fr);

            gap: 15px;
        }

        .influence-card {
            padding: 32px 25px;

            border-radius: 18px;

            background: rgba(255,255,255,.08);

            border: 1px solid rgba(255,255,255,.12);

            transition: .3s;
        }

        .influence-card:hover {
            background: rgba(255,255,255,.14);

            transform: translateY(-5px);
        }

        .influence-number {
            font-family: "Playfair Display", serif;

            font-size: 42px;

            color: var(--secondary);

            margin-bottom: 10px;
        }

        .influence-card h3 {
            color: #fff;

            font-size: 19px;

            margin-bottom: 10px;
        }

        .influence-card p {
            color: rgba(255,255,255,.72);

            font-size: 14px;
        }

        /* =========================================================
           MISSION VISION VALUES
        ========================================================= */

        .mv-grid {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 25px;
        }

        .mv-card {
            padding: 40px;

            border-radius: 22px;

            border: 1px solid var(--border);

            background: #fff;
        }

        .mv-card.large {
            grid-row: span 2;
            background: #f0fdfa;
            border-color: #ccfbf1;
        }

        .mv-card h3 {
            font-size: 25px;
            margin-bottom: 14px;
        }

        .mv-card p {
            color: var(--muted);
        }

        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;

            margin-top: 20px;
        }

        .value {
            padding: 8px 13px;

            border-radius: 999px;

            background: #fff;

            border: 1px solid var(--border);

            font-size: 13px;

            color: var(--primary);

            font-weight: 700;
        }

        /* =========================================================
           STORIES
        ========================================================= */

        .stories {
            background: var(--light);
        }

        .stories-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 25px;
        }

        .story-card {
            background: #fff;

            border-radius: 20px;

            overflow: hidden;

            border: 1px solid var(--border);

            transition: .3s;
        }

        .story-card:hover {
            transform: translateY(-6px);

            box-shadow: var(--shadow);
        }

        .story-image {
            position: relative;
        }

        .story-image img {
            height: 240px;
            object-fit: cover;
        }

        .story-category {
            position: absolute;

            left: 18px;
            bottom: 18px;

            padding: 6px 12px;

            border-radius: 999px;

            background: var(--secondary);

            color: #fff;

            font-size: 11px;

            font-weight: 700;

            text-transform: uppercase;
        }

        .story-content {
            padding: 25px;
        }

        .story-content h3 {
            font-size: 21px;
            margin-bottom: 10px;
        }

        .story-content p {
            color: var(--muted);
            font-size: 14px;
            margin-bottom: 17px;
        }

        .read-more {
            color: var(--primary);

            font-size: 13px;

            font-weight: 800;
        }

        /* =========================================================
           DONATION
        ========================================================= */

        .donate {
            position: relative;

            background:
                linear-gradient(
                    90deg,
                    rgba(15,118,110,.97),
                    rgba(15,118,110,.88)
                ),
                url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?auto=format&fit=crop&w=1800&q=85");

            background-size: cover;
            background-position: center;

            color: #fff;
        }

        .donate-grid {
            display: grid;

            grid-template-columns: 1.4fr .8fr;

            gap: 80px;

            align-items: center;
        }

        .donate h2 {
            color: #fff;
            font-size: clamp(38px, 5vw, 58px);
        }

        .donate p {
            color: rgba(255,255,255,.82);

            font-size: 17px;

            max-width: 650px;

            margin-bottom: 28px;
        }

        .donate-card {
            background: #fff;

            padding: 30px;

            border-radius: 22px;

            box-shadow: 0 30px 70px rgba(0,0,0,.18);
        }

        .donate-card h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .donate-card p {
            color: var(--muted);

            font-size: 14px;

            margin-bottom: 20px;
        }

        .donation-options {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 8px;

            margin-bottom: 15px;
        }

        .amount {
            padding: 12px;

            border: 1px solid var(--border);

            background: #fff;

            border-radius: 10px;

            cursor: pointer;

            font-weight: 700;

            color: var(--dark);
        }

        .amount:hover,
        .amount.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .donate-card .btn {
            width: 100%;
        }

        /* =========================================================
           VOLUNTEER
        ========================================================= */

        .volunteer {
            padding: 75px 0;
        }

        .volunteer-box {
            background: var(--dark);

            border-radius: 25px;

            padding: 55px;

            display: flex;

            justify-content: space-between;

            align-items: center;

            gap: 30px;
        }

        .volunteer-box h2 {
            color: #fff;

            font-size: 40px;

            margin-bottom: 10px;
        }

        .volunteer-box p {
            color: rgba(255,255,255,.65);

            max-width: 650px;
        }

        /* =========================================================
           FOOTER
        ========================================================= */

        .footer {
            background: #071c1b;

            color: rgba(255,255,255,.65);

            padding: 70px 0 25px;
        }

        .footer-grid {
            display: grid;

            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;

            gap: 50px;

            padding-bottom: 50px;

            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .footer .logo-text {
            color: #fff;
        }

        .footer-brand p {
            margin-top: 18px;

            max-width: 330px;

            font-size: 14px;
        }

        .footer h4 {
            color: #fff;

            font-size: 15px;

            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;

            transition: .25s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .socials {
            display: flex;

            gap: 9px;

            margin-top: 22px;
        }

        .social {
            width: 38px;
            height: 38px;

            display: grid;
            place-items: center;

            border-radius: 50%;

            background: rgba(255,255,255,.08);

            color: #fff;

            font-size: 13px;

            transition: .3s;
        }

        .social:hover {
            background: var(--secondary);
        }

        .footer-bottom {
            padding-top: 22px;

            display: flex;

            justify-content: space-between;

            gap: 20px;

            font-size: 12px;
        }

        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media(max-width: 1000px) {

            .nav-links {
                gap: 20px;
            }

            .who-grid,
            .stories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .influence-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid,
            .donate-grid {
                grid-template-columns: 1fr;
            }

            .about-image {
                max-width: 650px;
            }

            .donate-card {
                max-width: 500px;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media(max-width: 760px) {

            .section {
                padding: 75px 0;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;

                top: 82px;
                left: 4%;

                width: 92%;

                background: #fff;

                padding: 20px;

                border-radius: 16px;

                display: none;

                flex-direction: column;

                align-items: flex-start;

                gap: 0;

                box-shadow: var(--shadow);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;

                color: var(--dark) !important;

                padding: 12px 5px;
            }

            .nav-donate {
                display: none;
            }

            .hero {
                min-height: 650px;
            }

            .hero-content {
                padding-top: 40px;
            }

            .hero p {
                font-size: 16px;
            }

            .carousel-controls {
                right: 5%;
                bottom: 30px;
            }

            .carousel-dots {
                bottom: 43px;
            }

            .intro-grid,
            .about-grid,
            .mv-grid {
                grid-template-columns: 1fr;

                gap: 35px;
            }

            .about-image img {
                height: 450px;
            }

            .experience-card {
                right: 15px;
            }

            .who-grid,
            .stories-grid,
            .influence-grid {
                grid-template-columns: 1fr;
            }

            .mv-card.large {
                grid-row: auto;
            }

            .donate-grid {
                gap: 35px;
            }

            .volunteer-box {
                padding: 35px 25px;

                flex-direction: column;

                align-items: flex-start;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .footer-bottom {
                flex-direction: column;
            }
        } 