.custom-container {
    width: 100%;
    padding: 0px 80px;
}

@media (max-width: 768px) {
    .custom-container {
        width: 100%;
        padding: 0px 20px;
    }
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }
}

body,
body .wrapper {
    background: #FFF9F4 !important;
}

section {
    background: #FFF9F4 !important;
}

/* --------------------------------------------------------------------------
   1. Header Base
   -------------------------------------------------------------------------- */
.esg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 0;
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.esg-header.esg-header--scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.esg-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    min-height: 100px;
    transition: padding 0.3s ease;
}

.esg-header.esg-header--scrolled .esg-header__inner {
    padding: 12px 0;
}

/* --------------------------------------------------------------------------
   2. Logo
   -------------------------------------------------------------------------- */
.esg-header__logo {
    flex-shrink: 0;
}

.esg-header__logo a {
    display: inline-block;
    text-decoration: none;
}

.esg-header__logo-img {
    height: 36px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.esg-header__logo-dark {
    display: none;
}

.esg-header__logo-white {
    display: block;
}

.esg-header.esg-header--scrolled .esg-header__logo-dark {
    display: block;
}

.esg-header.esg-header--scrolled .esg-header__logo-white {
    display: none;
}

/* --------------------------------------------------------------------------
   3. Navigation
   -------------------------------------------------------------------------- */
.esg-header__nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.esg-header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.esg-header__menu-item {
    position: relative;
}

.esg-header__menu-link {
    display: inline-block;
    padding: 8px 18px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
    font-family: 'Manrope', sans-serif;
    color: #E6E7E8;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    font-family: inherit;
}

.esg-header__menu-link:hover,
.esg-header__menu-link:focus {
    color: #fff;
    opacity: 0.75;
    text-decoration: none;
}

.esg-header.esg-header--scrolled .esg-header__menu-link {
    color: #212121;
}

.esg-header.esg-header--scrolled .esg-header__menu-link:hover,
.esg-header.esg-header--scrolled .esg-header__menu-link:focus {
    color: #E8611A;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   4. Search Button
   -------------------------------------------------------------------------- */
.esg-header__search {
    margin-left: 10px;
    flex-shrink: 0;
}

.esg-header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    outline: none;
    transition: opacity 0.3s ease;
}

.esg-header__search-btn:hover {
    opacity: 0.7;
}

.esg-header__search-btn svg path {
    fill: #fff;
    transition: fill 0.3s ease;
}

.esg-header.esg-header--scrolled .esg-header__search-btn svg path {
    fill: #212121;
}

/* --------------------------------------------------------------------------
   5. Mobile Toggle
   -------------------------------------------------------------------------- */
.esg-header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 4px;
    flex-direction: column;
    gap: 5px;
    z-index: 10001;
    outline: none;
}

.esg-header__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.esg-header.esg-header--scrolled .esg-header__toggle-bar {
    background-color: #212121;
}

.esg-header__toggle.active .esg-header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.esg-header__toggle.active .esg-header__toggle-bar:nth-child(2) {
    opacity: 0;
}

.esg-header__toggle.active .esg-header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. Fullscreen Search Overlay
   -------------------------------------------------------------------------- */
.esg-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.esg-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.esg-search-overlay__close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 8px;
    outline: none;
    transition: opacity 0.3s ease;
}

.esg-search-overlay__close:hover {
    opacity: 0.7;
}

.esg-search-overlay__inner {
    width: 100%;
    max-width: 680px;
    padding: 0 20px;
}

.esg-search-overlay__form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 10px;
}

.esg-search-overlay__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 22px;
    font-weight: 300;
    padding: 10px 0;
    font-family: inherit;
}

.esg-search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.esg-search-overlay__submit {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    outline: none;
    transition: opacity 0.3s ease;
}

