/* ESG New Profile Page Styles */
.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 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;
    }
}

/* ==========================================================================
   Awards & Recognition — 3D Panorama Slider
   ========================================================================== */

.esg-awards-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    padding: 60px 0 0;
    background: #853F00 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.esg-awards-cloud {
    position: absolute;
    top: 30px;
    left: 70px;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 3;
}

.esg-awards-sun {
    position: absolute;
    top: 10px;
    right: -60px;
    width: 120px;
    height: 120px;
    object-fit: cover;
    z-index: 3;
}

.esg-awards-tree__1 {
    position: absolute;
    bottom: 0;
    left: 120px;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 3;
}

.esg-awards-tree__2 {
    position: absolute;
    bottom: 0;
    right: 120px;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 3;
}

@media screen and (max-width: 900px) {
    .esg-awards-cloud {
        display: none;
    }

    .esg-awards-sun {
        width: 55px;
        height: 55px;
        top: 20px;
        right: -25px;
    }

    .esg-awards-tree__1 {
        height: 45px;
        width: 68px;
        left: 0;
    }

    .esg-awards-tree__2 {
        height: 45px;
        width: 68px;
        right: 0;
    }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.esg-awards__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-inline: auto;
    max-width: 420px;
    width: auto;
    text-align: center;
    position: relative;
    z-index: 3;
    transform: translateY(20%);
}

@media screen and (max-width: 767px) {
    .esg-awards__header {
        transform: translateY(0);
        padding-bottom: 50px;
    }
}

.esg-awards__eyebrow {
    color: #FFF;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.esg-awards__title {
    color: #FFF;
    text-align: center;
    font-family: 'Alexandria', sans-serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
    padding: 0;
}

.esg-awards-ellipse_1,
.esg-awards-ellipse_2 {
    display: block;
}

.esg-awards-ellipse_1--mob,
.esg-awards-ellipse_2--mob {
    display: none;
}

@media screen and (max-width: 767px) {

    .esg-awards-ellipse_1,
    .esg-awards-ellipse_2 {
        display: none;
    }

    .esg-awards-ellipse_1--mob,
    .esg-awards-ellipse_2--mob {
        display: block;
    }
}

.esg-awards-ellipse_1 {
    position: absolute;
    height: auto;
    width: 1820px;
    max-width: none;
    top: -22%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: 2;
}

@media screen and (min-width: 1100px) and (max-width: 1399px) {
    .esg-awards-ellipse_1 {
        width: 2200px;
        top: -37%;
    }
}

@media screen and (min-width: 1400px) {
    .esg-awards-ellipse_1 {
        width: 2500px;
        top: -46%;
    }
}

@media screen and (min-width: 1800px) {
    .esg-awards-ellipse_1 {
        width: 3500px;
        top: -75%;
    }
}

.esg-awards-ellipse_2 {
    position: absolute;
    height: auto;
    width: 1820px;
    max-width: none;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    object-fit: cover;
    z-index: 2;
}


@media screen and (min-width: 1400px) {
    .esg-awards-ellipse_2 {
        width: 2500px;
        bottom: -47%;
    }
}

.esg-awards-ellipse_1--mob {
    position: absolute;
    height: auto;
    max-width: 1000px;
    top: -75%;
    /* left: 50%; */
    /* transform: translateX(-50%); */
    object-fit: cover;
    z-index: 2;

    /* display: none; */
}

.esg-awards-ellipse_2--mob {
    position: absolute;
    height: auto;
    max-width: 1000px;
    bottom: -66%;
    /* left: 50%; */
    /* transform: translateX(-50%) scaleY(-1); */
    object-fit: cover;
    z-index: 2;

    /* display: none; */
}

/* --------------------------------------------------------------------------
   Slider Viewport
   -------------------------------------------------------------------------- */
.esg-awards__slider-viewport {
    position: relative;
    width: 150%;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    margin-top: 30px;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .esg-awards__slider-viewport {
        width: 100%;
        height: 250px;
        flex: none;
        margin-top: 0;
    }
}

/* --------------------------------------------------------------------------
   Swiper Overrides — coverflow panorama
   -------------------------------------------------------------------------- */
.esg-awards-swiper {
    width: 100%;
    overflow: visible;
    padding: 10px 0;
    background: #853F00 !important;
}

.esg-awards-swiper .swiper-wrapper {
    align-items: center;
}

