/* =========================================================
   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: 620px;

    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: 780px;

    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;
}


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

.sdg-impact {
    position: relative;

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

    gap: 40px;

    margin-top: 65px;
    padding: 42px 48px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            #102f4b 0%,
            #1f5d8c 100%
        );

    overflow: hidden;

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

.sdg-impact::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -90px;
    bottom: -130px;

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

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

    max-width: 720px;
}

.sdg-impact-label {
    display: block;

    margin-bottom: 10px;

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

    color: #e1bc76;
}

.sdg-impact h3 {
    margin: 0 0 10px;

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

    color: #ffffff;
}

.sdg-impact p {
    margin: 0;

    max-width: 650px;

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

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


/* ---------- 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 {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;

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

    padding: 0 16px;
    pointer-events: none;

    transform: translateY(-50%);
}

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

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

    padding: 0;
    border: 1px solid #d9e4ed;
    border-radius: 50%;

    background: #ffffff;
    color: #214f8f;

    cursor: pointer;
    pointer-events: auto;

    box-shadow: 0 8px 22px rgba(16, 42, 67, 0.14);

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

.carousel-btn:hover {
    background: #214f8f;
    color: #ffffff;
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(33, 79, 143, 0.24);
}

.carousel-btn:focus-visible {
    outline: 3px solid rgba(33, 79, 143, 0.25);
    outline-offset: 3px;
}

.carousel-dots {
    display: flex;

    justify-content: center;
    align-items: 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;
}


/* =========================================================
   CSR PARTNERS
   ========================================================= */

.csr-section {
    background: #ffffff;

    text-align: center;
}


.csr-content {
    max-width: 1000px;

    margin: 0 auto;
}


.csr-section .section-heading {
    margin-bottom: 14px;
}


.csr-message {
    max-width: 700px;

    margin: 0 auto 38px;

    color: #607c98;

    font-size: 15px;

    line-height: 1.7;
}


.csr-logos {
    display: grid;

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

    gap: 18px;

    align-items: center;

    margin-bottom: 32px;
}


.csr-logo {
    min-height: 105px;

    padding: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e4ebf2;

    border-radius: 12px;

    background: #ffffff;

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


.csr-logo:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(27, 69, 109, 0.08);
}


.csr-logo img {
    max-width: 130px;

    max-height: 60px;

    object-fit: contain;
}


.csr-button {
    margin-top: 4px;
}


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

.credentials-section {
    background: #f7fafc;
}


.credentials-wrapper {
    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 70px;

    align-items: center;
}


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


.credentials-content .section-heading {
    margin-bottom: 20px;
}


.credentials-text {
    max-width: 650px;

    margin: 0 0 28px;

    color: #607c98;

    font-size: 15px;

    line-height: 1.8;
}


.credentials-list {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 14px;
}


.credential-item {
    padding: 16px;

    display: flex;

    align-items: center;

    gap: 13px;

    background: #ffffff;

    border: 1px solid #e2eaf1;

    border-radius: 10px;
}


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

    flex: 0 0 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #214f8f;

    background: #edf5fa;

    border-radius: 8px;
}


.credential-name {
    color: #21476e;

    font-size: 14px;

    font-weight: 700;
}


.credential-status {
    margin-top: 3px;

    color: #7890a6;

    font-size: 11px;
}


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

.credentials-card {
    padding: 40px;

    background: #214f8f;

    border-radius: 20px;

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


.credentials-card-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

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

    color: #ffffff;

    border-radius: 12px;

    font-size: 21px;
}


.credentials-card h3 {
    margin: 0 0 14px;

    color: #ffffff;

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

    font-size: 28px;

    line-height: 1.2;
}


.credentials-card p {
    margin: 0 0 24px;

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

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   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: 620px;
    }


    .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 {
        padding: 0 10px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }


    /* 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;

    }

}

/* =========================================================
   HOMEPAGE — FINAL VISUAL CONSISTENCY OVERRIDES
   ========================================================= */

.hero-title-line {
    display: block;
    white-space: nowrap;
}

.hero-title span {
    color: #ffffff !important;
}

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

.sdg-main-title,
.sdg-header h2,
.sdg-header h2 span {
    color: #214f8f !important;
}

.sdg-main-title {
    white-space: nowrap !important;
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(24px, 2.45vw, 38px) !important;
    line-height: 1.15;
    letter-spacing: -0.8px;
}

