/* =========================================================
   KARUNA PREM
   HOME PAGE ONLY
   =========================================================

   IMPORTANT:
   This file is page-specific.

   Global styles such as:
   - navbar
   - logo
   - top bar
   - footer
   - container
   - global typography
   should remain in style.css.

   ========================================================= */


/* =========================================================
   HOME SECTION COMMON
   ========================================================= */

.hero,
.home-about,
.work-section,
.focus-section,
.impact-section,
.projects-section,
.csr-section,
.credentials-section,
.gallery-section,
.contact-preview,
.home-cta {
    position: relative;
}


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

.hero {
    min-height: 800px;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;

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


/* Hero overlay */

.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(5, 34, 62, 0.05),
            rgba(5, 34, 62, 0.25)
        );
}


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

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

    width: 100%;
}


.hero-content-inner {
    max-width: 900px;

    padding: 120px 0 150px;
}


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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 25px;

    padding: 9px 16px;

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

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

    color: #ffffff;

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

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

    letter-spacing: 1.2px;
}


.hero-tag i {
    color: #f2aa24;
}


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

.hero-title {
    max-width: 780px;

    margin: 0 0 25px;

    color: #ffffff;

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

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

    line-height: 1.08;

    font-weight: 600;

    letter-spacing: -1.5px;
}


.hero-title span {
    display: block;

    color: #ffffff;
}


.hero-inner{
    padding-bottom: 50px;
}

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

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

    margin: 0 0 32px;

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

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

    font-size: 17px;

    line-height: 1.8;
}


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

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;
}


/* =========================================================
   HERO BOTTOM STRIP
   ========================================================= */

.hero-bottom {
    position: absolute;

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

    z-index: 4;

    background: rgba(8, 43, 78, 0.84);

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


.hero-bottom-inner {
    min-height: 72px;

    display: grid;

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

    align-items: center;

    gap: 20px;
}


.hero-bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 10px;

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

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

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

    text-align: center;
}


.hero-bottom-icon {
    color: #f2aa24;

    font-size: 15px;
}

/* =========================================================
   COMMON SECTION SPACING
   ========================================================= */

.home-about,
.work-section,
.focus-section,
.impact-section,
.projects-section,
.csr-section,
.credentials-section,
.gallery-section,
.contact-preview {
    padding-top: 95px;
    padding-bottom: 95px;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

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


.section-heading.center {
    max-width: 720px;

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

    text-align: center;
}


.section-tag {
    display: inline-block;

    margin-bottom: 12px;

    color: #214f8f;

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

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

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.section-title {
    margin: 0;

    color: #173f70;

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

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

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.02em;
}


.section-description {
    max-width: 680px;

    margin: 16px auto 0;

    color: #607c98;

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

    font-size: 15px;

    line-height: 1.8;
}


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

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

    gap: 9px;

    min-height: 46px;

    padding: 11px 20px;

    border-radius: 9px;

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

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

    text-decoration: none;

    cursor: pointer;

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


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


.btn-primary {
    background: #214f8f;

    color: #ffffff;

    border: 1px solid #214f8f;

    box-shadow:
        0 8px 20px rgba(33, 79, 143, 0.16);
}


.btn-primary:hover {
    background: #173f70;

    border-color: #173f70;
}


.btn-outline {
    background: #ffffff;

    color: #214f8f;

    border: 1px solid #d4e1ec;
}


.btn-outline:hover {
    background: #214f8f;

    border-color: #214f8f;

    color: #ffffff;
}


.btn-white {
    background: #ffffff;

    color: #214f8f;

    border: 1px solid #ffffff;
}


.btn-white:hover {
    background: #f4f7fa;

    color: #173f70;
}



/* =========================================================
   SDG SECTION
   ========================================================= */

.sdg-section {
    position: relative;
    padding: 100px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.sdg-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* ---------- HEADER ---------- */

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

.sdg-eyebrow {
    display: inline-block;
    margin-bottom: 14px;

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

    color: #b8893c;
}

.sdg-header h2 {
    margin: 0 0 18px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 600;

    color: #102a43;
}

.sdg-header h2 span {
    color: #1f5d8c;
}

.sdg-header p {
    max-width: 650px;
    margin: 0 auto;

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

    color: #687b8d;
}


/* ---------- SDG GRID ---------- */

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


/* ---------- SDG CARD ---------- */

.sdg-card {
    position: relative;

    min-height: 285px;
    padding: 32px 30px;

    background: #ffffff;
    border: 1px solid rgba(31, 93, 140, 0.09);
    border-radius: 18px;

    box-shadow: 0 10px 35px rgba(16, 42, 67, 0.06);

    overflow: hidden;

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

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

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(
        90deg,
        #1f5d8c 0%,
        #6f7f79 50%,
        #b8893c 100%
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.3s ease;
}

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

    border-color: rgba(31, 93, 140, 0.18);

    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.11);
}

.sdg-card:hover::before {
    transform: scaleX(1);
}


/* ---------- CARD NUMBER ---------- */

.sdg-number {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    color: #b8893c;
    opacity: 0.75;
}


/* ---------- ICON ---------- */

.sdg-icon {
    width: 54px;
    height: 54px;

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

    margin-bottom: 22px;

    border-radius: 14px;

    background: rgba(31, 93, 140, 0.08);

    font-size: 25px;
}


/* ---------- CARD TITLE ---------- */

.sdg-card h3 {
    margin: 0 0 12px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;

    color: #102a43;
}


/* ---------- CARD DESCRIPTION ---------- */

.sdg-card p {
    margin: 0 0 22px;

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

    color: #718395;
}


/* ---------- SDG TAG ---------- */

.sdg-tag {
    display: inline-flex;
    align-items: center;

    padding: 6px 11px;

    border-radius: 30px;

    background: rgba(184, 137, 60, 0.1);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;

    color: #9a6d27;
}



/* =========================================================
   SDG ACCESS
========================================================= */

.sdg-access {
    margin-top: 55px;
    padding: 32px 38px;

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

    background: #f5f8f4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
}

.sdg-access-content {
    max-width: 750px;
}

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

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #6b7f4a;
}

.sdg-access-content h3 {
    margin: 0 0 10px;

    font-size: 28px;
    line-height: 1.25;
}

.sdg-access-content h3 span {
    color: #6b7f4a;
}

.sdg-access-content p {
    margin: 0;

    color: #666;
    font-size: 15px;
    line-height: 1.7;
}


/* BUTTON */

.sdg-access-button {
    flex-shrink: 0;

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

    padding: 14px 22px;

    background: #6b7f4a;
    color: #fff;

    border-radius: 8px;

    text-decoration: none;

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

    transition: all 0.3s ease;
}

.sdg-access-button:hover {
    background: #53643a;
    transform: translateY(-2px);
}

.sdg-access-button i {
    font-size: 13px;
}


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

@media (max-width: 768px) {

    .sdg-access {
        flex-direction: column;
        align-items: flex-start;

        padding: 25px;
    }

    .sdg-access-content h3 {
        font-size: 23px;
    }

    .sdg-access-button {
        width: 100%;
        justify-content: center;
    }

}


/* ---------- SDG 2030 MARK ---------- */

.sdg-impact-mark {
    position: relative;
    z-index: 2;

    flex-shrink: 0;

    width: 110px;
    height: 110px;

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

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

    color: #ffffff;
}

.sdg-impact-mark span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #e1bc76;
}

