
        /* =====================================================
           GLOBAL
        ===================================================== */

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Inter", Arial, sans-serif;
            background: #f7faf9;
            color: #263238;
            line-height: 1.7;
        }

        a {
            text-decoration: none !important;
        }

        .section-padding {
            padding: 75px 0;
        }

        .section-title {
            margin-bottom: 45px;
        }

        .section-title .small-title {
            color: #008c8c;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .section-title h2 {
            font-size: 34px;
            font-weight: 800;
            color: #183b3b;
            margin-bottom: 14px;
        }

        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: #687777;
        }


        /* =====================================================
           NAVBAR
        ===================================================== */

        .main-navbar {
            background: #008c8c;
            min-height: 80px;
            padding: 9px 0;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
            z-index: 9999;
        }

        .navbar-brand {
            padding: 0;
        }

        .navbar-logo {
            height: 58px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .nav-teal-link {
            color: #ffffff !important;
            font-size: 15px;
            font-weight: 600;
            padding: 11px 13px !important;
            margin: 0 2px;
            border-radius: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-teal-link:hover,
        .nav-teal-link:focus {
            color: #ffffff !important;
            background: rgba(255, 255, 255, 0.16);
        }

        .login-button {
            color: #008c8c !important;
            background: #ffffff;
            font-size: 15px;
            font-weight: 700;
            padding: 9px 21px !important;
            margin-left: 7px;
            border-radius: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
        }

        .login-button:hover {
            color: #ffffff !important;
            background: #006f6f;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.7) !important;
            padding: 7px 10px;
            border-radius: 6px;
        }

        .navbar-toggler:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
        }


        /* =====================================================
           HERO / BANNER
        ===================================================== */

 .hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;

    background:
        linear-gradient(
            110deg,
            rgba(0, 55, 55, 0.92) 0%,
            rgba(0, 116, 116, 0.72) 45%,
            rgba(232, 190, 58, 0.28) 100%
        ),
        url("images/loginbanner.png");

    background-size: cover;
    background-position: center;
    animation: heroBackground 16s ease-in-out infinite alternate;
}


/* Animated overlay */

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(255, 215, 80, 0.28),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(0, 255, 220, 0.18),
            transparent 30%
        );

    animation: gradientMove 9s ease-in-out infinite alternate;
}


/* Bottom soft fade */

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(247, 250, 249, 0.95)
    );

    z-index: -1;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: #ffffff;
    padding: 75px 0;

    animation: heroContentReveal 1s ease-out both;
}


/* =========================================================
   BADGE
========================================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 17px;

    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.40);

    border-radius: 50px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;

    margin-bottom: 20px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

    animation:
        badgeReveal 0.8s ease-out 0.2s both,
        badgeFloat 4s ease-in-out 1.5s infinite;
}


/* Small animated dot */

.hero-badge::before {
    content: "";
    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #ffd84d;

    box-shadow: 0 0 0 0 rgba(255, 216, 77, 0.7);

    animation: pulseDot 2s infinite;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero-content h1 {
    font-size: 52px;
    line-height: 1.12;
    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 20px;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.20);

    animation:
        headingReveal 1s cubic-bezier(.2,.8,.2,1) 0.35s both;
}


/* Highlight word */

.hero-highlight {
    color: #ffd84d;

    position: relative;
    display: inline-block;
}


/* Animated underline */

.hero-highlight::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -5px;

    width: 100%;
    height: 4px;

    border-radius: 20px;

    background: #ffd84d;

    transform: scaleX(0);
    transform-origin: left;

    animation: underlineReveal 1s ease 1.2s forwards;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-content p {
    font-size: 17px;
    line-height: 1.8;

    max-width: 680px;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 30px;

    animation:
        paragraphReveal 1s ease 0.65s both;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    animation:
        buttonsReveal 1s ease 0.85s both;
}


.hero-buttons a {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 27px;

    border-radius: 50px;

    font-weight: 700;

    margin-right: 10px;
    margin-bottom: 10px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
}


/* Primary */

