/* =========================================================
   KARUNA PREM
   OUR WORK PAGE
   ========================================================= */


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

.work-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(8, 43, 78, 0.90),
            rgba(8, 43, 78, 0.55),
            rgba(8, 43, 78, 0.15)
        ),
        url("../images/work-hero.jpg")
        center / cover no-repeat;
}

.work-hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;

    padding: 90px 0;
}

.work-hero-tag {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 25px;

    padding: 9px 16px;

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

    border-radius: 30px;

    color: #ffffff;

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

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.4px;
}

.work-hero-tag span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #f4a62a;
}

.work-hero h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(44px, 6vw, 70px);

    line-height: 1.08;

    font-weight: 600;
}

.work-hero p {
    max-width: 650px;

    margin: 0;

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

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   INTRO
   ========================================================= */

.work-intro {
    background: #ffffff;
}

.work-intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.work-intro-text {
    margin: 0 0 18px;

    color: #66798e;

    font-size: 16px;

    line-height: 1.9;
}

.work-intro-text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   WORK AREA
   ========================================================= */

.work-area {
    padding: 100px 0;
}

.healthcare-area {
    background: #f5f8fc;
}

.education-area {
    background: #ffffff;
}

.area-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.area-heading {
    max-width: 760px;
}

.area-tag {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 17px;

    color: #1763ad;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.area-tag i {
    font-size: 16px;
}

.orange-tag {
    color: #d88709;
}

.area-heading h2 {
    margin: 0 0 18px;

    color: #1d2d40;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;
}

.area-heading p {
    max-width: 650px;

    margin: 0;

    color: #687b90;

    font-size: 15px;

    line-height: 1.8;
}

.area-number {
    color: rgba(23, 99, 173, 0.12);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 100px;

    font-weight: 700;

    line-height: 0.8;
}

.orange-number {
    color: rgba(229, 154, 32, 0.13);
}


/* =========================================================
   PROGRAM CARDS
   ========================================================= */

.program-grid {
    display: grid;

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

    gap: 24px;
}

.program-card {
    overflow: hidden;

    border: 1px solid #e1e9f1;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(20, 55, 90, 0.05);

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

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

    box-shadow:
        0 20px 45px rgba(20, 55, 90, 0.11);
}

.program-image {
    position: relative;

    height: 235px;

    overflow: hidden;

    background: #eaf1f7;
}

.program-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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

.program-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    padding: 7px 12px;

    border-radius: 20px;

    background: #ffffff;

    color: #1763ad;

    font-size: 11px;

    font-weight: 700;
}

.education-category {
    color: #c77b05;
}

.program-content {
    padding: 27px;
}

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

    display: flex;

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

    margin-bottom: 18px;

    border-radius: 12px;

    background: #eaf3fc;

    color: #1763ad;

    font-size: 19px;
}

.orange-icon {
    background: #fff1dc;

    color: #d88a0c;
}

.program-content h3 {
    margin: 0 0 11px;

    color: #1e2e41;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 23px;
}

.program-content p {
    min-height: 95px;

    margin: 0 0 20px;

    color: #6d7f93;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   PROGRAM LINKS / BUTTONS
   ========================================================= */

.program-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0;

    border: none;

    background: transparent;

    color: #1763ad;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;
}

.program-link i {
    transition: transform 0.25s ease;
}

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

.orange-link {
    color: #d18408;
}


/* =========================================================
   HIGHLIGHT SECTION
   ========================================================= */

.area-highlight {
    padding: 100px 0;

    background: #ffffff;
}

.education-highlight {
    background: #fffaf3;
}

.highlight-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.highlight-image {
    height: 510px;

    overflow: hidden;

    border-radius: 25px;

    background: #eaf1f7;

    box-shadow:
        0 20px 50px rgba(20, 55, 90, 0.10);
}

.highlight-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.highlight-content p {
    max-width: 600px;

    margin: 0 0 25px;

    color: #687b90;

    font-size: 15px;

    line-height: 1.85;
}

.highlight-points {
    display: grid;

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

    gap: 15px;

    margin-bottom: 30px;
}

.highlight-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #26384d;

    font-size: 13px;

    font-weight: 600;
}

.highlight-points i {
    width: 23px;
    height: 23px;

    display: flex;

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

    flex-shrink: 0;

    border-radius: 50%;

    background: #eaf3fc;

    color: #1763ad;

    font-size: 10px;
}