.esg-search-overlay__submit:hover {
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   7. Responsive - Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .esg-header__toggle {
        display: flex;
    }

    .esg-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
        transition: right 0.35s ease;
        z-index: 10000;
        overflow-y: auto;
    }

    .esg-header__nav.active {
        right: 0;
    }

    .esg-header__menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .esg-header__menu-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .esg-header__menu-link {
        color: #212121;
        padding: 14px 10px;
        font-size: 14px;
        display: block;
        width: 100%;
    }

    .esg-header__menu-link:hover,
    .esg-header__menu-link:focus {
        color: #E8611A;
        opacity: 1;
    }

    .esg-header__search {
        margin-left: 0;
        margin-top: 15px;
        padding: 0 10px;
    }

    .esg-header__search-btn svg path {
        fill: #212121;
    }

    .esg-header__nav::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .esg-header__nav.active::before {
        opacity: 1;
        visibility: visible;
    }
}

/* --------------------------------------------------------------------------
   8. Responsive - Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .esg-header__logo-img {
        height: 28px;
    }

    .esg-header__inner {
        padding: 14px 0;
    }

    .esg-header.esg-header--scrolled .esg-header__inner {
        padding: 10px 0;
    }
}

/* --------------------------------------------------------------------------
   9. Utility
   -------------------------------------------------------------------------- */
body.esg-header-active nav.bootsnav {
    display: none !important;
}

/* ==========================================================================
   ESG Secondary Navigation (Sticky Tab Bar)
   ========================================================================== */

.esg-secondary-nav {
    position: relative;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E0E0E0;
    z-index: 9998;
    transition: box-shadow 0.3s ease;
}

.esg-secondary-nav__list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: space-between;
}

.esg-secondary-nav__item {
    position: relative;
}

.esg-secondary-nav__link {
    display: inline-block;
    padding: 25px 28px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
    position: relative;
}

.esg-secondary-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F47920;
    border-radius: 2px 2px 0 0;
    transition: width 0.3s ease, left 0.3s ease;
}

.esg-secondary-nav__link:hover {
    color: #F47920;
    text-decoration: none;
}

.esg-secondary-nav__link.active {
    color: #1A1A1A;
    font-weight: 600;
}

.esg-secondary-nav__link.active::after {
    width: 100%;
    left: 0;
}

.esg-secondary-nav.is-phase2 {
    z-index: 9998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    left: 0;
    right: 0;
}

.esg-secondary-nav.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}


.esg-header.esg-header--hidden {
    pointer-events: none;
    visibility: hidden;
}

.esg-secondary-nav-placeholder {
    display: none;
    width: 100%;
}

.esg-secondary-nav-placeholder.is-active {
    display: block;
}


@media (max-width: 991px) {
    .esg-secondary-nav .custom-container {
        overflow: hidden;
    }

    .esg-secondary-nav__list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .esg-secondary-nav__list::-webkit-scrollbar {
        display: none;
    }

    .esg-secondary-nav__item {
        flex: 0 0 auto;
        /* prevents items from shrinking */
    }

    .esg-secondary-nav__link {
        display: block;
        padding: 14px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .esg-secondary-nav__link {
        padding: 12px 16px;
        font-size: 13px;
    }
}


/* ==========================================================================
   ESG Approach to Materiality Section
   ========================================================================== */

.esg-about-materiality-approach {
    padding: 100px 0 80px;
    background: #fff !important;
}

.esg-materiality-approach-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.esg-materiality-approach-heading {
    flex: 0 0 42%;
    max-width: 42%;
}

.esg-materiality-approach-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #E8611A;
    margin-bottom: 18px;
    line-height: 1.4;
}

.esg-materiality-approach-title {
    font-family: 'Alexandria', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    color: #1A1A1A;
    margin: 0;
}

.esg-materiality-approach-desc {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
}

.esg-materiality-approach-desc p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

.esg-materiality-approach-desc p strong {
    font-weight: 700;
    color: #1A1A1A;
}

.esg-materiality-matrix {
    width: 100%;
    height: 80%;
}