.sdg-impact-mark strong {
    margin-top: 3px;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 600;
}


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

@media (max-width: 900px) {

    .sdg-section {
        padding: 80px 0;
    }

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

    .sdg-impact {
        padding: 35px;
    }
}


@media (max-width: 600px) {

    .sdg-section {
        padding: 65px 0;
    }

    .sdg-container {
        width: 88%;
    }

    .sdg-header {
        margin-bottom: 40px;
    }

    .sdg-header h2 {
        font-size: 34px;
    }

    .sdg-header p {
        font-size: 14px;
    }

    .sdg-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sdg-card {
        min-height: auto;
        padding: 28px 25px;
    }

    .sdg-impact {
        flex-direction: column;
        align-items: flex-start;

        margin-top: 45px;
        padding: 30px 25px;
    }

    .sdg-impact h3 {
        font-size: 27px;
    }

    .sdg-impact-mark {
        width: 85px;
        height: 85px;
    }

}


/* =========================================================
   ABOUT PREVIEW
   ========================================================= */

.home-about {
    background: #ffffff;
}


.about-preview {
    display: grid;

    grid-template-columns:
        0.95fr
        1.05fr;

    gap: 78px;

    align-items: center;
}


/* =========================================================
   ABOUT IMAGES
   ========================================================= */

.about-preview-images {
    position: relative;

    min-height: 500px;

    padding-right: 40px;
}


.about-image-main {
    width: 88%;
    height: 420px;

    overflow: hidden;

    border-radius: 22px;

    background: #edf4fa;

    box-shadow:
        0 18px 45px rgba(31, 75, 120, 0.10);
}


.about-image-main img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.about-image-small {
    position: absolute;

    right: 0;
    bottom: 12px;

    width: 42%;
    height: 210px;

    overflow: hidden;

    border: 8px solid #ffffff;

    border-radius: 18px;

    background: #edf4fa;

    box-shadow:
        0 15px 35px rgba(31, 75, 120, 0.14);
}


.about-image-small img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   ABOUT EXPERIENCE CARD
   ========================================================= */

.about-experience {
    position: absolute;

    left: 28px;
    bottom: -18px;

    min-width: 150px;

    padding: 18px 22px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border-radius: 16px;

    box-shadow:
        0 15px 35px rgba(31, 75, 120, 0.13);
}


.about-experience strong {
    margin-bottom: 7px;

    color: #214f8f;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;

    line-height: 1;
}


.about-experience span {
    color: #607c98;

    font-size: 13px;

    font-weight: 600;
}


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

.about-preview-content {
    padding: 12px 0;
}