.education-highlight .highlight-points i {
    background: #fff0d8;

    color: #d88a0c;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn-primary,
.btn-orange {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 22px;

    border: none;

    border-radius: 9px;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

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

.btn-primary {
    background: #1763ad;
}

.btn-orange {
    background: #df910f;
}

.btn-primary:hover,
.btn-orange:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(20, 55, 90, 0.16);
}


/* =========================================================
   APPROACH
   ========================================================= */

.approach-section {
    background: #f5f8fc;
}

.approach-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 55px;
}

.approach-card {
    position: relative;

    padding: 30px;

    overflow: hidden;

    border: 1px solid #e2eaf2;

    border-radius: 18px;

    background: #ffffff;

    transition: transform 0.3s ease;
}

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

.approach-number {
    position: absolute;

    right: 18px;
    top: 10px;

    color: rgba(23, 99, 173, 0.08);

    font-family: "Playfair Display", Georgia, serif;

    font-size: 65px;

    font-weight: 700;
}

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

    display: flex;

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

    margin-bottom: 22px;

    border-radius: 12px;

    background: #eaf3fc;

    color: #1763ad;
}

.approach-card h3 {
    margin: 0 0 10px;

    color: #1e2e41;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 22px;
}

.approach-card p {
    margin: 0;

    color: #6d7f93;

    font-size: 13px;

    line-height: 1.7;
}


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

.work-cta {
    padding: 75px 0;

    background: #1763ad;
}

.work-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.work-cta-inner > div {
    max-width: 720px;
}

.work-cta-inner span {
    display: block;

    margin-bottom: 12px;

    color: #f5b248;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.work-cta h2 {
    margin: 0 0 15px;

    color: #ffffff;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;
}

.work-cta p {
    margin: 0;

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

    font-size: 15px;

    line-height: 1.8;
}

.btn-light {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 23px;

    border: none;

    border-radius: 9px;

    background: #ffffff;

    color: #1763ad;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition: transform 0.25s ease;
}

.btn-light:hover {
    transform: translateY(-2px);
}


/* =========================================================
   PROJECT DETAILS POPUP
   ========================================================= */

.project-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

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

.project-modal.active {
    opacity: 1;

    visibility: visible;
}


/* OVERLAY */

.project-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(8, 30, 52, 0.72);

    backdrop-filter: blur(5px);
}


/* MODAL BOX */