.esg-materiality-matrix img {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 991px) {
    .esg-about-materiality-approach {
        padding: 70px 0 60px;
    }

    .esg-materiality-approach-top {
        gap: 40px;
        margin-bottom: 48px;
    }

    .esg-materiality-approach-heading {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .esg-materiality-approach-desc {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
    .esg-about-materiality-approach {
        padding: 50px 0 40px;
    }

    .esg-materiality-approach-top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 36px;
    }

    .esg-materiality-approach-heading {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .esg-materiality-approach-desc {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .esg-materiality-approach-desc p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ==========================================================================
   Double Materiality Matrix Section (two-column: text + Warli illustration)
   ========================================================================== */

.esg-double-materiality-section {
    padding: 40px 0 80px;
    background: #fff !important;
}

.esg-double-matrix-main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.esg-double-matrix-content {
    flex: 0 0 42%;
    max-width: 42%;
}

.esg-double-matrix-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    color: #F36633;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 157.143% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.esg-double-matrix-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 39.2px */
    text-transform: capitalize;
    color: #000;
    margin:10px 0 24px 0;
}

.esg-double-matrix-desc {
    margin: 0;
}

.esg-double-matrix-desc p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    color: #000;
    margin: 0 0 16px 0;
}

.esg-double-matrix-desc p:last-child {
    margin-bottom: 0;
}

.esg-double-matrix-desc p strong {
    font-weight: 700;
    color: #1A1A1A;
}

.esg-double-matrix-image-wrap {
    flex: 0 0 40%;
    max-width: 40%;
    height: 500px;
}

.esg-double-matrix-image-wrap img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 991px) {
    .esg-double-materiality-section {
        padding: 60px 0;
    }

    .esg-double-matrix-main-container {
        gap: 40px;
    }

    .esg-double-matrix-content {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .esg-double-matrix-image-wrap {
        flex: 0 0 52%;
        max-width: 52%;
    }
}

@media (max-width: 768px) {
    .esg-double-materiality-section {
        padding: 50px 0 40px;
    }

    .esg-double-matrix-main-container {
        flex-direction: column;
        gap: 32px;
    }

    .esg-double-matrix-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .esg-double-matrix-title {
        margin-bottom: 20px;
    }

    .esg-double-matrix-desc p {
        font-size: 14px;
        line-height: 1.7;
    }

    .esg-double-matrix-image-wrap {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==========================================================================
   At A Glance - title, three columns (Scope, Engagement, Alignment), image below
   ========================================================================== */

.materiality-glance-section {
    position: relative;
    padding: 80px 0 0;
    background: #FFF9F4;
    overflow: hidden;
}

.materiality-glance-sun {
    position: absolute;
    top: 16px;
    right: 40px;
    width: 80px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.materiality-glance-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 39.2px */
    text-transform: capitalize;
    color: #000;
    margin: 0 0 32px 0;
}

.materiality-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 32px;
    margin-bottom: 40px;
}

.materiality-glance-col__heading {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin: 0 0 12px 0;
}

.materiality-glance-col__text {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: #000;
    margin: 0;
}

.materiality-glance-col__text strong {
    font-weight: 600;
    color: #1A1A1A;
}

.materiality-glance-bottom {
    width: 100%;
}

.materiality-glance-bottom img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .materiality-glance-section {
        padding: 50px 0 0;
    }

    .materiality-glance-sun {
        width: 70px;
        top: 10px;
        right: 20px;
    }

    .materiality-glance-title {
        margin-bottom: 24px;
    }

    .materiality-glance-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    .materiality-glance-bottom {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .materiality-glance-bottom img {
        width: 100%;
        height: auto;
        display: block;
    }
}

/* ==========================================================================
   ESG Overview New - Hero Banner Slider
   ========================================================================== */

.esg-hero-banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.esg-hero-swiper {
    width: 100%;
    height: 100%;
}

.esg-hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.esg-hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.esg-hero-slide__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.swiper-slide-active .esg-hero-slide__bg img {
    transform: scale(1);
}

.esg-hero-slide__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.1) 100%);
}

.esg-hero-slide__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 620px;
    padding: 0 5% 80px;
}