.about-preview-content .section-heading {
    margin-bottom: 22px;
}


.about-preview-content .section-tag {
    color: #214f8f;

    font-size: 13px;
}


.about-preview-content .section-title {
    max-width: 580px;
}


.about-preview-text {
    max-width: 610px;

    margin: 0 0 17px;

    color: #5c7894;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT HIGHLIGHTS
   ========================================================= */

.about-highlights {
    display: grid;

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

    gap: 13px 26px;

    margin: 28px 0 30px;
}


.about-highlight {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #23486d;

    font-size: 14px;

    font-weight: 600;
}


.about-highlight-icon {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

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

    border-radius: 50%;

    background: #edf6f7;

    color: #214f8f;
}


.about-highlight-icon i {
    font-size: 11px;
}


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

.work-section {
    background: #f7fafc;

    overflow: hidden;
}


.work-section .section-heading {
    max-width: 720px;

    margin: 0 auto 48px;
}


.work-carousel {
    position: relative;
}


.work-slider {
    overflow: hidden;

    border-radius: 22px;
}


.work-track {
    display: flex;

    transition:
        transform 0.55s ease;
}


.work-slide {
    min-width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    background: #ffffff;

    border: 1px solid #e5edf4;

    border-radius: 22px;

    overflow: hidden;
}


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

.work-slide-image {
    position: relative;

    min-height: 500px;

    overflow: hidden;

    display: block;

    cursor: pointer;

    text-decoration: none;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


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


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

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18, 57, 98, 0.55),
            transparent 55%
        );

    pointer-events: none;
}


/* =========================================================
   WORK IMAGE LABEL
   ========================================================= */

.work-slide-image-label {
    position: absolute;

    z-index: 2;

    left: 24px;
    top: 24px;

    padding: 8px 14px;

    color: #ffffff;

    background: #214f8f;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 700;
}


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

.work-image-overlay {
    position: absolute;

    z-index: 3;

    left: 24px;
    bottom: 24px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    background: rgba(10, 50, 90, 0.90);

    border-radius: 8px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    opacity: 0;

    transform: translateY(8px);

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


.work-slide-image:hover .work-image-overlay {
    opacity: 1;

    transform: translateY(0);
}


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

.work-slide-content {
    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.work-slide-number {
    display: block;

    margin-bottom: 15px;

    color: #f0a313;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.work-slide-title {
    margin: 0 0 18px;

    color: #173f70;

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

    font-size: 34px;

    line-height: 1.2;
}


.work-slide-description {
    max-width: 500px;

    margin: 0 0 24px;

    color: #607c98;

    font-size: 15px;

    line-height: 1.8;
}


.work-slide-points {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;

    margin-bottom: 30px;
}


.work-point {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #294e72;

    font-size: 13px;

    font-weight: 600;
}


.work-point-icon {
    color: #214f8f;
}


/* =========================================================
   TEXT LINKS
   ========================================================= */

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

    gap: 8px;

    width: fit-content;

    color: #214f8f;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;
}


.text-link span {
    transition:
        transform 0.25s ease;
}


.text-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   CAROUSEL CONTROLS
   ========================================================= */

.carousel-controls {
    display: flex;

    justify-content: flex-end;

    gap: 10px;

    margin-top: 25px;
}


.carousel-btn {
    width: 44px;
    height: 44px;

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

    border: 1px solid #d9e4ed;

    border-radius: 50%;

    background: #ffffff;

    color: #214f8f;

    cursor: pointer;

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


.carousel-btn:hover {
    background: #214f8f;

    color: #ffffff;

    transform: translateY(-2px);
}


.carousel-dots {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 16px;
}


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

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #c7d5e2;

    cursor: pointer;
}


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

    border-radius: 10px;

    background: #214f8f;
}


/* =========================================================
   FOCUS AREAS
   ========================================================= */

.focus-section {
    background: #ffffff;
}


.focus-section .section-heading {
    max-width: 700px;

    margin: 0 auto 48px;
}


.focus-grid {
    display: grid;

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

    gap: 28px;
}


.focus-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4ebf2;

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(27, 69, 109, 0.07);

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


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

    box-shadow:
        0 18px 40px rgba(27, 69, 109, 0.11);
}