.esg-awards-swiper .swiper-slide {
    width: 620px;
    height: 460px;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

/* --------------------------------------------------------------------------
   Card Inner
   -------------------------------------------------------------------------- */
.esg-awards-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

.esg-awards-card__image {
    width: 620px;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.esg-awards-card__image img {
    width: 440px;
    height: 326px;
    object-fit: contain;
    display: block;
}


@media screen and (max-width: 767px) {
    .esg-awards-card__image {
        width: 310px;
        height: 230px;
    }

    .esg-awards-card__image img {
        width: 222px;
        height: 146px;
    }
}

/* --------------------------------------------------------------------------
   Navigation Controls
   -------------------------------------------------------------------------- */
.esg-awards__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: 800px;
    height: 150px;
    margin: 24px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    transform: translateY(-20%);
}

.esg-awards__controls--mob {
    display: none;
}

@media screen and (max-width: 767px) {
    .esg-awards__controls--desktop {
        display: none;
    }

    .esg-awards__controls--mob {
        height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-inline: 10px;
        transform: none;
        margin: 0;
    }

    .esg-awards__info {
        gap: 16px;
    }

    .esg-awards__nav-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
}

.esg-awards__nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    outline: none;
    padding: 0;
}

.esg-awards__nav-btn:hover {
    border-color: #F47920;
    color: #F47920;
}

.esg-awards__nav-btn:active {
    background-color: rgba(244, 121, 32, 0.15);
}

/* Center info block: counter + title */
.esg-awards__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.esg-awards__counter {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #F47920;
    white-space: nowrap;
}

.esg-awards__current {
    font-size: 16px;
}

.esg-awards__separator {
    font-size: 14px;
    opacity: 0.8;
}

.esg-awards__slide-title {
    color: #FFF;
    text-align: center;
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    transition: opacity 0.25s ease;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .esg-awards-swiper .swiper-slide {
        width: 480px;
        height: 360px;
    }

    .esg-awards__slide-title {
        font-size: 24px;
    }

    .esg-awards__title {
        font-size: 36px;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile landscape / small tablet
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .esg-awards-section {
        min-height: 600px;
        height: 100%;
        padding: 50px 0 40px;
    }

    .esg-awards__title {
        font-size: 26px;
    }

    .esg-awards-swiper .swiper-slide {
        width: 380px;
        height: 280px;
    }

    .esg-awards__controls {
        gap: 20px;
        transform: translateY(0);
        padding-top: 20px;
    }

    .esg-awards__slide-title {
        font-size: 20px;
    }

    .esg-awards__title {
        font-size: 32px;
    }

    .esg-awards__nav-btn {
        width: 38px;
        height: 38px;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile portrait
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .esg-awards-section {
        padding-block: 40px;
    }

    .esg-awards-swiper .swiper-slide {
        width: 300px;
        height: 220px;
    }

    .esg-awards-card__image {
        padding: 16px;
    }

    .esg-awards__controls {
        gap: 0;
    }

    .esg-awards__slide-title {
        font-size: 18px;
    }

    .esg-awards__title {
        font-size: 28px;
    }

    .esg-awards__counter {
        font-size: 14px;
    }

    .esg-awards__current {
        font-size: 14px;
    }
}

/* ==========================================================================
   Responsive — Small Tablet / Large Mobile Landscape (769px – 1100px)
   ========================================================================== */

@media (min-width: 769px) and (max-width: 1099px) {

    .esg-awards-ellipse_1 {
        top: -26%;
    }

    .esg-awards-ellipse_2 {
        bottom: -25%;
    }

}

/* ==========================================================================
   Award Card PDF Link
   ========================================================================== */

.esg-awards-card__link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.esg-awards-card__link .esg-awards-card__image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.esg-awards-card__link:hover .esg-awards-card__image {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.esg-awards-card__link::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='12' y1='18' x2='12' y2='12'/%3E%3Cline x1='9' y1='15' x2='12' y2='18'/%3E%3Cline x1='15' y1='15' x2='12' y2='18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.esg-awards-card__link:hover::after {
    opacity: 1;
}

/* ==========================================================================
   Award Slide Title PDF Link
   ========================================================================== */

.esg-awards__title-link {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.esg-awards__title-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.esg-awards__title-link:hover {
    color: #0073aa;
}

.esg-awards__title-link:hover::after {
    width: 100%;
}