.project-modal-box {
    position: relative;

    z-index: 2;

    width: min(950px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 30px 80px rgba(10, 40, 70, 0.25);

    transform: translateY(25px) scale(0.97);

    transition: transform 0.3s ease;
}

.project-modal.active .project-modal-box {
    transform: translateY(0) scale(1);
}


/* CLOSE */

.project-modal-close {
    position: absolute;

    top: 18px;

    right: 18px;

    z-index: 5;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #ffffff;

    color: #1e2e41;

    font-size: 18px;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.project-modal-close:hover {
    background: #f5f8fc;

    transform: rotate(90deg);
}


/* MAIN IMAGE */

.project-modal-image {
    width: 100%;

    height: 330px;

    overflow: hidden;

    background: #eaf1f7;
}

.project-modal-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* CONTENT */

.project-modal-content {
    padding: 40px 45px 45px;
}


/* CATEGORY */

.project-modal-category {
    display: inline-block;

    margin-bottom: 12px;

    color: #1763ad;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* TITLE */

.project-modal-content h2 {
    margin: 0 0 15px;

    color: #1d2d40;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;
}


/* DESCRIPTION */

.project-modal-description {
    max-width: 750px;

    margin: 0 0 30px;

    color: #687b90;

    font-size: 15px;

    line-height: 1.85;
}


/* META */

.project-modal-meta {
    display: grid;

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

    gap: 15px;

    padding: 22px 0;

    margin-bottom: 30px;

    border-top: 1px solid #e8edf2;

    border-bottom: 1px solid #e8edf2;
}

.modal-meta-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}

.modal-meta-item > i {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #eaf3fc;

    color: #1763ad;

    font-size: 14px;
}

.modal-meta-item div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.modal-meta-item span {
    color: #8492a2;

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.modal-meta-item strong {
    color: #26384d;

    font-size: 13px;

    font-weight: 600;
}


/* MODAL SECTIONS */

.project-modal-section {
    margin-bottom: 28px;
}

.project-modal-section h3 {
    margin: 0 0 9px;

    color: #1e2e41;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 21px;
}

.project-modal-section p {
    margin: 0;

    color: #6d7f93;

    font-size: 14px;

    line-height: 1.8;
}


/* MODAL GALLERY */

.project-modal-gallery {
    display: grid;

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

    gap: 15px;

    margin-top: 30px;
}

.project-modal-gallery img {
    width: 100%;

    height: 190px;

    display: block;

    object-fit: cover;

    border-radius: 14px;

    background: #eaf1f7;
}


/* PREVENT BACKGROUND SCROLL */

body.modal-open {
    overflow: hidden;
}


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

@media (max-width: 1150px) {

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

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

}


@media (max-width: 1000px) {

    .work-intro-grid,
    .highlight-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

    .work-hero {
        min-height: 480px;
    }

}


@media (max-width: 800px) {

    .area-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .area-number {
        display: none;
    }

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

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

    .work-area,
    .area-highlight {
        padding: 75px 0;
    }

    .work-cta-inner {
        align-items: flex-start;

        flex-direction: column;
    }

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

    .project-modal {
        padding: 20px;
    }

    .project-modal-content {
        padding: 35px 30px 35px;
    }

}


@media (max-width: 700px) {

    .work-hero {
        min-height: 450px;
    }

    .work-hero-content {
        padding: 65px 0;
    }

    .work-hero h1 {
        font-size: 42px;
    }

    .work-hero p {
        font-size: 16px;
    }

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

    .highlight-image {
        height: 390px;
    }

    .program-content p {
        min-height: auto;
    }

    .project-modal {
        padding: 15px;
    }

    .project-modal-box {
        max-height: 94vh;

        border-radius: 18px;
    }

    .project-modal-image {
        height: 240px;
    }

    .project-modal-content {
        padding: 30px 25px;
    }

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

        gap: 18px;
    }

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

    .project-modal-gallery img {
        height: 180px;
    }

    .project-modal-close {
        width: 38px;

        height: 38px;

        top: 12px;

        right: 12px;
    }

}


@media (max-width: 500px) {

    .work-hero h1 {
        font-size: 36px;
    }

    .work-intro-grid {
        gap: 25px;
    }

    .highlight-image {
        height: 330px;
    }

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

}



















/* =========================================================
   OUR WORK — FOCUS AREA CARDS
   ONLY STYLES .work-card SECTION
   DOES NOT AFFECT HEADER / NAVBAR
   ========================================================= */

.work-areas .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 55px;
}


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

.work-areas .work-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    min-height: 590px;

    border: 1px solid rgba(23, 63, 107, 0.08);
    border-radius: 24px;

    background: #eef6fd;

    box-shadow:
        0 8px 30px rgba(20, 55, 90, 0.06);

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

.work-areas .work-card:nth-child(2) {
    background: #fff5e5;
}

.work-areas .work-card:nth-child(3) {
    background: #eef8f2;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

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

    box-shadow:
        0 18px 45px rgba(20, 55, 90, 0.12);
}


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

.work-areas .work-card-image {
    position: relative;

    width: 100%;
    height: 225px;

    overflow: hidden;

    background: #dfeaf3;
}

.work-areas .work-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.work-areas .work-card:hover .work-card-image img {
    transform: scale(1.04);
}


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

.work-areas .work-card-content {
    position: relative;

    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 30px 30px 32px;

    text-align: left;
}


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

.work-areas .work-card-icon {
    width: 52px;
    height: 52px;

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

    margin-bottom: 18px;

    border-radius: 14px;

    background: #176fc1;

    color: #ffffff;

    font-size: 19px;

    box-shadow:
        0 8px 18px rgba(23, 99, 173, 0.18);
}


/* Education icon */

.work-areas .work-card-icon.orange {
    background: #e99a18;

    box-shadow:
        0 8px 18px rgba(229, 154, 32, 0.18);
}


/* Community icon */

.work-areas .work-card-icon.green {
    background: #3c9b68;

    box-shadow:
        0 8px 18px rgba(60, 155, 104, 0.18);
}


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

.work-areas .work-card-label {
    display: block;

    margin-bottom: 11px;

    color: #1763ad;

    font-family: "DM Sans", sans-serif;

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.work-areas .work-card-label.orange {
    color: #d4870a;
}

.work-areas .work-card-label.green {
    color: #398c60;
}


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

.work-areas .work-card h3 {
    margin: 0 0 14px;

    color: #173f6b;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 27px;

    font-weight: 600;

    line-height: 1.2;
}


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

.work-areas .work-card p {
    margin: 0;

    max-width: 500px;

    color: #627991;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   LEARN MORE
   ========================================================= */

.work-areas .work-learn-more {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    width: fit-content;

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

    color: #1763ad;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.work-areas .work-learn-more i {
    font-size: 12px;

    transition:
        transform 0.2s ease;
}

.work-areas .work-learn-more:hover {
    color: #0d4f91;

    gap: 13px;
}


/* Education link */

.work-areas .work-card:nth-child(2) .work-learn-more {
    color: #d4870a;
}

.work-areas .work-card:nth-child(2) .work-learn-more:hover {
    color: #b86f00;
}


/* Community link */

.work-areas .work-card:nth-child(3) .work-learn-more {
    color: #398c60;
}

.work-areas .work-card:nth-child(3) .work-learn-more:hover {
    color: #28734b;
}


/* =========================================================
   SUBTLE NUMBER / DECORATIVE EFFECT
   ========================================================= */

.work-areas .work-card::after {
    content: "";

    position: absolute;

    right: -35px;
    bottom: -45px;

    width: 150px;
    height: 150px;

    border-radius: 50%;

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

    pointer-events: none;
}


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

@media (max-width: 1000px) {

    .work-areas .work-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 24px;
    }

    .work-areas .work-card {
        min-height: 560px;
    }

}


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

@media (max-width: 700px) {

    .work-areas .work-grid {
        grid-template-columns: 1fr;

        gap: 22px;

        margin-top: 40px;
    }

    .work-areas .work-card {
        min-height: auto;

        border-radius: 20px;
    }

    .work-areas .work-card-image {
        height: 220px;
    }

    .work-areas .work-card-content {
        padding: 27px 25px 30px;
    }

    .work-areas .work-card h3 {
        font-size: 25px;
    }

    .work-areas .work-card p {
        font-size: 14px;
    }

}


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

@media (max-width: 480px) {

    .work-areas .work-card-image {
        height: 200px;
    }

    .work-areas .work-card-content {
        padding: 24px 22px 27px;
    }

    .work-areas .work-card-icon {
        width: 48px;
        height: 48px;

        border-radius: 12px;
    }

    .work-areas .work-card h3 {
        font-size: 23px;
    }

}


























/* =========================================================
   OUR WORK — FEATURE SECTIONS
   Healthcare / Education / Community

   IMPORTANT:
   Only affects the Our Work feature sections.
   Does NOT change header, navbar, footer or other pages.
   ========================================================= */


/* =========================================================
   MAIN FEATURE BLOCK
   ========================================================= */

.work-feature {
    padding: 85px 0;
}


/* Healthcare */
.work-feature.healthcare-feature {
    background: #f4f8fd;
}


/* Education */
.work-feature.education-feature {
    background: #fff8ed;
}


/* Community */
.work-feature.community-feature {
    background: #f3f9f5;
}


/* =========================================================
   FEATURE CONTAINER
   ========================================================= */

.work-feature-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 75px;

    padding: 45px;

    border-radius: 28px;

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

    border: 1px solid rgba(23, 63, 107, 0.07);

    box-shadow:
        0 10px 35px rgba(20, 55, 90, 0.05);
}


/* =========================================================
   EDUCATION — REVERSE IMAGE
   ========================================================= */

.work-feature-grid.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}