/* Keep the full SDG heading on one line on normal screens. */
@media (min-width: 601px) {
    .sdg-header {
        max-width: none;
    }
}

/* On very small screens, allow natural wrapping rather than horizontal overflow. */
@media (max-width: 600px) {
    .sdg-main-title {
        white-space: normal !important;
        font-size: 30px !important;
    }
}

.sdg-icon-link {
    display: block;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.sdg-icon-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Remove the coloured line that appears above an SDG card on hover */
.sdg-card::before,
.sdg-card:hover::before {
    display: none !important;
    transform: none !important;
}

.sdg-card h3 {
    color: #214f8f !important;
    white-space: nowrap;
    font-size: clamp(16px, 1.35vw, 18px);
}

.sdg-source-note {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    color: #687b8d;
    font-size: 12px;
    line-height: 1.7;
}

.sdg-source-note a {
    color: #214f8f;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---------- GLOBAL HEADING CONSISTENCY ---------- */

.home-about .section-title,
.work-section .section-title,
.projects-section .section-title,
.gallery-section .section-title,
.contact-preview .section-title,
.transparency-section .section-title,
.partnership-heading h2,
.partnership-subheading h3 {
    color: #214f8f !important;
}

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

.gallery-section .section-title,
.about-preview-content .section-title,
.contact-preview .section-title {
    max-width: 820px;
}

.partnership-heading h2 {
    white-space: nowrap;
}

.contact-preview .section-heading {
    text-align: left;
}

.contact-preview .section-description {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

/* =========================================================
   TRANSPARENCY PREVIEW — HOMEPAGE
   ========================================================= */

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

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

.transparency-header {
    width: 100%;
    max-width: none;
    margin: 0 auto 48px;
    text-align: center !important;
}

.transparency-header .section-title {
    width: 100%;
    margin: 0 auto 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.12;
    font-weight: 600;
    color: #214f8f !important;
    white-space: nowrap;
    text-align: center !important;
}

.transparency-header .section-tag {
    display: inline-block;
    margin-bottom: 14px;
    color: #b8893c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.transparency-header > p {
    max-width: 800px;
    margin: 0 auto;
    color: #607c98;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

/* Financial transparency feature */

.transparency-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 28px;
    padding: 42px 48px;
    border-radius: 22px;
    background: linear-gradient(135deg, #102f4b 0%, #214f8f 100%);
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.13);
    overflow: hidden;
    position: relative;
}

.transparency-feature::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    bottom: -150px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.transparency-feature-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.transparency-label {
    display: block;
    margin-bottom: 9px;
    color: #f2aa24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.transparency-feature h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 600;
}

.transparency-feature p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    line-height: 1.8;
}

.transparency-feature-icon {
    position: relative;
    z-index: 2;
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    font-size: 29px;
}

/* Transparency cards */

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

.transparency-card {
    min-height: 220px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e9f0;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(27, 69, 109, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.transparency-card:hover {
    transform: translateY(-5px);
    border-color: rgba(33, 79, 143, 0.18);
    box-shadow: 0 18px 38px rgba(27, 69, 109, 0.10);
}

.transparency-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(33, 79, 143, 0.08);
    color: #214f8f;
    font-size: 20px;
}

.transparency-card-label {
    display: block;
    margin-bottom: 8px;
    color: #b8893c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.transparency-card h3 {
    margin: 0;
    color: #214f8f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.transparency-card p {
    margin: 13px 0 0;
    color: #687b8d;
    font-size: 14px;
    line-height: 1.75;
}

.transparency-action {
    margin-top: 32px;
    text-align: center;
}

.transparency-action .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

/* ---------- CSR PARTNERS ---------- */

.partner-logo-box {
    min-height: 180px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2eaf1;
    border-radius: 16px;
}

.partner-logo-box img {
    width: auto;
    height: auto;
    max-width: 190px;
    max-height: 125px;
    object-fit: contain;
}

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

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

.partnership-heading h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 4.3vw, 56px);
    line-height: 1.15;
    font-weight: 600;
}

.partnership-heading p {
    max-width: 850px;
    margin: 18px auto 0;
    color: #607c98;
    font-size: 15px;
    line-height: 1.8;
}

.partnership-subheading {
    margin: 0 auto 35px;
    text-align: center;
}

.partnership-subheading h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.2;
}