.focus-card-image {
    height: 245px;

    overflow: hidden;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


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


.focus-card-content {
    padding: 28px 30px 30px;
}


.focus-card-tag {
    display: inline-block;

    margin-bottom: 10px;

    color: #214f8f;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}


.focus-card-title {
    margin: 0 0 12px;

    color: #173f70;

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

    font-size: 27px;

    line-height: 1.2;
}


.focus-card-description {
    margin: 0 0 20px;

    color: #607c98;

    font-size: 14px;

    line-height: 1.7;
}


.focus-card-list {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.focus-card-list span {
    padding: 7px 11px;

    color: #315779;

    background: #f2f7fb;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   IMPACT
   ========================================================= */

.impact-section {
    background: #214f8f;

    color: #ffffff;
}


.impact-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


.impact-header .section-heading {
    margin-bottom: 0;
}


.impact-section .section-tag {
    color: #f5b43b;
}


.impact-section .section-title {
    color: #ffffff;
}


.impact-section .section-description {
    max-width: 560px;

    margin: 0;

    color: rgba(255, 255, 255, 0.78);
}


.impact-grid {
    display: grid;

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

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

    border-bottom:
        1px solid rgba(255, 255, 255, 0.18);
}


.impact-item {
    min-height: 145px;

    padding: 28px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-right:
        1px solid rgba(255, 255, 255, 0.18);
}


.impact-item:last-child {
    border-right: 0;
}


.impact-number {
    margin-bottom: 7px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;

    font-weight: 700;

    line-height: 1;
}


.impact-label {
    color: rgba(255, 255, 255, 0.76);

    font-size: 11px;

    line-height: 1.5;
}


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

.projects-section {
    background: #f7fafc;
}


.projects-section .section-heading {
    max-width: 700px;

    margin: 0 auto 48px;
}


.projects-grid {
    display: grid;

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

    gap: 26px;
}


.project-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3ebf2;

    border-radius: 18px;

    box-shadow:
        0 10px 30px rgba(27, 69, 109, 0.06);

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


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

    box-shadow:
        0 18px 40px rgba(27, 69, 109, 0.10);
}


.project-card-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


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


.project-card-category {
    position: absolute;

    left: 16px;
    bottom: 16px;

    padding: 7px 12px;

    background: #214f8f;

    color: #ffffff;

    border-radius: 5px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.5px;
}


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


.project-card-title {
    margin: 0 0 10px;

    color: #173f70;

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

    font-size: 22px;

    line-height: 1.3;
}


.project-card-description {
    margin: 0 0 18px;

    color: #607c98;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PARTNERSHIPS / CSR SECTION
========================================================= */

.partnership-section {
    padding: 105px 0 115px;
    background: #ffffff;
}


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

.partnership-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.partnership-heading .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    padding: 9px 17px;

    border: 1px solid #d9e8f7;
    border-radius: 30px;

    background: #eef6fd;

    color: #1763ad;

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

    letter-spacing: 1.5px;
}


.partnership-heading .section-tag-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #f5a719;
}


.partnership-heading h2 {
    margin: 0 0 22px;

    color: #204f86;

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

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1.08;

    font-weight: 600;
}


.partnership-heading p {
    max-width: 720px;

    margin: 0 auto 15px;

    color: #64809c;

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================================
   PARTNER INVITATION
========================================================= */

.partnership-subheading {
    max-width: 850px;

    margin: 0 auto 48px;

    text-align: center;
}


.partnership-subheading h3 {
    margin: 0 0 15px;

    color: #204f86;

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

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

    line-height: 1.15;

    font-weight: 600;
}


.partnership-subheading h3 span {
    color: #d88a0c;
}


.partnership-subheading p {
    max-width: 680px;

    margin: 0 auto;

    color: #6b8299;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   PARTNER GRID
========================================================= */

.partner-grid {
    display: grid;

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

    gap: 22px;

    max-width: 1100px;

    margin: 0 auto;
}


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

.partner-card {
    position: relative;

    overflow: hidden;

    min-height: 275px;

    border:
        1px solid
        #e0e9f2;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 25px
        rgba(25, 65, 105, 0.045);

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


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

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #1763ad,
            #2f82c9,
            #f5a719
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.35s ease;
}


.partner-card:hover {
    transform: translateY(-6px);

    border-color: #cbddeb;

    box-shadow:
        0 18px 40px
        rgba(25, 65, 105, 0.10);
}


.partner-card:hover::before {
    transform: scaleX(1);
}


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

.partner-logo-box {
    height: 125px;

    display: flex;

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

    margin: 18px 18px 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #f5f9fd,
            #edf4fa
        );
}


.partner-logo-box img {
    max-width: 72%;

    max-height: 75px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition:
        transform 0.3s ease;
}


.partner-card:hover
.partner-logo-box img {
    transform: scale(1.04);
}


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

.partner-card-content {
    padding: 18px 22px 22px;
}


.partner-label {
    display: block;

    margin-bottom: 5px;

    color: #d88a0c;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.2px;
}


.partner-card-content h4 {
    margin: 0 0 7px;

    color: #233b54;

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

    font-size: 20px;

    line-height: 1.2;
}


.partner-card-content p {
    margin: 0;

    color: #71869a;

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   BECOME A PARTNER CARD
========================================================= */

.partner-cta-card {
    position: relative;

    min-height: 275px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    padding: 30px;

    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #205a98,
            #174d88
        );

    box-shadow:
        0 15px 35px
        rgba(23, 79, 136, 0.15);
}


.partner-cta-card::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

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


.partner-cta-icon {
    width: 46px;
    height: 46px;

    display: flex;

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

    margin-bottom: 18px;

    border-radius: 12px;

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

    color: #ffffff;

    font-size: 17px;
}


.partner-cta-card > span {
    margin-bottom: 8px;

    color: #f5b248;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.1px;
}


.partner-cta-card h4 {
    margin: 0 0 10px;

    color: #ffffff;

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

    font-size: 27px;

    line-height: 1.15;
}


.partner-cta-card p {
    max-width: 270px;

    margin: 0 0 18px;

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

    font-size: 12px;

    line-height: 1.65;
}


.partner-cta-card a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    border-radius: 7px;

    background: #ffffff;

    color: #205a98;

    font-size: 11px;

    font-weight: 700;

    text-decoration: none;

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


.partner-cta-card a:hover {
    transform: translateY(-2px);

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


.partner-cta-card a i {
    transition:
        transform 0.25s ease;
}


.partner-cta-card a:hover i {
    transform: translateX(4px);
}


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

@media (max-width: 1050px) {

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

        max-width: 760px;
    }

}


@media (max-width: 700px) {

    .partnership-section {
        padding: 75px 0 85px;
    }

    .partnership-heading {
        margin-bottom: 42px;
    }

    .partnership-heading h2 {
        font-size: 39px;
    }

    .partnership-subheading {
        margin-bottom: 35px;
    }

    .partnership-subheading h3 {
        font-size: 32px;
    }

    .partner-grid {
        grid-template-columns: 1fr;

        max-width: 420px;
    }

}


@media (max-width: 450px) {

    .partnership-heading h2 {
        font-size: 34px;
    }

    .partnership-heading p {
        font-size: 14px;
    }

    .partnership-subheading h3 {
        font-size: 29px;
    }

    .partner-card,
    .partner-cta-card {
        min-height: auto;
    }

    .partner-logo-box {
        height: 115px;
    }

}


/* =========================================================
   TRANSPARENCY
   ========================================================= */

.transparency-section {
    padding: 105px 0;
    background: #f6f9fc;
}


/* HEADER */

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

.transparency-header .section-tag {
    margin-bottom: 18px;
}

.transparency-header .section-title {
    margin-bottom: 20px;
}

.transparency-header > p {
    max-width: 690px;
    margin: 0 auto;

    color: #647b92;

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


/* FEATURE CARD */

.transparency-feature {
    position: relative;

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

    gap: 40px;

    padding: 42px 48px;

    margin-bottom: 24px;

    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #1763ad,
            #12548f
        );

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

.transparency-feature::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -80px;
    top: -100px;

    border-radius: 50%;

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

.transparency-feature-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
}

.transparency-label {
    display: block;

    margin-bottom: 12px;

    color: #f5b248;

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

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

.transparency-feature h3 {
    margin: 0 0 15px;

    color: #ffffff;

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

    font-size: clamp(28px, 3vw, 38px);

    line-height: 1.2;
}

.transparency-feature p {
    max-width: 700px;

    margin: 0;

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

    font-size: 14px;

    line-height: 1.8;
}

.transparency-feature-icon {
    position: relative;
    z-index: 2;

    width: 76px;
    height: 76px;

    flex-shrink: 0;

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

    border-radius: 20px;

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

    color: #ffffff;

    font-size: 28px;
}


/* GRID */

.transparency-grid {
    display: grid;

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

    gap: 20px;
}


/* CARDS */

.transparency-card {
    padding: 32px;

    border:
        1px solid
        #e1e9f1;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 8px 25px
        rgba(20,55,90,0.04);

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

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

    border-color: #cdddeb;

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


/* ICON */

.transparency-icon {
    width: 50px;
    height: 50px;

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

    margin-bottom: 20px;

    border-radius: 13px;

    background: #eaf3fc;

    color: #1763ad;

    font-size: 18px;
}


/* LABEL */

.transparency-card-label {
    display: block;

    margin-bottom: 10px;

    color: #d18408;

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

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


/* HEADING */

.transparency-card h3 {
    max-width: 470px;

    margin: 0;

    color: #1e2e41;

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

    font-size: 23px;

    line-height: 1.35;
}


/* PARAGRAPH */

.transparency-card p {
    margin: 15px 0 0;

    color: #6d7f93;

    font-size: 13px;

    line-height: 1.75;
}


/* BUTTON */

.transparency-action {
    display: flex;

    justify-content: center;

    margin-top: 35px;
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .transparency-section {
        padding: 75px 0;
    }

    .transparency-feature {
        padding: 32px;

        flex-direction: column;
        align-items: flex-start;
    }

    .transparency-feature-icon {
        position: absolute;

        right: 25px;
        top: 25px;
    }

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

}


@media (max-width: 500px) {

    .transparency-feature {
        padding: 28px 24px;
    }

    .transparency-feature-icon {
        width: 58px;
        height: 58px;

        font-size: 20px;
    }

    .transparency-card {
        padding: 26px;
    }

}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {
    background: #ffffff;
}


.gallery-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.gallery-header .section-heading {
    margin-bottom: 0;
}


.gallery-grid {
    display: grid;

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

    grid-template-rows:
        230px
        230px;

    gap: 16px;
}


.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 14px;

    background: #edf4fa;

    text-decoration: none;
}


.gallery-item:first-child {
    grid-row: span 2;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}


.gallery-item:hover img {
    transform: scale(1.05);
}


.gallery-item::after {
    content: "";

    position: absolute;

    inset: auto 0 0;

    height: 45%;

    background:
        linear-gradient(
            to top,
            rgba(17, 49, 82, 0.68),
            transparent
        );

    pointer-events: none;
}


.gallery-item-caption {
    position: absolute;

    z-index: 2;

    left: 18px;
    bottom: 16px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


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

.contact-preview {
    background: #f7fafc;
}


.contact-wrapper-no-map {
    display: grid;

    grid-template-columns:
        1fr
        0.72fr;

    gap: 70px;

    align-items: center;
}


.contact-content {
    padding: 10px 0;
}


.contact-details {
    display: grid;

    gap: 14px;

    margin: 30px 0 32px;
}


.contact-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid #e3eaf1;
}


.contact-item:first-child {
    border-top: 1px solid #e3eaf1;
}


.contact-item-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #214f8f;

    background: #eaf3f9;

    border-radius: 10px;
}


.contact-item-label {
    display: block;

    margin-bottom: 3px;

    color: #7a90a5;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


.contact-item-value {
    display: block;

    color: #294d70;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}


.contact-item-value:hover {
    color: #214f8f;
}


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

.contact-information-card {
    padding: 38px;

    background: #ffffff;

    border: 1px solid #e0e9f1;

    border-radius: 18px;

    box-shadow:
        0 12px 32px rgba(27, 69, 109, 0.07);
}


.contact-card-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #214f8f;

    background: #edf5fa;

    border-radius: 11px;

    font-size: 20px;
}


.contact-information-card h3 {
    margin: 0 0 12px;

    color: #173f70;

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

    font-size: 27px;
}


.contact-information-card p {
    margin: 0 0 22px;

    color: #607c98;

    font-size: 14px;

    line-height: 1.7;
}


.contact-card-points {
    display: grid;

    gap: 10px;

    margin-bottom: 24px;
}


.contact-card-points div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #315574;

    font-size: 13px;

    font-weight: 600;
}


.contact-card-points i {
    color: #214f8f;
}


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

.home-cta {
    padding: 75px 0;

    background: #214f8f;
}


.home-cta-inner {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.home-cta-content {
    max-width: 700px;
}


.home-cta-title {
    margin: 0 0 12px;

    color: #ffffff;

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

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

    line-height: 1.2;
}


.home-cta-description {
    max-width: 650px;

    margin: 0;

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

    font-size: 15px;

    line-height: 1.75;
}


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

.back-to-top {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 1000;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: #214f8f;

    color: #ffffff;

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

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}


.back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: #173f70;
}


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

@media (max-width: 1000px) {

    .hero {
        min-height: 560px;
    }


    .hero-content-inner {
        padding: 85px 0 120px;
    }


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


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


    .about-preview {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-preview-images {
        width: 100%;
        max-width: 650px;

        margin: 0 auto;
    }


    .work-slide {
        grid-template-columns: 1fr;
    }


    .work-slide-image {
        min-height: 390px;
    }


    .work-slide-content {
        padding: 45px;
    }


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


    .impact-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .impact-item:nth-child(3) {
        border-right: 0;
    }


    .impact-item:nth-child(-n + 3) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.18);
    }


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


    .csr-logos {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .credentials-wrapper {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .gallery-grid {
        grid-template-columns:
            1fr
            1fr;

        grid-template-rows:
            230px
            230px
            230px;
    }


    .gallery-item:first-child {
        grid-row: span 2;
    }


    .contact-wrapper-no-map {
        grid-template-columns: 1fr;

        gap: 45px;
    }

}


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

@media (max-width: 700px) {

    .home-about,
    .work-section,
    .focus-section,
    .impact-section,
    .projects-section,
    .csr-section,
    .credentials-section,
    .gallery-section,
    .contact-preview {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    /* Hero */

    .hero {
        min-height: 80vh;
    padding: 60px 40px;
    }


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


    .hero-title {
        font-size: 40px;

        letter-spacing: -0.8px;
    }


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

        line-height: 1.7;
    }


    .hero-buttons {
        flex-wrap: wrap;
    }


    .hero-bottom-inner {
        grid-template-columns:
            1fr
            1fr;

        gap: 0;
    }


    .hero-bottom-item {
        min-height: 55px;

        font-size: 11px;
    }


    /* About */

    .about-preview-images {
        min-height: 390px;

        padding-right: 20px;
    }


    .about-image-main {
        width: 88%;

        height: 330px;
    }


    .about-image-small {
        width: 43%;

        height: 165px;
    }


    .about-experience {
        left: 12px;

        bottom: -15px;

        min-width: 130px;

        padding: 14px 16px;
    }


    .about-experience strong {
        font-size: 29px;
    }


    .about-highlights {
        grid-template-columns: 1fr;
    }


    /* Work */

    .work-slide-content {
        padding: 32px 25px;
    }


    .work-slide-title {
        font-size: 28px;
    }


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


    .work-slide-image {
        min-height: 300px;
    }


    .carousel-controls {
        justify-content: center;
    }


    /* Focus */

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


    /* Impact */

    .impact-header {
        flex-direction: column;

        align-items: flex-start;
    }


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


    .impact-item {
        min-height: 125px;
    }


    .impact-item:nth-child(3) {
        border-right:
            1px solid rgba(255, 255, 255, 0.18);
    }


    .impact-item:nth-child(even) {
        border-right: 0;
    }


    .impact-item:nth-child(n + 3) {
        border-bottom: 0;
    }


    .impact-item:nth-child(-n + 4) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.18);
    }


    /* Projects */

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


    /* CSR */

    .csr-logos {
        grid-template-columns:
            1fr
            1fr;
    }


    /* Credentials */

    .credentials-list {
        grid-template-columns: 1fr;
    }


    .credentials-card {
        padding: 30px 25px;
    }


    /* Gallery */

    .gallery-header {
        flex-direction: column;

        align-items: flex-start;
    }


    .gallery-grid {
        grid-template-columns:
            1fr
            1fr;

        grid-template-rows:
            180px
            180px
            180px;
    }


    .gallery-item:first-child {
        grid-row: span 2;
    }


    /* Contact */

    .contact-information-card {
        padding: 30px;
    }


    /* CTA */

    .home-cta {
        padding: 60px 0;
    }


    .home-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }


    .home-cta-title {
        font-size: 30px;
    }

}


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

@media (max-width: 480px) {

    .hero {
        min-height: 600px;
    }


    .hero-content-inner {
        padding: 55px 0 110px;
    }


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


    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-bottom-inner {
        grid-template-columns:
            1fr
            1fr;
    }


    .hero-bottom-item {
        font-size: 10px;

        padding: 8px 4px;
    }


    .about-preview-images {
        min-height: 330px;
    }


    .about-image-main {
        height: 280px;
    }


    .about-image-small {
        height: 140px;
    }


    .about-experience {
        bottom: -12px;
    }


    .section-title {
        font-size: 32px;
    }


    .work-slide-content {
        padding: 28px 22px;
    }


    .focus-card-content {
        padding: 25px;
    }


    .impact-number {
        font-size: 29px;
    }


    .impact-label {
        font-size: 10px;
    }


    .csr-logos {
        grid-template-columns: 1fr;
    }


    .csr-logo {
        min-height: 90px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            repeat(5, 220px);
    }


    .gallery-item:first-child {
        grid-row: span 1;
    }


    .contact-information-card {
        padding: 25px;
    }


    .home-cta {
        padding: 55px 0;
    }

}


















/* =========================================================
   LOCATION
========================================================= */

.contact-location {

    padding: 100px 0;

    background: #ffffff;

}


.location-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1.2fr;

    gap: 70px;

    align-items: center;

}


.location-content p {

    max-width: 520px;

    margin: 0 0 25px;

    color: #687b90;

    font-size: 15px;

    line-height: 1.85;

}


.location-address {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #26384d;

    font-size: 14px;

    font-weight: 600;

}


.location-address i {

    margin-top: 4px;

    color: #1763ad;

}



/* =========================================================
   MAP PLACEHOLDER
========================================================= */

.map-placeholder {

    height: 350px;

    overflow: hidden;

    border:
        1px solid
        #dfe7ef;

    border-radius: 22px;

    background: #f1f6fa;

}


.map-placeholder iframe {

    width: 100%;

    height: 100%;

    display: block;

    border: none;

}


.map-placeholder-content {

    max-width: 350px;

    padding: 40px;

    text-align: center;

}


.map-placeholder-content > i {

    margin-bottom: 18px;

    color: #1763ad;

    font-size: 42px;

}


.map-placeholder-content h3 {

    margin: 0 0 10px;

    color: #24364a;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

}


.map-placeholder-content p {

    margin: 0;

    color: #718196;

    font-size: 13px;

    line-height: 1.7;

}


@media (max-width: 600px) {

    .map-placeholder {

        min-height: 300px;

    }

}
















/* =========================================================
   KARUNA PREM
   PARTNERSHIPS / CSR SECTION
   SAME STYLE AS CSR PARTNERS PAGE
========================================================= */


/* =========================================================
   PARTNERSHIP SECTION
========================================================= */

.partnership-section {

    padding: 105px 0;

    background: #f5f8fc;

}


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

.partnership-heading {

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;

}


.partnership-heading .section-tag {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    padding: 8px 15px;

    border-radius: 22px;

    background: #eaf3fc;

    border: 1px solid #d5e7f7;

    color: #1763ad;

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

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    line-height: 1.2;

}


.partnership-heading .section-tag::before {

    content: "";

    width: 8px;

    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #f2a51a;

}


.partnership-heading h2 {

    margin: 0 0 18px;

    color: #1e2e41;

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

    font-size:
        clamp(38px, 5vw, 56px);

    line-height: 1.1;

    font-weight: 600;

}


.partnership-heading p {

    max-width: 680px;

    margin: 0 auto 12px;

    color: #687b90;

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

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   PARTNER SUBHEADING
========================================================= */

.partnership-subheading {

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;

}


.partnership-subheading h3 {

    margin: 0 0 14px;

    color: #1e2e41;

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

    font-size: 30px;

    font-weight: 600;

    line-height: 1.3;

}


.partnership-subheading h3 span {

    color: #1763ad;

}


.partnership-subheading p {

    max-width: 680px;

    margin: 0 auto;

    color: #718196;

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

    font-size: 14px;

    line-height: 1.75;

}


/* =========================================================
   PARTNER GRID
========================================================= */

.partner-grid {

    display: grid;

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

    gap: 24px;

}


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

.partner-card {

    min-height: 285px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 32px 25px;

    border:
        1px solid
        #e0e8ef;

    border-radius: 18px;

    background: #ffffff;

    text-align: center;

    box-shadow:
        0 8px 25px
        rgba(20,55,90,0.04);

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

}


.partner-card:hover {

    transform: translateY(-6px);

    border-color: #d3e2ef;

    box-shadow:
        0 18px 40px
        rgba(20,55,90,0.09);

}


/* =========================================================
   PARTNER LOGO BOX
========================================================= */

.partner-logo-box {

    width: 110px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    padding: 8px;

    border-radius: 14px;

    background: #ffffff;

    border:
        1px solid
        #e0e8ef;

    overflow: hidden;

}


/* =========================================================
   PARTNER LOGO IMAGE
========================================================= */

.partner-logo-box img {

    width: 100%;

    height: 100%;

    object-fit: contain;

    display: block;

}


/* =========================================================
   ICON FALLBACK
   For partners where you don't have an image
========================================================= */

.partner-logo-text {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: #eef5fb;

    border:
        1px solid
        #d7e6f2;

    color: #1763ad;

}


.partner-logo-text i {

    font-size: 28px;

}


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

.partner-card-content {

    width: 100%;

}


.partner-label {

    display: block;

    margin-bottom: 8px;

    color: #1763ad;

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

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.partner-card-content h4 {

    margin: 0 0 9px;

    color: #1e2e41;

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

    font-size: 19px;

    font-weight: 600;

    line-height: 1.35;

}


.partner-card-content p {

    max-width: 245px;

    margin: 0 auto;

    color: #718196;

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

    font-size: 13px;

    line-height: 1.65;

}


/* =========================================================
   BECOME A PARTNER CTA
========================================================= */

.partner-cta-card {

    min-height: 285px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 32px 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #082b4e,
            #1763ad
        );

    text-align: center;

    box-shadow:
        0 8px 25px
        rgba(20,55,90,0.08);

}


.partner-cta-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

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

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

}


.partner-cta-icon i {

    color: #ffffff;

    font-size: 25px;

}


.partner-cta-card > span {

    margin-bottom: 10px;

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

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

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

}


.partner-cta-card h4 {

    margin: 0 0 12px;

    color: #ffffff;

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

    font-size: 27px;

    font-weight: 600;

    line-height: 1.15;

}


.partner-cta-card p {

    max-width: 240px;

    margin: 0 0 20px;

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

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

    font-size: 12px;

    line-height: 1.6;

}


.partner-cta-card a {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 17px;

    border-radius: 30px;

    background: #ffffff;

    color: #1763ad;

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

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

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

}


.partner-cta-card a:hover {

    transform: translateY(-2px);

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

}


.partner-cta-card a i {

    font-size: 11px;

}


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

@media (max-width: 1050px) {

    .partner-grid {

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

        gap: 22px;

    }

}


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

@media (max-width: 700px) {

    .partnership-section {

        padding: 70px 0;

    }


    .partnership-heading {

        margin-bottom: 40px;

    }


    .partnership-heading h2 {

        font-size: 40px;

    }


    .partnership-heading p {

        font-size: 15px;

    }


    .partnership-subheading {

        margin-bottom: 35px;

    }


    .partnership-subheading h3 {

        font-size: 25px;

    }


    .partner-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .partner-card {

        min-height: 260px;

    }


    .partner-logo-box {

        width: 105px;

        height: 85px;

    }


    .partner-card-content h4 {

        font-size: 18px;

    }


    .partner-card-content p {

        font-size: 12px;

    }


    .partner-cta-card {

        min-height: 260px;

    }

}


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

@media (max-width: 500px) {

    .partnership-heading h2 {

        font-size: 36px;

    }


    .partnership-heading p {

        font-size: 14px;

    }


    .partnership-subheading h3 {

        font-size: 23px;

    }


    .partner-card {

        padding:
            28px 20px;

    }


    .partner-logo-box {

        width: 100px;

        height: 82px;

        margin-bottom: 18px;

    }


    .partner-card-content h4 {

        font-size: 17px;

    }


    .partner-card-content p {

        font-size: 12px;

    }

}