/* Move image to the right visually */
.work-feature-grid.reverse .work-feature-image {
    order: 2;
}

.work-feature-grid.reverse .work-feature-content {
    order: 1;
}


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

.work-feature-image {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    border-radius: 22px;

    background: #e5edf5;

    box-shadow:
        0 15px 40px rgba(20, 55, 90, 0.12);
}


/* Image */

.work-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


/* Image hover */

.work-feature:hover .work-feature-image img {
    transform: scale(1.035);
}


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

.work-feature-image::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.03),
            rgba(8,43,78,0.08)
        );
}


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

.work-feature-content {
    max-width: 610px;
}


/* =========================================================
   SECTION TAG
   ========================================================= */

.work-feature-content .section-tag {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    padding: 8px 14px;

    border-radius: 30px;

    background: #e6f1fc;

    color: #1763ad;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* Small dot before tag */

.work-feature-content .section-tag::before {
    content: "";

    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #1763ad;
}


/* Education tag */

.education-feature .work-feature-content .section-tag {
    background: #fff0d6;

    color: #d4870a;
}

.education-feature .work-feature-content .section-tag::before {
    background: #e99a18;
}


/* Community tag */

.community-feature .work-feature-content .section-tag {
    background: #e4f4eb;

    color: #398c60;
}

.community-feature .work-feature-content .section-tag::before {
    background: #3c9b68;
}


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

.work-feature-content .section-title {
    max-width: 600px;

    margin: 0 0 20px;

    color: #173f6b;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 600;

    line-height: 1.14;
}


/* =========================================================
   FEATURE PARAGRAPHS
   ========================================================= */

.work-feature-content p {
    max-width: 590px;

    margin: 0 0 14px;

    color: #637991;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    line-height: 1.8;
}


/* Last paragraph */

.work-feature-content p:last-of-type {
    margin-bottom: 28px;
}


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

.work-feature-content .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 20px;

    border-radius: 9px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

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


/* Healthcare button */

.healthcare-feature .work-feature-content .btn-primary {
    background: #176fc1;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(23, 111, 193, 0.18);
}


/* Education button */

.education-feature .work-feature-content .btn-primary {
    background: #e99a18;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(233, 154, 24, 0.18);
}


/* Community button */

.community-feature .work-feature-content .btn-primary {
    background: #3c9b68;

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(60, 155, 104, 0.18);
}


/* Button hover */

.work-feature-content .btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 26px rgba(20, 55, 90, 0.16);
}