.esg-hero-slide__label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #F36633;
    font-family: 'Manrope', sans-serif;
    line-height: 22px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.swiper-slide-active .esg-hero-slide__label {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 22px;
    font-style: normal;
    font-family: 'Alexandria', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.swiper-slide-active .esg-hero-slide__title {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__desc {
    font-size: 15px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 32px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}

.swiper-slide-active .esg-hero-slide__desc {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    border-radius: 4px;
    background: linear-gradient(106deg, #CE5600 0.12%, #EA8033 114%);
    text-decoration: none;
    width: fit-content;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s,
        background 0.3s ease;
}

.swiper-slide-active .esg-hero-slide__cta {
    opacity: 1;
    transform: translateY(0);
}

.esg-hero-slide__cta:hover {
    background-color: #d06a1c;
    text-decoration: none;
    color: #ffffff;
}


/* ==========================================================================
   Hero Bottom Bar & Custom Pagination
   ========================================================================== */

.esg-hero-bottom-bar {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

/* Hide Swiper's default pagination — we use our own */
.esg-hero-pagination.swiper-pagination {
    display: none !important;
}

/* Hide old counter */
.esg-hero-slide-counter {
    display: none;
}

/* ---- Custom Pagination Component ---- */
.esg-custom-pagination {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Each pagination item is a flex row: dot + (line + number) */
.esg-pag-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0;
    position: relative;
}

/* The dot */
.esg-pag-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: background 0.35s ease, border-color 0.35s ease, width 0.35s ease, height 0.35s ease;
    box-sizing: border-box;
    position: relative;
}

.esg-pag-item:hover .esg-pag-dot {
    background: rgba(255, 255, 255, 0.75);
}

/* Active dot — orange ring outline */
.esg-pag-item.active .esg-pag-dot {
    width: 10px;
    height: 10px;
    background: #F47920;
}

.esg-pag-item.active .esg-pag-dot::after {
    content: '';
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid #F47920;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -48%);
}

.esg-pag-item.active:hover .esg-pag-dot {
    background: #F47920;
}

/* The line — hidden by default, expands when active */
.esg-pag-line {
    display: block;
    width: 0;
    height: 2px;
    background-color: #e87722;
    transition: width 0.4s ease, margin 0.4s ease;
    margin-left: 0;
    flex-shrink: 0;
}

.esg-pag-item.active .esg-pag-line {
    width: 28px;
    margin-left: 5px;
}

/* The number — hidden by default, fades in when active */
.esg-pag-num {
    font-size: 14px;
    font-weight: 400;
    color: #F47920;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.35s ease, opacity 0.35s ease 0.1s, margin 0.35s ease;
    margin-left: 0;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
}

.esg-pag-item.active .esg-pag-num {
    width: 22px;
    opacity: 1;
    margin-left: 5px;
}

/* ---- Navigation Arrows ---- */
.esg-hero-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.esg-hero-nav__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.esg-hero-nav__btn:hover {
    border-color: #e87722;
    color: #e87722;
}

.esg-hero-nav__btn:active {
    background-color: rgba(232, 119, 34, 0.15);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .esg-hero-slide__content {
        max-width: 520px;
        padding-bottom: 100px;
    }

    .esg-hero-slide__title {
        font-size: clamp(28px, 4vw, 44px);
    }
}

@media (max-width: 768px) {
    .esg-hero-banner-section {
        height: 100vh;
        min-height: 550px;
    }

    .esg-hero-slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .esg-hero-slide__content {
        max-width: 100%;
        padding: 80px 6% 0px;
        justify-content: center;
        height: 80%;
        align-items: center;
        text-align: center;
    }

    .esg-hero-slide__overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.7) 100%);
    }

    .esg-hero-slide__title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .esg-hero-slide__desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .esg-hero-bottom-bar {
        bottom: 20px;
        padding: 0 6%;
    }

    .esg-custom-pagination {
        gap: 14px;
    }

    .esg-pag-dot {
        width: 8px;
        height: 8px;
    }

    .esg-pag-item.active .esg-pag-dot {
        width: 12px;
        height: 12px;
    }

    .esg-pag-item.active .esg-pag-line {
        width: 20px;
    }

    .esg-pag-num {
        font-size: 12px;
    }

    .esg-hero-nav__btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .esg-hero-slide__label {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .esg-hero-slide__title {
        font-size: 32px;
        margin-bottom: 16px;
        line-height: 44px;
    }

    .esg-hero-slide__desc {
        font-size: 15px;
        line-height: 140%;
        margin-bottom: 24px;
    }

    .esg-hero-slide__cta {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 28px;
    }

    .esg-pag-item.active .esg-pag-line {
        width: 16px;
    }

    .esg-pag-num {
        font-size: 14px;
    }

    .esg-pag-item.active .esg-pag-num {
        width: 18px;
    }
}

/* ==========================================================================
   Material Topics Section (OUR PRIORITY)
   ========================================================================== */

.material-topics-section {
    padding: 80px 0 70px;
    background: #FFF9F4 !important;
}

.material-topics-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 48px;
}