.partnership-subheading h3 span {
    color: #214f8f !important;
}

.partnership-subheading p {
    max-width: 720px;
    margin: 14px auto 0;
    color: #607c98;
    font-size: 14px;
    line-height: 1.8;
}

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

.partner-card {
    background: #ffffff;
    border: 1px solid #e2eaf1;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(27, 69, 109, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(27, 69, 109, 0.10);
}

.partner-card-content {
    padding: 20px 8px 8px;
    text-align: center;
}

.partner-label {
    display: block;
    margin-bottom: 8px;
    color: #1763ad;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.partner-card-content h4 {
    margin: 0;
    color: #214f8f;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    line-height: 1.25;
}

.partner-cta-card {
    min-height: 280px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #214f8f;
    border-radius: 18px;
    color: #ffffff;
}

.partner-cta-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    font-size: 20px;
}

.partner-cta-card > span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.partner-cta-card h4 {
    margin: 10px 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    line-height: 1.15;
}

.partner-cta-card p {
    margin: 0 0 20px;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.7;
}

.partner-cta-card a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1100px) {
    .partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sdg-main-title {
        white-space: normal;
    }

    .partnership-heading h2 {
        white-space: normal;
    }

    .sdg-card h3 {
        white-space: normal;
    }

    .transparency-feature {
        padding: 34px;
    }

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

@media (max-width: 600px) {
    .hero-title-line {
        white-space: normal;
    }

    .sdg-main-title {
        white-space: normal;
    }

    .sdg-card h3 {
        white-space: normal;
        font-size: 18px;
    }

    .sdg-icon-link {
        width: 58px;
        height: 58px;
    }

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

    .transparency-header {
        margin-bottom: 35px;
    }

    .transparency-feature {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
    }

    .transparency-feature-icon {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

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

    .transparency-card {
        min-height: auto;
        padding: 26px;
    }

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

    .partner-logo-box {
        min-height: 160px;
    }

    .partner-logo-box img {
        max-width: 210px;
        max-height: 120px;
    }

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


/* =========================================================
   SDG MAIN TITLE — FINAL WIDTH FIX
   Keeps the complete heading on one line without horizontal overflow.
   ========================================================= */
.sdg-section .sdg-header .sdg-main-title {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    font-size: clamp(26px, 2.7vw, 40px) !important;
    letter-spacing: -1px !important;
    text-align: center !important;
}

@media (max-width: 900px) {
    .sdg-section .sdg-header .sdg-main-title {
        font-size: clamp(24px, 4.5vw, 34px) !important;
        letter-spacing: -0.7px !important;
    }
}

@media (max-width: 600px) {
    .sdg-section .sdg-header .sdg-main-title {
        white-space: normal !important;
        font-size: 28px !important;
        letter-spacing: -0.3px !important;
    }
}


/* =========================================================
   HERO TITLE - ONE LINE AND FITS INSIDE SCREEN
   ========================================================= */

.hero-title {
    width: 100%;
    max-width: 100% !important;

    margin: 0 0 25px;

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

    /* Smaller size so the complete title fits */
    font-size: clamp(34px, 3.35vw, 56px) !important;

    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -1.8px;

    white-space: nowrap;

    overflow: visible;
}


/* Keep both parts on the SAME line */
.hero-title span {
    display: inline !important;
}


/* =========================================================
   MAKE SURE HERO CONTENT HAS ENOUGH WIDTH
   ========================================================= */

.hero-content {
    width: 100%;
    max-width: none;
}


/* =========================================================
   TABLET / SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1200px) {

    .hero-title {
        font-size: clamp(32px, 3.4vw, 48px) !important;
        letter-spacing: -1.2px;
    }

}


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

@media (max-width: 700px) {

    .hero-title {
        white-space: normal;
        font-size: clamp(36px, 9vw, 48px) !important;
        line-height: 1.1;
    }

    .hero-title span {
        display: inline !important;
    }

}


/* TITLE COLOR CONSISTENCY */
.sdg-main-title,
.sdg-header h2,
.sdg-header h2 span,
.sdg-card h3,
.work-slide-title,
.focus-card-title,
.project-card-title,
.contact-information-card h3,
.transparency-header .section-title,
.transparency-card h3,
.partnership-subheading h3 span,
.partner-card-content h4 {
    color: #214f8f !important;
}