/* Arrow */

.work-feature-content .btn i {
    transition:
        transform 0.2s ease;
}

.work-feature-content .btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SUBTLE DECORATIVE ELEMENT
   ========================================================= */

.work-feature-grid {
    position: relative;

    overflow: hidden;
}


/* Large soft circle */

.work-feature-grid::after {
    content: "";

    position: absolute;

    right: -70px;
    bottom: -90px;

    width: 230px;
    height: 230px;

    border-radius: 50%;

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

    pointer-events: none;
}


/* =========================================================
   HEALTHCARE DECORATION
   ========================================================= */

.healthcare-feature .work-feature-grid::before {
    content: "\f21e";

    position: absolute;

    right: 35px;
    bottom: 20px;

    color: rgba(23, 99, 173, 0.07);

    font-family: "Font Awesome 6 Free";

    font-size: 100px;

    font-weight: 900;

    pointer-events: none;
}


/* =========================================================
   EDUCATION DECORATION
   ========================================================= */

.education-feature .work-feature-grid::before {
    content: "\f19d";

    position: absolute;

    right: 35px;
    bottom: 20px;

    color: rgba(216, 135, 9, 0.08);

    font-family: "Font Awesome 6 Free";

    font-size: 100px;

    font-weight: 900;

    pointer-events: none;
}


/* =========================================================
   COMMUNITY DECORATION
   ========================================================= */

.community-feature .work-feature-grid::before {
    content: "\f0c0";

    position: absolute;

    right: 35px;
    bottom: 20px;

    color: rgba(60, 155, 104, 0.08);

    font-family: "Font Awesome 6 Free";

    font-size: 100px;

    font-weight: 900;

    pointer-events: none;
}


/* Keep content above decoration */

.work-feature-content,
.work-feature-image {
    position: relative;

    z-index: 2;
}


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

@media (max-width: 1000px) {

    .work-feature {
        padding: 65px 0;
    }

    .work-feature-grid,
    .work-feature-grid.reverse {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 35px;
    }

    .work-feature-grid.reverse .work-feature-image {
        order: 1;
    }

    .work-feature-grid.reverse .work-feature-content {
        order: 2;
    }

    .work-feature-image {
        height: 350px;
    }

    .work-feature-content {
        max-width: 700px;
    }

}


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

@media (max-width: 700px) {

    .work-feature {
        padding: 45px 0;
    }

    .work-feature-grid,
    .work-feature-grid.reverse {
        gap: 28px;

        padding: 24px;

        border-radius: 20px;
    }

    .work-feature-image {
        height: 280px;

        border-radius: 17px;
    }

    .work-feature-content .section-title {
        font-size: 32px;

        line-height: 1.18;
    }

    .work-feature-content p {
        font-size: 14px;

        line-height: 1.75;
    }

    .work-feature-content .btn {
        width: 100%;
    }

    .work-feature-grid::before {
        font-size: 75px;

        right: 20px;

        bottom: 15px;
    }

}


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