.material-topics-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 157.143% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #E8611A;
    margin-bottom: 12px;
}

.material-topics-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 39.2px */
    text-transform: capitalize;
    color: #1A1A1A;
    margin: 0 0 20px 0;
}

.material-topics-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    color: #555;
    margin: 0;
}

/* ---- Three priority cards ---- */
.material-topics-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.material-topics-card {
    border-radius: 0px;
    padding: 32px 28px;
    border-bottom: 4px solid transparent;
    min-height: 220px;
}

.material-topics-card--critical {
    background: #FFF0EC;
    border-bottom-color: #F4845F;
}

.material-topics-card--significant {
    background: #FFF9E0;
    border-bottom-color: #F5CE42;
}

.material-topics-card--important {
    background: #E9F7EF;
    border-bottom-color: #6BCB77;
}

.material-topics-card__title {
    font-family: 'Alexandria', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #1A1A1A;
    margin: 0 0 18px 0;
}

.material-topics-card__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.material-topics-card__list li {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    color: #333;
    padding: 2px 0;
}

/* ---- Bottom legend row ---- */
.material-topics-legend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.material-topics-legend__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.material-topics-legend__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    flex-shrink: 0;
    margin-top: 2px;
    box-sizing: border-box;
}

.material-topics-legend__dot--critical {
    border-color: #F4845F;
}

.material-topics-legend__dot--significant {
    border-color: #F5CE42;
}

.material-topics-legend__dot--important {
    border-color: #6BCB77;
}

.material-topics-legend__text strong {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    color: #1A1A1A;
    display: block;
    margin-bottom: 4px;
}

.material-topics-legend__text p {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 991px) {
    .material-topics-section {
        padding: 60px 0 50px;
    }

    .material-topics-header {
        margin-bottom: 36px;
    }

    .material-topics-cards {
        gap: 20px;
        margin-bottom: 40px;
    }

    .material-topics-card {
        padding: 24px 22px;
    }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
    .material-topics-section {
        padding: 50px 0 40px;
    }

    .material-topics-header {
        margin-bottom: 28px;
    }

    .material-topics-cards {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        margin-bottom: 32px;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .material-topics-cards::-webkit-scrollbar {
        display: none;
    }

    .material-topics-card {
        flex: 0 0 75%;
        min-height: auto;
        padding: 24px 20px;
        scroll-snap-align: start;
    }

    .material-topics-legend {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .material-topics-legend::-webkit-scrollbar {
        display: none;
    }

    .material-topics-legend__item {
        flex: 0 0 75%;
        scroll-snap-align: start;
    }

    .material-topics-desc {
        font-size: 14px;
    }
}

/* ==========================================================================
   Materiality Process Section (decorative brown banner)
   ========================================================================== */

.materiality-process-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    background: #85411E !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.materiality-process-section .img1 {
    position: absolute;
    top: 18%;
    right: 6%;
    width: 60px;
    height: auto;
    pointer-events: none;
}

.materiality-process-section .sunImg {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: auto;
}

.materiality-process-section .img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: auto;
    pointer-events: none;
}

.materiality-process-section .img3 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 320px;
    height: auto;
    pointer-events: none;
}

.materiality-process-content{
    text-align: center; 
    padding-bottom: 50px;
}

