/* ===================== Page Variables ===================== */
:root {
    --bg1-color: #1A4174;
    --bg2-color: #000000;
    --bg3-color: #ffffff;
    --button-color: #e9292f;
    --text-color: #111928;
    --sub-text: #4b5563;
    --text-primary: #1A4174;
    --bg-primary: #ffffff;
    --bg-sections: #EAEEF4;
    --para-text: #4B5563;
    --bg-danger: #C81E1E;
    --bg-red-dark: #E9292F;
    --radius8: 8px;
    --radius12: 12px;
    --radius999: 999px;
    --pm16: 16px;
    --pm64: 64px;
}


/* ===================== Hero ===================== */
.btn:hover {
    color: var(--bg3-color) !important;
}

.hero {
    position: relative;
    height: 100%;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.1) 55%,
            rgba(0, 0, 0, 0) 80%);
}

.hero .overlay-bg {
    inset: 0;
    z-index: 0;
}

.overlay-image {
    inset: 0;
    opacity: 0;
    transform: translateX(120px);
    transition: all 1s ease;
}

.overlay-image.active {
    opacity: 1;
    transform: translateX(0) !important;
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-image-mobile {
    display: none;
}

.hero .swiper,
.hero .swiper-wrapper {
    height: 100%;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.swiper-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 700;
    line-height: clamp(44px, 6vw, 50px);
}

.hero-content p {
    max-width: 520px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.hero-content .btn {
    margin-top: 15px;
}

.Indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
    user-select: none;
    transform: translateX(-50%);
}

.numPagination {
    color: #fff;
    font-size: 14px;
}

.numPagination span {
    color: #fff;
}

.custom-indicators {
    display: flex;
    gap: 2px;
    width: 300px;
}

.indicator {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #fff;
}

.hero-nav {
    display: flex;
    gap: 20px;
}

.hero-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.hero-pause span {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.hero-pause:hover {
    border-color: #ff3b3b;
    background: #ff3b3b;
    transform: scale(1.1);
}

.hero-prev,
.hero-next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.hero-prev span,
.hero-next span {
    margin: 0;
    color: #fff;
    transition: transform 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    transform: scale(1.1);
}

.hero-prev:hover span {
    transform: translateX(-3px);
}

.hero-next:hover span {
    transform: translateX(3px);
}


/* ===================== COMMON HEADING ===================== */
.frame-1272638182-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    position: relative;
}

.icon,
.icon2,
.icon3 {
    width: 31px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

.frame-1272638182-title {
    color: var(--bg-red-dark);
    text-align: center;
    font-size: var(--poppins-h6-bold-font-size, 24px);
    line-height: var(--poppins-h6-bold-line-height, 30px);
    font-weight: var(--poppins-h6-bold-font-weight, 600);
}

.frame-1272638182-description {
    color: var(--bg1-color);
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    font-weight: 700;
    /* max-width: 1100px; */
    margin: 0 auto;
}

/* =========================================================
   1. OUR KEY INITIATIVE SECTION
========================================================= */
.frame-1272638182 {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.frame-1272638182-container2 {
    width: min(80%, 1180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.frame-1272638182-container3 {
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.header2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navigation {
    /* width: min(70%, 1000px); */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.nav-item,
.nav-item2 {
    position: relative;
    cursor: pointer;
    text-align: center;
    font-size: var(--body-large-text-body-large-medium-font-size, 18px);
    line-height: var(--body-large-text-body-large-medium-line-height, 38px);
    font-weight: var(--body-large-text-body-large-medium-font-weight, 500);
    color: var(--dark-dark-6, #9ca3af);
    transition: color 0.3s ease;
}

.nav-item li,
.nav-item2 li {
    list-style: none;
    color: inherit;
}

.nav-item.active,
.nav-item2.active,
.nav-item.active li,
.nav-item2.active li {
    color: #000000;
}

.line-132 {
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--dark-dark-6, #9ca3af);
}

.line-14 {
    display: none;
    position: absolute;
    left: 50%;
    top: 49px;
    width: 100%;
    height: 1px;
    object-fit: cover;
    transform: translateX(-50%);
}

.active .line-14 {
    display: block;
}

._1 {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

.main-content,
.main-content2,
.main-content3,
.main-content4 {
    display: none !important;
    width: min(90%, 1240px);
    margin: 0 auto;
    overflow: hidden;
    align-items: stretch;
}

.main-content.active,
.main-content2.active,
.main-content3.active,
.main-content4.active {
    display: flex !important;
    gap: 22px;
}

.image {
    width: 50%;
    min-height: 500px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
}

.content-section {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(238, 243, 253, 0.3) 0%,
            rgba(252, 253, 253, 0.3) 100%);

    border: 1px solid #D8E4FF;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 10px;
    padding: 23px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    overflow: hidden;
}

.title-container,
.title-container2,
.subtitle-container {
    width: fit-content;
    max-width: 100%;
    border-radius: 100px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.title-container {
    background: #8ad248;
}

.title-container2,
.subtitle-container {
    background: var(--primary-blue, #1a4174);
}

.icon-container,
.icon-container2,
.icon-container3 {
    width: 30px;
    height: 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: contain;
}

.icon-container {
    background: #ffffff;
}

.mdi-leaf,
.mdi-leaf2,
.carbon-sustainability {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.title2,
.title3,
.title4,
.title5,
.subtitle {
    color: var(--white, #ffffff);
    text-align: left;
    font-size: var(--body-large-text-body-large-semibold-font-size, 18px);
    line-height: var(--body-large-text-body-large-semibold-line-height, 26px);
    font-weight: var(--body-large-text-body-large-semibold-font-weight, 600);
}

.description2,
.description3,
.list {
    color: var(--dark-dark-2, #1f2a37);
    text-align: left;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.description3 span {
    display: flex;
    flex-direction: column;
}

.list-span,
.description-3-span2 {
    list-style-type: disc;
    padding-left: 1.2em;
    margin: 0;
}

/* =========================================================
   2. OUR SUSTAINABILITY APPROACH SECTION
========================================================= */
.awards {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.awardscontainer2 {
    width: min(80%, 1180px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.awards2 {
    width: 100%;
    position: relative;
    background: #ffffff;
}

.frame-1272638102 {
    position: absolute;
    left: 0;
    top: 58%;
    width: 100%;
    height: 42%;
    /* background: #eaeef4; */
    z-index: 0;
}

.cards {
    width: min(80%, 1180px);
    margin: 0 auto;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.container4 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.container-1,
.container-2,
.container-3 {
    width: 100%;
    min-height: 100%;
    background: linear-gradient(90deg,
            rgba(238, 243, 253, 0.3) 0%,
            rgba(252, 253, 253, 0.3) 100%);

    border: 1px solid #D8E4FF;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
    /* border: 1px solid #bbbbbb; */
    border-radius: 24px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.container5,
.container6,
.container8 {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.image4,
.image5,
.image6 {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

.text-container,
.container7,
.container9 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.title6,
.title7,
.title8 {
    color: var(--primary-blue, #1a4174);
    text-align: center;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1.12;
    font-weight: 600;
    align-self: stretch;
}

.description4,
.description5,
.description6 {
    color: var(--dark-dark-4, #4b5563);
    text-align: center;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}

/* =========================================================
   3. CSR IN ACTION SECTION
========================================================= */
.awards3 {
    width: 100%;
    padding: 50px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.awards3 .bg-icon {
    position: absolute;
    top: 60%;
}

.awards3 .bg-icon#award-left {
    left: 0;
}

.awards3 .bg-icon#award-right {
    right: 0;
}

.awards3-container2 {
    width: min(80%, 1180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.frame-1272638190 {
    width: min(60%, 900px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.frame-1272638189 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.container10,
.container11 {
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.container10-img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.container11 .container10-img {
    height: 340px;
}

.container10-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.container10:hover .container10-img img,
.container11:hover .container10-img img {
    transform: scale(1.08);
}

.frame-12726383082 {
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 110%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    opacity: 0;
    transition: bottom 0.5s ease, opacity 0.5s ease;
    z-index: 2;
}

.container10:hover .frame-12726383082,
.container11:hover .frame-12726383082 {
    bottom: 0;
    opacity: 1;
}

.program-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    z-index: 3;
    padding: 0 15px 22px;
    color: var(--bg3-color, #ffffff);
    text-align: center;
    font-size: var(--body-large-text-body-large-bold-font-size, 18px);
    line-height: var(--body-large-text-body-large-bold-line-height, 26px);
    font-weight: var(--body-large-text-body-large-bold-font-weight, 700);
    opacity: 0;
    transition: bottom 0.5s ease, opacity 0.5s ease;
}

.container10:hover .program-title,
.container11:hover .program-title {
    bottom: 0;
    opacity: 1;
}

.bg-container11,
.bg-container12,
.bg-container13 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-container11 {
    background-image: url("../assets/sustainabilityPage/container11.png");
}

.bg-container12 {
    background-image: url("../assets/sustainabilityPage/container12.png");
}

.bg-container13 {
    background-image: url("../assets/sustainabilityPage/container13.png");
}

/* =========================================================
   RESPONSIVE CSS
========================================================= */

@media (max-width: 1199px) {
    .navigation {
        width: 85%;
        gap: 14px;
    }

    .main-content.active,
    .main-content2.active,
    .main-content3.active,
    .main-content4.active {
        width: 92%;
    }

    .container4 {
        gap: 24px;
    }

    .frame-1272638190 {
        width: 75%;
    }
}

@media (max-width: 991px) {

    .frame-1272638182,
    .awards,
    .awards3 {
        padding: 45px 0;
        gap: 32px;
    }

    .frame-1272638182-container2,
    .awardscontainer2,
    .awards3-container2 {
        width: 90%;
    }

    .navigation {
        width: 90%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .navigation::-webkit-scrollbar {
        display: none;
    }

    .nav-item,
    .nav-item2 {
        min-width: max-content;
        font-size: 16px;
        line-height: 32px;
    }

    .main-content.active,
    .main-content2.active,
    .main-content3.active,
    .main-content4.active {
        flex-direction: column;
        width: 90%;
    }

    .image {
        width: 100%;
        min-height: auto;
        height: 360px;
    }

    .content-section {
        height: auto;
    }

    .container4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .frame-1272638102 {
        top: 70%;
        height: 30%;
    }

    .frame-1272638190 {
        width: 90%;
    }
}

@media (max-width: 767px) {

    .frame-1272638182,
    .awards,
    .awards3 {
        padding: 40px 0;
        gap: 28px;
    }

    .frame-1272638182-header {
        gap: 10px;
    }

    .frame-1272638182-title {
        font-size: 20px;
        line-height: 26px;
    }

    .frame-1272638182-description {
        font-size: 28px;
        line-height: 34px;
    }

    .header2 {
        gap: 8px;
    }

    .navigation {
        width: 92%;
        gap: 18px;
    }

    .line-14 {
        top: 42px;
    }

    .image {
        height: 300px;
    }

    .content-section {
        padding: 20px;
        gap: 20px;
    }

    .title-container,
    .title-container2,
    .subtitle-container {
        border-radius: 20px;
        align-items: flex-start;
    }

    .title2,
    .title3,
    .title4,
    .title5,
    .subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .description2,
    .description3,
    .list {
        font-size: 15px;
        line-height: 1.65;
    }

    .cards {
        width: 90%;
        padding: 0;
    }

    .container4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .frame-1272638102 {
        display: none;
    }

    .container-1,
    .container-2,
    .container-3 {
        border-radius: 18px;
    }

    .image4,
    .image5,
    .image6 {
        height: 210px;
    }

    .title6,
    .title7,
    .title8 {
        font-size: 24px;
        line-height: 30px;
    }

    .description4,
    .description5,
    .description6 {
        font-size: 15px;
        line-height: 24px;
    }

    .frame-1272638189 {
        grid-template-columns: 1fr;
    }

    .container10-img,
    .container11 .container10-img {
        height: 260px;
    }

    .program-title {
        font-size: 16px;
        line-height: 24px;
        bottom: 0;
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
        padding-top: 55px;
    }

    .frame-12726383082 {
        bottom: 0;
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .overlay-image-mobile {
        display: flex;
    }

    .frame-1272638182-container2,
    .awardscontainer2,
    .awards3-container2,
    .main-content.active,
    .main-content2.active,
    .main-content3.active,
    .main-content4.active,
    .cards,
    .frame-1272638190 {
        width: 92%;
    }

    .frame-1272638182-description {
        font-size: 24px;
        line-height: 30px;
    }

    .navigation {
        width: 92%;
    }

    .nav-item,
    .nav-item2 {
        font-size: 14px;
        line-height: 28px;
    }

    .image {
        height: 240px;
    }

    .content-section {
        padding: 16px;
    }

    .title-container,
    .title-container2,
    .subtitle-container {
        width: 100%;
        justify-content: flex-start;
    }

    .image4,
    .image5,
    .image6 {
        height: 190px;
    }

    .container10-img,
    .container11 .container10-img {
        height: 230px;
    }

    .hero-wrapper {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        position: absolute;
    }

    .hero-content {
        width: 100% !important;
    }

    .hero .swiper-slide {
        padding: 0;
        align-items: center;
    }

    .Indicators {
        display: none;
    }

    .hero {
        height: 100%;
    }

    .hero .overlay-bg {
        position: relative;
        display: flex;
    }

    .overlay-image {
        flex: 0 0 100%;
    }

    .overlay-image.active {
        position: relative;
        z-index: 111;
    }
}