@media (max-width: 480px) {

    .work-feature-grid,
    .work-feature-grid.reverse {
        padding: 18px;

        border-radius: 18px;
    }

    .work-feature-image {
        height: 230px;

        border-radius: 15px;
    }

    .work-feature-content .section-tag {
        font-size: 10px;

        padding: 7px 11px;
    }

    .work-feature-content .section-title {
        font-size: 29px;
    }

}

















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

.work-projects-cta {
    background: #f3f8f5;
    padding: 70px 0;
    border-top: 1px solid #e5eee9;
}

.work-projects-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 45px 55px;

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

    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5eaf0;

    box-shadow: 0 10px 35px rgba(20, 55, 90, 0.08);
}

.work-projects-cta-tag {
    display: inline-block;
    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #1769b0;
}

.work-projects-cta h2 {
    margin: 0 0 12px;

    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;

    color: #173f6d;
}

.work-projects-cta p {
    max-width: 750px;
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    color: #61758a;
}

.work-projects-cta .btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border-radius: 8px;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}

.work-projects-cta .btn-light {
    background: #1769b0;
    color: #ffffff;
}

.work-projects-cta .btn-light:hover {
    background: #0f558f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 105, 176, 0.22);
}

.work-projects-cta .btn i {
    transition: transform 0.3s ease;
}

.work-projects-cta .btn:hover i {
    transform: translateX(4px);
}


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

.footer {
    background: #123653;
    color: #ffffff;
    padding: 75px 0 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 60px;
    padding-bottom: 55px;
}


/* ---------------------------------------------------------
   FOOTER BRAND / ABOUT
   --------------------------------------------------------- */

.footer-about {
    max-width: 330px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 22px;

    text-decoration: none;
}

.footer-brand .brand-mark {
    width: 48px;
    height: 48px;

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

    background: #1d70b8;
    color: #ffffff;

    border-radius: 10px;

    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.footer-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand .brand-name {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.footer-brand .brand-tagline {
    margin-top: 3px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;

    color: #a9c1d5;
}

.footer-about p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;

    color: #b7c9d8;
}


/* ---------------------------------------------------------
   FOOTER COLUMNS
   --------------------------------------------------------- */

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    margin: 0 0 24px;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
}

.footer-column > a {
    width: fit-content;

    margin-bottom: 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;

    color: #b7c9d8;
    text-decoration: none;

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

.footer-column > a:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   CONTACT
   --------------------------------------------------------- */

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 0 0 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.5;

    color: #b7c9d8;
}

.footer-contact p i {
    width: 18px;
    margin-top: 3px;

    color: #ffffff;
    text-align: center;
}


/* ---------------------------------------------------------
   SOCIAL ICONS
   --------------------------------------------------------- */

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;

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

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #ffffff;
    color: #1769b0;
    transform: translateY(-3px);
}


/* ---------------------------------------------------------
   FOOTER BOTTOM
   --------------------------------------------------------- */

.footer-bottom {
    min-height: 70px;

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

    border-top: 1px solid rgba(255, 255, 255, 0.14);

    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    color: #9fb5c8;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;

    width: 54px;
    height: 54px;

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

    border: none;
    border-radius: 50%;

    background: #1769b0;
    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

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

    transition: all 0.3s ease;

    z-index: 1000;
}

.back-to-top:hover {
    background: #0f558f;
    transform: translateY(-4px);
}


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

@media (max-width: 900px) {

    .work-projects-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .work-projects-cta h2 {
        font-size: 32px;
    }

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


@media (max-width: 600px) {

    .work-projects-cta {
        padding: 50px 0;
    }

    .work-projects-cta-inner {
        padding: 30px 25px;
        border-radius: 14px;
    }

    .work-projects-cta h2 {
        font-size: 28px;
    }

    .work-projects-cta p {
        font-size: 14px;
    }

    .footer {
        padding-top: 55px;
    }

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

    .footer-about {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;

        padding: 20px 0;
    }

    .back-to-top {
        width: 48px;
        height: 48px;

        right: 18px;
        bottom: 18px;
    }
}