.materiality-process-label{
    color: #FFF;
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.materiality-process-title{
    color: var(--Color, #FFF);
    text-align: center;
    font-family: 'Alexandria',sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 39.2px */
    text-transform: capitalize;
}

.materiality-process-grid{
    width: 80%;
    margin: 0 auto;
}

.materiality-process-col1{
    display: flex;
    gap: 24px;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-top-right-radius: 140px;
    border-bottom-right-radius: 140px;
}

.materiality-process-col2{
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
}

.materiality-process-col1-item,.materiality-process-col2-item,.materiality-process-col3-item{
    position: relative;
}

.materiality-process-col1 .materiality-process-col1-item .item-number-wrap{
    left: 3% !important;
}
.materiality-process-col2 .materiality-process-col3-item .item-number-wrap{
    left: 3% !important;
}

.materiality-process-grid .item-number-wrap{
    border-radius: 24px;
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    text-align: center;
    position: absolute;
    top: -20px;
    left: 15%;
    transform: translateX(-50%);
    z-index: 1;
}

.item-number-wrap .item-number{
    font-family: 'Manrope',sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    position: absolute;
    background: #F47920;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-number-wrap .item-dashed-line{
    position: absolute;
    height: 50px;
    width: 1px;
    border:1px dotted #FFF;
    top: 90%;
    left: 50%;
    z-index: -1;
    transform: translateX( -50%);
}

.item-dashed-line::after{
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    border-radius: 50%;
    background-color: #fff;
    top: 100%;
    left: 50%;
    transform: translateX( -50%);
    z-index: 1;
}

.item-content{
    padding: 80px 0;
    width: 80%;
}

.process-item-title{
    color: #fff;
    font-family: 'Alexandria',sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    text-transform: capitalize;
}

.process-item-desc{
    font-family: 'Manrope',sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #E6E7E8;
}

@media (max-width: 991px) {
    .materiality-process-section {
        min-height: 360px;
    }

    .materiality-process-section .img1 {
        width: 48px;
        top: 14%;
        right: 5%;
    }

    .materiality-process-section .img2 {
        width: 130px;
    }

    .materiality-process-section .img3 {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .materiality-process-section {
        min-height: 280px;
        padding-bottom: 120px;
    }

    .materiality-process-section .sunImg{
        width: 50px;
        left: auto;
        right: 0%;
        top: 10%;
    }

    .materiality-process-section .img1 {
        width: 60px;
        top: 3%;
        right: 4%;
    }

    .materiality-process-section .img2 {
        width: 100px;
    }

    .materiality-process-section .img3 {
        width: 180px;
    }

    .materiality-process-content{
        padding-bottom: 30px;
    }

    .materiality-process-grid{
        width: 90%;
    }

    .materiality-process-col1{
        flex-direction: column;
       border: none;
    }
    .materiality-process-col2{
        flex-direction: column;
        flex-direction: column;
        /* border-left: 1px solid #fff; */
    }

    .materiality-process-col1 .materiality-process-col1-item .item-number-wrap{
        left: 0% !important;
    }

    .materiality-process-col2 .materiality-process-col3-item .item-number-wrap {
        left: 0% !important;
    }

    .materiality-process-col1-item, .materiality-process-col2-item, .materiality-process-col3-item {
        display: flex;
        align-items: center;
        gap: 35px;
    }
    .materiality-process-grid .item-number-wrap{
        position: relative;
        top: unset;
        left: unset !important;
    }
    .item-number-wrap .item-number{
        position: unset;
    }

    .item-number-wrap .item-dashed-line{
        height: 1px;
        width: 50px;
        border: 1px dotted #FFF;
        top: 50%;
        left: 50%;
        z-index: -1;
        transform: translateY(-50%);
    }

    .item-number-wrap::before{
        content: '';
        position: absolute;
        height: 120px;
        width: 1px;
        border-radius: 50%;
        background-color: #fff;
        top: 100%;
        left: 50%;
        transform: translatex(-50%);
        z-index: 1;
    }

    .materiality-process-col2 .materiality-process-col3-item:last-child .item-number-wrap::before {
        content: '';
        height: 0;
        width: 0;
    }

    .item-dashed-line::after{
        height: 5px;
        width: 5px;
        border-radius: 50%;
        background-color: #fff;
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
        z-index: 1;
    }
    .item-content{
        padding: 0px 0;
    }
    .process-item-title{
        margin-top: 0;
    }

    .materiality-process-title{
        margin-top: 5px;
    }

    .materiality-process-col2 .materiality-process-col1-item{
        margin-top: 30px;
    }
}

/* ==========================================================================
   Materiality Usage Section — "How We Use Materiality"
   ========================================================================== */

.materiality-usage-section {
    position: relative;
    padding: 50px 0 60px;
    min-height: 780px;
    overflow: hidden;
    background-color: #fff !important;
}

/* Half-sun image — left edge, vertically centered */
.materiality-usage-img {
    position: absolute;
    top: 15%;
    left: 0;
    transform: translateY(-50%);
    width: 60px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

/* Header text */
.materiality-usage-content {
    text-align: center;
    margin-bottom: 70px;
}

.materiality-usage-label {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px; /* 157.143% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #E8611A;
    margin-bottom: 10px;
}

.materiality-usage-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 33.6px */
    text-transform: capitalize;
    color: #1A1A1A;
    margin: 0;
}

/* Main image wrapper — relative for overlays */
.main-usage-image-wrap {
    position: relative;
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}

.main-usage-image {
    width: 100%;
    height: auto;
}

.main-usage-image.desktop {
    display: block;
}

.main-usage-image.mobile {
    display: none;
}

/* Overlay text blocks */
.usage-overlay {
    position: absolute;
    z-index: 2;
    max-width: 250px;
}

.usage-overlay h3 {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
    text-transform: capitalize;
}

.usage-overlay p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    margin: 0;
}

/* Strategic Planning — bottom-left, under circle 01 */
.usage-overlay--strategic {
    bottom: 2%;
    left: 2%;
}

/* Risk Management — bottom-center, under circle 02 */
.usage-overlay--risk {
    top: 100%;
    left: 56%;
    transform: translateX(-50%);
}

/* Performance Monitoring — top-right, above circle 03 */
.usage-overlay--performance {
    top: 0%;
    right: 0%;
}

/* Bottom-right decorative illustration */
.materiality-usage-bottom-img {
    position: absolute;
    bottom: 0px;
    right: 80px;
    width: 140px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* ---- Responsive: Tablet ---- */
@media (max-width: 991px) {
    .materiality-usage-section {
        padding: 60px 0 50px;
    }

    .materiality-usage-img {
        width: 48px;
    }

    .main-usage-image-wrap {
        max-width: 700px;
    }

    .usage-overlay h3 {
        font-size: 14px;
    }

    .usage-overlay p {
        font-size: 12px;
    }

    .usage-overlay {
        max-width: 180px;
    }

    .materiality-usage-bottom-img {
        width: 110px;
        right: 20px;
        bottom: 10px;
    }
}

/* ---- Responsive: Mobile ---- */
@media (max-width: 768px) {
    .materiality-usage-section {
        padding: 40px 0 40px;
        min-height: 780px;
    }

    .materiality-usage-img {
        width: 36px;
        top: 120px;
        transform: none;
    }

    .materiality-usage-title{
        font-size: 24px;
    }

    .materiality-usage-content {
        margin-bottom: 16px;
    }

    .materiality-usage-section {
        overflow: visible;
    }

    .main-usage-image.desktop {
        display: none;
    }

    .main-usage-image.mobile {
        display: block;
        max-width: 180px;
        margin: 0 auto;
    }

    .main-usage-image-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    .usage-overlay {
        max-width: 45%;
    }

    .usage-overlay h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .usage-overlay p {
        font-size: 12px;
        line-height: 1.5;
    }

    /* Strategic Planning — right of circle 01 */
    .usage-overlay--strategic {
        top: 16%;
        bottom: auto;
        left: auto;
        right: 2%;
    }

    /* Risk Management — left of circle 02 */
    .usage-overlay--risk {
        top: 50%;
        bottom: auto;
        left: 2%;
        right: auto;
        transform: none;
    }

    /* Performance Monitoring — right of circle 03 */
    .usage-overlay--performance {
        top: auto;
        bottom: auto;
        left: auto;
        right: 15%;
    }

    .materiality-usage-bottom-img {
        display: none;
    }
}