.btn-primary-custom {
    color: #ffffff;
    background: #008c8c;

    box-shadow:
        0 8px 25px rgba(0, 80, 80, 0.30);
}


.btn-primary-custom:hover {
    color: #ffffff;

    background: #006f6f;

    transform: translateY(-4px);

    box-shadow:
        0 14px 32px rgba(0, 60, 60, 0.35);
}


/* Shine effect */

.btn-primary-custom::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;
}


.btn-primary-custom:hover::before {
    left: 130%;
}


/* Secondary */

.btn-light-custom {
    color: #006f6f;
    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15);
}


.btn-light-custom:hover {
    color: #006f6f;

    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   FLOATING DECORATIVE ELEMENTS
========================================================= */

.hero-floating {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


.hero-floating.one {
    width: 110px;
    height: 110px;

    right: 9%;
    top: 15%;

    border: 1px solid rgba(255,255,255,0.25);

    background: rgba(255,255,255,0.07);

    backdrop-filter: blur(5px);

    animation: floatingOne 7s ease-in-out infinite;
}


.hero-floating.two {
    width: 65px;
    height: 65px;

    right: 24%;
    bottom: 18%;

    background: rgba(255,216,77,0.20);

    border: 1px solid rgba(255,216,77,0.35);

    animation: floatingTwo 6s ease-in-out infinite;
}


.hero-floating.three {
    width: 25px;
    height: 25px;

    right: 15%;
    top: 62%;

    background: #ffd84d;

    box-shadow:
        0 0 25px rgba(255,216,77,0.45);

    animation: floatingThree 4s ease-in-out infinite;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes heroBackground {

    0% {
        background-position: 50% 50%;
        background-size: 100%;
    }

    100% {
        background-position: 56% 46%;
        background-size: 108%;
    }

}


@keyframes gradientMove {

    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.12);
        opacity: 1;
    }

}


@keyframes heroContentReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes badgeReveal {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


@keyframes pulseDot {

    0% {
        box-shadow: 0 0 0 0 rgba(255,216,77,0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255,216,77,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,216,77,0);
    }

}


@keyframes headingReveal {

    from {
        opacity: 0;
        transform: translateY(45px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

}


@keyframes underlineReveal {

    to {
        transform: scaleX(1);
    }

}


@keyframes paragraphReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes buttonsReveal {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes floatingOne {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-25px, 30px, 0) rotate(12deg);
    }

}


@keyframes floatingTwo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }

}


@keyframes floatingThree {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hero-section {
        min-height: 470px;

        background-position: center;
    }

    .hero-content {
        padding: 65px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-section {
        min-height: 530px;

        background-position: center;

        animation-duration: 20s;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: -0.7px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 13px;
    }

    .hero-buttons a {
        width: 100%;
        margin-right: 0;
        padding: 13px 20px;
    }

    .hero-floating.one {
        width: 75px;
        height: 75px;

        right: 4%;
        top: 10%;
    }

    .hero-floating.two {
        width: 45px;
        height: 45px;

        right: 8%;
        bottom: 15%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-section {
        min-height: 560px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-badge {
        letter-spacing: 0.6px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-section,
    .hero-section::before,
    .hero-content,
    .hero-badge,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .hero-floating,
    .hero-badge::before {
        animation: none !important;
    }

}


/* =========================================================
   OPTIONAL: KEEP HERO IMAGE FROM BECOMING TOO DARK
========================================================= */

@media (max-width: 767px) {

    .hero-section {
        background:
            linear-gradient(
                110deg,
                rgba(0, 55, 55, 0.82),
                rgba(0, 116, 116, 0.60),
                rgba(232, 190, 58, 0.20)
            ),
            url("images/loginbanner.png");

        background-size: cover;
        background-position: center;
    }

}

        /* =====================================================
           QUICK STATS
        ===================================================== */

        .stats-wrapper {
            margin-top: -45px;
            position: relative;
            z-index: 5;
        }

        .stat-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
            height: 100%;
            border: 1px solid #edf2f1;
        }

        .stat-number {
            color: #008c8c;
            font-size: 31px;
            font-weight: 800;
            margin-bottom: 3px;
        }

        .stat-label {
            color: #637171;
            font-size: 14px;
            font-weight: 600;
        }


        /* =====================================================
           ABOUT
        ===================================================== */

        .about-section {
            background: #ffffff;
        }

        .about-image {
            width: 100%;
            height: 100%;
            min-height: 390px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
        }

        .about-content {
            padding-left: 25px;
        }

        .about-content .section-label {
            color: #008c8c;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .about-content h2 {
            font-size: 34px;
            line-height: 1.25;
            color: #183b3b;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .about-content p {
            color: #687777;
            text-align: justify;
        }

        .mission-box {
            margin-top: 22px;
            padding: 18px 20px;
            border-left: 4px solid #008c8c;
            background: #eef8f7;
            border-radius: 0 8px 8px 0;
        }

        .mission-box strong {
            color: #183b3b;
        }


        /* =====================================================
           ACTIVITIES
        ===================================================== */

        .activities-section {
            background: #f3f8f7;
        }

        .activity-card {
            height: 100%;
            background: #ffffff;
            padding: 30px 25px;
            border-radius: 13px;
            border: 1px solid #e5eeee;
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .activity-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
        }

        .activity-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: #e5f5f3;
            color: #008c8c;
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .activity-card h4 {
            font-size: 19px;
            font-weight: 700;
            color: #183b3b;
            margin-bottom: 10px;
        }

        .activity-card p {
            color: #6d7b7b;
            font-size: 14px;
            margin-bottom: 0;
        }


        /* =====================================================
           COMPUTER TRAINING
        ===================================================== */

        .training-section {
            background: #ffffff;
        }

        .training-card {
            background: linear-gradient(135deg, #006f6f, #008c8c);
            color: #ffffff;
            padding: 40px;
            border-radius: 16px;
            height: 100%;
            box-shadow: 0 12px 35px rgba(0, 100, 100, 0.16);
        }

        .training-card h2 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .training-card p {
            color: rgba(255, 255, 255, 0.88);
        }

        .training-card .training-btn {
            display: inline-block;
            margin-top: 12px;
            padding: 11px 22px;
            background: #ffffff;
            color: #007575;
            border-radius: 25px;
            font-weight: 700;
        }

        .courses-card {
            background: #f7faf9;
            border: 1px solid #e4eeee;
            padding: 30px;
            border-radius: 16px;
            height: 100%;
        }

        .courses-card h3 {
            color: #183b3b;
            font-size: 23px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .course-list {
            padding: 0;
            margin: 0;
            list-style: none;
            columns: 2;
        }

        .course-list li {
            position: relative;
            padding: 8px 0 8px 22px;
            color: #5f7070;
            font-size: 14px;
        }

        .course-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #008c8c;
            font-weight: 800;
        }


        /* =====================================================
           CTA
        ===================================================== */

        .cta-section {
            background: #e8f5f3;
            padding: 65px 0;
        }

        .cta-box {
            text-align: center;
            max-width: 850px;
            margin: auto;
        }

        .cta-box h2 {
            color: #183b3b;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .cta-box p {
            color: #657575;
            margin-bottom: 25px;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 28px;
            background: #008c8c;
            color: #ffffff;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #006f6f;
            color: #ffffff;
            transform: translateY(-2px);
        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 1199px) {

            .nav-teal-link {
                font-size: 14px;
                padding-left: 9px !important;
                padding-right: 9px !important;
            }

            .hero-content h1 {
                font-size: 40px;
            }
        }

        @media (max-width: 991px) {

            .navbar-collapse {
                margin-top: 12px;
                padding: 10px 0;
                border-top: 1px solid rgba(255,255,255,0.20);
            }

            .nav-teal-link {
                margin: 2px 0;
                padding: 11px 14px !important;
            }

            .login-button {
                margin: 8px 0 5px;
                display: inline-block;
            }

            .hero-section {
                min-height: 400px;
            }

            .about-content {
                padding-left: 0;
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {

            .main-navbar {
                min-height: 70px;
            }

            .navbar-logo {
                height: 48px;
            }

            .hero-section {
                min-height: 470px;
                background-position: center;
            }

            .hero-content {
                padding: 35px 0;
            }

            .hero-content p {
                font-size: 15px;
            }

            .stats-wrapper {
                margin-top: 25px;
            }

            .section-padding {
                padding: 55px 0;
            }


            .about-image {
                min-height: 280px;
            }

            .training-card,
            .courses-card {
                padding: 28px 22px;
            }

            .course-list {
                columns: 1;
            }
        }

        @media (max-width: 480px) {

            .container {
                padding-left: 18px;
                padding-right: 18px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 14px;
            }

            .hero-buttons a {
                display: block;
                text-align: center;
                margin-right: 0;
            }
        }


        * {
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", sans-serif;
            color: var(--text);
            background: #fff;
        }

        /* =========================
           ABOUT HERO
        ========================= */

        .about-hero {
            position: relative;
            min-height: 430px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background:
                linear-gradient(
                    135deg,
                    rgba(0, 85, 85, 0.94),
                    rgba(0, 140, 140, 0.86)
                ),
                url("images/s1.jpeg") center/cover no-repeat;
        }

        .about-hero::after {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(228, 195, 90, 0.18);
            right: -80px;
            top: -100px;
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 850px;
            color: #fff;
            padding: 70px 0;
        }

        .about-badge {
            display: inline-block;
            padding: 8px 17px;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 22px;
        }

        .about-hero h1 {
            font-size: 52px;
            line-height: 1.12;
            font-weight: 800;
            margin-bottom: 22px;
        }

        .about-hero h1 span {
            color: var(--yellow);
        }

        .about-hero p {
            max-width: 720px;
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 0;
        }

        /* =========================
           INTRODUCTION
        ========================= */

        .about-intro {
            padding: 90px 0;
            background: #fff;
        }

        .about-image-wrap {
            position: relative;
            padding-right: 25px;
        }

        .about-image {
            width: 100%;
            height: 470px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 85, 85, 0.13);
        }

        .experience-box {
            position: absolute;
            right: 0;
            bottom: 25px;
            background: var(--yellow);
            color: var(--deep-teal);
            padding: 22px 25px;
            border-radius: 18px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            min-width: 160px;
            text-align: center;
        }

        .experience-box strong {
            display: block;
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
        }

        .experience-box span {
            display: block;
            font-size: 13px;
            font-weight: 700;
            margin-top: 8px;
        }

        .section-label {
            display: inline-block;
            color: var(--teal);
            font-weight: 800;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }

        .about-content h2 {
            font-size: 38px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--deep-teal);
            margin-bottom: 22px;
        }

        .about-content p {
            font-size: 16px;
            line-height: 1.85;
            color: var(--muted);
            margin-bottom: 17px;
        }

        /* =========================
           MISSION / VISION
        ========================= */

        .mission-section {
            padding: 85px 0;
            background: var(--light-bg);
        }

        .section-heading {
            max-width: 720px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .section-heading h2 {
            font-size: 38px;
            color: var(--deep-teal);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-heading p {
            color: var(--muted);
            line-height: 1.8;
        }

        .mission-card {
            height: 100%;
            padding: 38px;
            border-radius: 22px;
            background: #fff;
            border: 1px solid #e7eeee;
            box-shadow: 0 15px 40px rgba(0, 85, 85, 0.07);
            transition: all 0.3s ease;
        }

        .mission-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 45px rgba(0, 85, 85, 0.12);
        }

        .mission-icon {
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            background: #e3f3ef;
            color: var(--teal);
            font-size: 25px;
            font-weight: 800;
            margin-bottom: 22px;
        }

        .mission-card h3 {
            color: var(--deep-teal);
            font-size: 23px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .mission-card p {
            color: var(--muted);
            line-height: 1.8;
            margin: 0;
        }

        /* =========================
           VALUES
        ========================= */

        .values-section {
            padding: 90px 0;
            background: #fff;
        }

        .value-card {
            height: 100%;
            padding: 30px 26px;
            border-radius: 20px;
            background: var(--cream);
            border: 1px solid #f0e7cf;
            transition: 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            border-color: var(--yellow);
        }

        .value-number {
            color: var(--yellow);
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .value-card h4 {
            color: var(--deep-teal);
            font-weight: 800;
            margin-bottom: 12px;
        }

        .value-card p {
            color: var(--muted);
            line-height: 1.75;
            margin: 0;
        }

        /* =========================
           AREAS OF WORK
        ========================= */

        .work-section {
            padding: 90px 0;
            background: var(--deep-teal);
        }

        .work-section .section-heading h2 {
            color: #fff;
        }

        .work-section .section-heading p {
            color: rgba(255, 255, 255, 0.78);
        }

        .work-card {
            height: 100%;
            padding: 30px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: 0.3s ease;
        }

        .work-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
        }

        .work-icon {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--yellow);
            color: var(--deep-teal);
            border-radius: 14px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .work-card h4 {
            color: #fff;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .work-card p {
            color: rgba(255, 255, 255, 0.76);
            line-height: 1.75;
            margin: 0;
        }

        /* =========================
           COMMUNITY APPROACH
        ========================= */

        .approach-section {
            padding: 90px 0;
            background: #f8fbfa;
        }

        .approach-list {
            list-style: none;
            padding: 0;
            margin: 25px 0 0;
        }

        .approach-list li {
            position: relative;
            padding: 14px 0 14px 38px;
            color: var(--muted);
            line-height: 1.7;
            border-bottom: 1px solid #e3ece9;
        }

        .approach-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 13px;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #dceee8;
            color: var(--teal);
            border-radius: 50%;
            font-size: 13px;
            font-weight: 800;
        }

        .approach-image {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 20px 45px rgba(0, 85, 85, 0.12);
        }

        /* =========================
           CTA
        ========================= */

        .about-cta {
            padding: 80px 0;
            background: var(--cream);
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            background: linear-gradient(
                135deg,
                var(--teal),
                var(--deep-teal)
            );
            color: #fff;
            padding: 55px;
            border-radius: 28px;
            text-align: center;
        }

        .cta-box::after {
            content: "";
            position: absolute;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(228, 195, 90, 0.14);
            right: -70px;
            bottom: -100px;
        }

        .cta-box h2 {
            position: relative;
            z-index: 1;
            font-size: 34px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .cta-box p {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto 28px;
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.8;
        }

        .cta-button {
            position: relative;
            z-index: 2;
            display: inline-block;
            padding: 13px 27px;
            border-radius: 50px;
            background: var(--yellow);
            color: var(--deep-teal);
            font-weight: 800;
            text-decoration: none;
            transition: 0.3s ease;
        }

        .cta-button:hover {
            background: #fff;
            color: var(--deep-teal);
            text-decoration: none;
            transform: translateY(-2px);
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {

            .about-hero h1 {
                font-size: 43px;
            }

            .about-image {
                height: 400px;
            }

            .about-content h2,
            .section-heading h2 {
                font-size: 33px;
            }
        }

        @media (max-width: 767px) {

            .about-hero {
                min-height: 390px;
            }

            .about-hero-content {
                padding: 55px 0;
            }

            .about-hero h1 {
                font-size: 35px;
            }

            .about-hero p {
                font-size: 16px;
            }

            .about-intro,
            .mission-section,
            .values-section,
            .work-section,
            .approach-section {
                padding: 65px 0;
            }

            .about-image-wrap {
                padding-right: 10px;
                margin-bottom: 25px;
            }

            .about-image {
                height: 330px;
            }

            .experience-box {
                right: 0;
                bottom: 10px;
                padding: 17px;
                min-width: 135px;
            }

            .experience-box strong {
                font-size: 26px;
            }

            .about-content h2,
            .section-heading h2 {
                font-size: 29px;
            }

            .mission-card,
            .work-card,
            .value-card {
                padding: 25px;
            }

            .cta-box {
                padding: 40px 22px;
                border-radius: 22px;
            }

            .cta-box h2 {
                font-size: 28px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                transition: none !important;
            }
        }