.bannerWrap {
    position: relative;

    .bannerCont {
        position: absolute;
        bottom: 70px;
        left: 0;
        width: 100%;
        z-index: 3;

        .bannerHeading {
            font-size: 90px;
            display: block;
            color: #fff;
            line-height: 1;
            font-family: "Nata Sans", sans-serif;
            font-weight: 700;
        }

        .banerCont {
            p {
                font-size: 18px;
                color: #fff;
            }

            .bannerBtnWrap {
                ul {
                    display: flex;
                    gap: 20px;

                    li {
                        .commonBtn {
                            width: 230px;

                            &.borderBtn {
                                border: 1px solid #fff;

                                &:before {
                                    width: 0px;

                                    span {
                                        color: #fff;
                                    }
                                }

                                &:hover {
                                    border: 1px solid transparent;
                                    background-color: transparent;

                                    &:before {
                                        width: 100%;
                                    }

                                    span {
                                        color: #fff;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.bannerVideo {
    width: 100%;
    position: relative;
    z-index: 2;

    .banImg {
        height: 100%;
        position: relative;
        height: 100vh;
        overflow: hidden;

        &::after {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            content: "";
            /* background-image: linear-gradient(180deg, transparent 0 0%, #000000 100% 100%); */
            z-index: 1;
        }

        &::before {
            width: 100%;
            height: 320px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            content: "";
            background-image: linear-gradient(180deg, #ffffff 0 0%, transparent 100% 100%);
            z-index: 2;
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
        }
    }
}

/*==mv wrap start==*/
.mvTabs {
    ul {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;

        li {
            margin: 0 5px;

            a {
                border: 1px solid #636363;
                position: relative;
                padding: 12px 30px 10px;
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 10px;
                overflow: hidden;
                transition: 0.5s;

                &::before {
                    width: 0;
                    left: 0;
                    content: "";
                    height: 100%;
                    background-image: linear-gradient(to right, #048FEA, #282C75);
                    position: absolute;
                    transition: 0.5s;
                    top: 0;

                }

                span {
                    position: relative;
                    z-index: 1;
                    color: #000;
                    display: block;
                }

                &:hover,
                &.active {
                    border: 1px solid var(--blue);

                    &:before {
                        width: 100%;
                    }

                    span {
                        color: #fff;
                    }
                }
            }
        }
    }
}

.mvContTrigger {
    display: none;
}

.mvContWrapInner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;

    .mvWrapImg {
        width: 45%;
        border-radius: 20px;
        overflow: hidden;
        height: 335px;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .mvBox {
        width: calc(100% - 46.5%);

        .mvImgRes {
            display: none;
        }
    }
}

/*===about us start===*/


.estText {
    span {
        color: var(--blue);
    }
}

/* about */
.aboutSec {
    .aboutTextWrap {
        .estText {
            margin-bottom: 20px;

            p {
                color: #048FEA;
                font-size: 20px;
                font-weight: 600;
            }

            span {
                padding-bottom: 5px;
                display: inline-block;
                border-bottom: 1px solid rgba(0, 0, 0, 0.5);
                padding-right: 30px;

                strong {
                    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.5) !important;
                    font-size: 45px;
                    text-transform: uppercase;
                    color: transparent;
                    font-weight: 700;
                    font-family: "Nata Sans", sans-serif;
                }
            }
        }

        .aboutImgRes {
            display: none;
        }

        .btnWrap {
            margin-top: 20px;
        }
    }

    .aboutImg {
        padding-left: 50px;
        width: 100%;
        height: auto;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }
}

.countWrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;

    .countItem {
        width: calc(100% / 4);
        padding: 0 25px;
        position: relative;
        position: relative;

        &::before {
            width: 0;
            height: 100%;
            right: 20px;
            content: "";
            background-image: linear-gradient(to right, #ffffff, #dfffd7bf);
            position: absolute;
            top: 0;
            z-index: -1;
            transition: 1s;

        }

        &:hover {
            &:before {
                width: 85%;
            }

            h3 {
                .countText {
                    color: #000000;
                }
            }
        }

        &:after {
            width: 2px;
            height: 45px;
            background-color: #e1e1e185;
            content: "";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        &:first-child {
            padding-left: 0px;
        }

        &:last-child {
            padding-right: 0px;

            &::after {
                display: none;
            }
        }

        h3 {
            font-size: 50px;
            -webkit-text-stroke: 1px #010101 !important;
            font-size: 50px;
            text-transform: uppercase;
            font-weight: 700;
            display: flex;
            align-items: baseline;
            gap: 15px;
            color: transparent;

            .countText {
                color: var(--blue);
                -webkit-text-stroke: 0px transparent !important;
                font-size: 20px;
                text-transform: capitalize;
                transition: 0.5s;
            }

            span {
                display: inline-block;

                &.counter {
                    font-weight: 700;
                }
            }
        }
    }
}

/*===businessSec start===*/
.businessSec {
    overflow: hidden;

    .headingWrap {
        margin-bottom: 50px;
    }

    .secH span::after {
        background-image: linear-gradient(to right, #ffffff, #dfffd7bf);
    }

    .businessRow {
        --business-visual-height: 420px;

        &.resView {
            display: none;
        }
    }

    .businessVisual {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        min-height: var(--business-visual-height);
    }

    .businessSlides {
        position: relative;
        min-height: var(--business-visual-height);
    }

    .businessSlide {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease, visibility 0.5s ease;
        z-index: 0;

        &.is-active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }
    }

    .businessFigure {
        margin: 0;
        height: var(--business-visual-height);

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 20px;
        }
    }

    .businessCard {
        position: absolute;
        left: 28px;
        right: 28px;
        bottom: 28px;
        background: #fff;
        border-radius: 16px;
        padding: 28px 100px 28px 28px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        z-index: 2;
    }

    .businessCardLink {
        position: absolute;
        right: 28px;
        top: -30px;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: var(--green);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        transition: transform 0.3s ease, background 0.3s ease;
        transform: rotate(-45deg);

        &:hover {
            transform: scale(1.06);
            background: #34b314;
            color: #fff;
        }
    }

    .businessCardTitle {
        font-size: 26px;
        font-weight: 700;
        color: var(--blue);
        text-transform: uppercase;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .businessCardDesc {
        font-size: 17px;
        line-height: 1.55;
        color: #1f2428;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .businessNav {
        position: relative;
        padding: 20px 0 20px 40px;

        ul {
            list-style: none;
        }

        .businessNavItem {
            border-bottom: 1px solid #e4e4e4;

            &:first-child {
                border-top: 1px solid #e4e4e4;
            }

            button,
            a {
                width: 100%;
                display: flex;
                align-items: center;
                padding: 40px 0;
                background: transparent;
                border: 0;
                text-align: left;
                font-family: "Nata Sans", sans-serif;
                font-size: 40px;
                font-weight: 700;
                text-transform: uppercase;
                color: var(--gray);
                cursor: pointer;
                transition: color 0.3s ease;

                &::before {
                    content: "";
                    width: 0;
                    height: 2px;
                    background: var(--blue);
                    flex-shrink: 0;
                    transition: width 0.35s ease;
                }
            }

            &.is-active button,
            &.is-active a,
            &:hover a &:hover button {
                color: var(--blue);

                &::before {
                    width: 48px;
                }
            }
        }
    }

    .bgPattern_1 {
        width: 40%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;

        img {
            width: 100%;
        }
    }
}

/*===productSec start===*/
.productSec {
    background-color: #E6F5FF;

    .headingWrap {
        margin-bottom: 40px;
    }

    .secH span::after {
        background-image: linear-gradient(to right, #E6F5FF, #A8DDFF);
    }

    .productTabs {
        margin-bottom: 45px;

        ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            list-style: none;
            margin-bottom: 30px;

            li {
                padding: 12px 26px 9px;
                border-radius: 8px;
                border: 1px solid #d5d5d5;
                background: transparent;
                color: #000;
                font-size: 16px;
                font-family: "Manjari", sans-serif;
                font-weight: 700;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;

                &.active {
                    background: var(--blue);
                    border-color: var(--blue);
                    color: #fff;
                }

                &:hover:not(.active) {
                    border-color: var(--blue);
                    color: var(--blue);
                }
            }
        }

        .prodAcc {
            .accTrigger {
                display: none;
            }

            .prodAccCont {
                display: none;
            }

            .prodCardSlider {
                position: relative;
                padding: 0px 65px;

                .productCard {
                    padding: 0px 8px;
                }

                .slick-arrow {
                    font-size: 0;
                    background: var(--green);
                    color: #000;
                    box-shadow: 0 4px 16px rgba(61, 199, 24, 0.35);
                    pointer-events: all;
                    width: 54px;
                    height: 54px;
                    border-radius: 50%;
                    border: 0;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    left: 0;

                    &::after {
                        content: '\f060';
                        position: absolute;
                        font-family: fontawesome;
                        font-size: 20px;
                        color: #000;
                    }

                    &.slick-next {
                        left: auto;
                        right: 0;

                        &::after {
                            content: '\f061';
                        }
                    }

                }
            }

            &.active {
                .prodAccCont {
                    display: block;
                }
            }
        }
    }

    .productCardInner {
        position: relative;
        border-radius: 18px;
        overflow: hidden;

        &:hover {
            .productName {
                opacity: 0;
            }

            .productHover {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                top: auto;
                bottom: 0;
            }
        }
    }

    .productFigure {
        margin: 0;
        height: 300px;
        position: relative;
        border-radius: 18px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-radius: 18px;
            transition: transform 0.45s ease;
        }
    }

    .productCardInner:hover .productFigure img {
        transform: scale(1.05);
    }

    .productName {
        font-size: 18px;
        font-weight: 600;
        color: #000;
        text-align: center;
        padding: 18px 10px 6px;
        margin: 0;
        transition: opacity 0.3s ease;
        font-family: "Nata Sans", sans-serif;
    }

    .productHover {
        position: absolute;
        left: 0;
        right: 0;
        top: 130px;
        bottom: auto;
        background: #fff;
        border-radius: 14px;
        padding: 22px 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(16px);
        width: 100%;
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
        z-index: 2;

        .commonBtn {
            display: inline-flex;
            width: auto;
            min-width: 150px;
            padding: 12px 22px;
            margin-top: 14px;
        }
    }

    .productHoverTitle {
        font-size: 20px;
        font-weight: 700;
        color: var(--green);
        text-transform: capitalize;
        margin-bottom: 10px;
        line-height: 1.2;
        font-family: "Nata Sans", sans-serif;
    }

    .productHoverDesc {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
        margin: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}


/*===esgSec start===*/
.esgSec {
    background-color: #fff;

    .countWrap {
        .countItem {
            &:before {
                z-index: 0;
            }

            h3 {
                align-items: center;
                position: relative;
            }
        }
    }

    .headingWrap {
        margin-bottom: 50px;
    }

    .secH span::after {
        background-image: linear-gradient(to right, #ffffff, #dfffd7bf);
    }

    .esgRow {
        row-gap: 40px;
    }

    .esgVisual {
        display: flex;
        justify-content: center;
        position: sticky;
        top: 60px;
    }

    .esgSlides {
        position: relative;
    }

    .esgSlide {
        width: 100%;
        height: 560px;

        img,
        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
    }

    .esgContent {
        padding-left: 20px;
    }

    .esgIntro {
        font-size: 18px;
        line-height: 1.6;
        color: #1f2428;
        margin-bottom: 35px;
        max-width: 560px;
    }

    .esgAccordion {
        border-top: 1px solid #e5e5e5;
    }

    .esgItem {
        border-bottom: 1px solid #e5e5e5;

        &.is-active {
            .esgTriggerText {
                color: #000;
                font-weight: 700;
            }

            .esgIcon {
                background: var(--green);
                color: #fff;
                position: relative;

                svg {
                    display: none;
                }

                &::after {
                    content: "\f068";
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    font-family: fontawesome;
                    font-size: 16px;
                    transform: translate(-50%, -50%);
                }
            }

            .esgPanel {
                max-height: 280px;
                opacity: 1;
                padding-bottom: 24px;
            }
        }
    }

    .esgTrigger {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 26px 0;
        background: transparent;
        border: 0;
        cursor: pointer;
        text-align: left;
    }

    .esgTriggerText {
        font-size: 26px;
        font-family: "Nata Sans", sans-serif;
        font-weight: 600;
        color: var(--gray);
        text-transform: capitalize;
        transition: color 0.3s ease;
    }

    .esgIcon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 14px;
        color: var(--gray);
        transition: background 0.3s ease, color 0.3s ease;
    }

    .esgPanel {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease;

        ul {
            list-style: none;
            padding: 0;
            margin: 0;

            li {
                position: relative;
                padding-left: 18px;
                margin-bottom: 12px;
                font-size: 17px;
                line-height: 1.5;
                color: #333;

                &::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 10px;
                    width: 6px;
                    height: 6px;
                    border-radius: 50%;
                    background: var(--green);
                }

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }
    }
}


/*===infrastructureSec start===*/
.infrastructureSec {
    background-size: cover !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    position: relative;

    .secH span::after {
        background-image: linear-gradient(to right, #ffffff, #dfffd7bf);
    }

    /* ---- Top 2-col ---- */
    .infraTop {
        display: flex;
        gap: 50px;
        align-items: center;
        margin-bottom: 50px;
        position: relative;
    }

    .infraTopLeft {
        flex: 0 0 50%;
        max-width: 50%;

        .subH {
            display: block;
        }

        .secH {
            margin-bottom: 16px;
        }
    }

    .infraSubtitle {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        margin-bottom: 12px;
        font-family: "Nata Sans", sans-serif;
    }

    .infraDesc {
        font-size: 15px;
        color: #555;
        line-height: 1.7;
        margin-bottom: 36px;
    }

    .infraStats {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }

    .infraStatItem {
        display: flex;
        align-items: center;
        gap: 14px;

        &:hover {
            .infraStatNum {
                color: #3DC718;
            }
        }
    }

    .infraStatIcon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        box-shadow: 0 0 10px 0px #ccc;
        border-radius: 7px;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .infraStatBody {
        display: flex;
        flex-direction: column;
    }

    .infraStatNum {
        font-size: 28px;
        font-weight: 700;
        color: var(--blue);
        font-family: "Nata Sans", sans-serif;
        line-height: 1;
        transition: all 0.5s;
    }

    .infraStatLabel {
        font-size: 13px;
        color: #555;
        margin-top: 4px;
    }

    /* ---- Right visual ---- */
    .infraTopRight {
        flex: 1;
    }

    .infraVisual {
        position: absolute;
        border-radius: 20px;
        bottom: -60px;
        right: 0;
        width: 470px;
        height: auto;

        img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
        }
    }

    .infraVideoBtn {
        position: absolute;
        /* bottom: 24px;
        right: 24px; */
        display: flex;
        align-items: center;
        gap: 14px;
        /* background: rgba(255, 255, 255, 0.92); */
        border-radius: 50px;
        padding: 10px 20px 10px 10px;
        /* backdrop-filter: blur(4px); */
        transition: background 0.3s ease;

        &:hover {
            background: #fff;
        }
    }

    .infraPlayIcon {
        width: 70px;
        height: 70px;
        min-width: 44px;
        border-radius: 50%;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green);
        font-size: 28px;
        padding-left: 3px;
        box-shadow: 15px 5px 22px 13px #00000015;
    }

    .infraVideoLabel {
        font-size: 18px;
        font-weight: 700;
        color: #111;
        line-height: 1.4;
        font-family: "Nata Sans", sans-serif;
    }

    /* ---- Bottom 3 cards ---- */
    .infraCards {
        display: flex;
        gap: 24px;
    }

    .infraCard {
        flex: 1;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
        display: flex;
        flex-direction: column;
        border: 1px solid #eee;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        position: relative;
        border-bottom: 7px solid #048FEA;
        background-size: cover !important;

        &:before {
            width: 100%;
            height: 100%;
            content: "";
            left: 0;
            top: 0;
            background-image: linear-gradient(to right, #ffffff 0 0%, #ffffff8a 100% 100%);
            position: absolute;
        }

        &:hover {
            box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
            transform: translateY(-4px);
            border-bottom: 7px solid var(--green);
        }
    }

    .infraCardContent {
        padding: 28px 28px 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }

    .infraCardIcon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
        padding: 10px;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0 0 10px 0 #ccc;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .infraCardTitle {
        font-size: 20px;
        font-weight: 700;
        color: var(--blue);
        font-family: "Nata Sans", sans-serif;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .infraList {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
        flex: 1;

        li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 10px;
            font-size: 16px;
            line-height: 1.55;
            color: #444;

            &:last-child {
                margin-bottom: 0;
            }

            &::before {
                content: "\f00c";
                font-family: "FontAwesome";
                font-weight: 900;
                position: absolute;
                left: 0;
                top: 0px;
                font-size: 12px;
                color: #000;
            }
        }
    }

    .infraCardDesc {
        font-size: 14px;
        color: #444;
        line-height: 1.65;
        margin-bottom: 24px;
        flex: 1;
    }

    .infraViewBtn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 28px;
        background-color: var(--blue);
        color: #fff;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        align-self: flex-start;
        transition: background 0.3s ease;

        span {
            color: #fff;
        }

        &:hover {
            background-color: #036cba;
        }
    }

    .infraCardImg {
        height: 180px;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
    }
}


/*===investorSec start===*/
.investorSec {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-attachment: fixed !important;

    .secH {
        span {
            &::after {
                background-image: linear-gradient(to right, #ffffff00, #048FEA);
            }
        }
    }

    .investorBg {
        position: absolute;
        inset: 0;
        background-image: url('../images/home/investor-bg.jpg');
        background-size: cover;
        background-position: center;
        z-index: 0;
        pointer-events: none;

        &::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(4, 40, 117, 0.92) 0%, rgba(4, 143, 234, 0.80) 100%);
            pointer-events: none;
        }
    }

    .container {
        position: relative;
        z-index: 1;
    }

    .investorTop {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 20px;

        .secH {
            color: #fff;
        }
    }

    .investorViewBtn {
        flex-shrink: 0;
        margin-top: 8px;
        background: transparent;
        border: 1px solid #fff;

        &::before {
            width: 0;
            background-image: linear-gradient(to right, #048FEA, #282C75);
        }

        span {
            color: #fff;
        }

        &:hover {
            border-color: transparent;

            &::before {
                width: 100%;
            }

            span {
                color: #fff;
            }
        }
    }

    .resBtn {
        display: none;
    }

    .investorBody {
        .investorCols {
            display: flex;
            gap: 0;
        }
    }

    .investorCol {
        flex: 1;
        padding-right: 40px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        margin-right: 40px;

        &:last-of-type {
            border-right: 0;
            margin-right: 0;
            padding-right: 0;
        }
    }

    .investorColTitle {
        font-size: 30px;
        color: #fff;
        font-family: "Nata Sans", sans-serif;
        margin-bottom: 28px;
    }

    .investorItem {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 12px;
        align-items: center;
        padding-bottom: 15px;
        margin-bottom: 0px;

        &:last-child {
            border-bottom: 0;
            margin-bottom: 0;
            padding-bottom: 0;
        }
    }

    .investorDate {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
        grid-column: 1;
        grid-row: 1;
    }

    .investorUpcmng {
        display: inline-block !important;
        width: 60px;
        margin-bottom: 5px;
        text-align: center;
    }

    .investorDesc {
        font-size: 16px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.75);
        margin: 0;
        grid-column: 1;
        grid-row: 2;
    }

    .investorLink {
        grid-area: 1 / 2 / 3;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #71F738;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
        transition: all 0.5s;

        &:hover {
            background: #fff;
            color: #000;
            transform: scale(1.08) rotate(-45deg);
        }
    }

    .investorStock {
        flex-shrink: 0;
        width: 220px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 10px;
    }

    .stockTabs {
        display: inline-flex;
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 8px;
        overflow: hidden;
        width: fit-content;
        margin-bottom: 8px;
    }

    .stockTab {
        padding: 6px 16px;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        font-family: "Nata Sans", sans-serif;
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease;

        &.is-active {
            background: var(--green);
            color: #fff;
        }

        &:not(.is-active):hover {
            background: rgba(255, 255, 255, 0.15);
        }
    }

    .stockLabel {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        display: block;
    }

    .stockPrice {
        display: flex;
        align-items: baseline;
        gap: 4px;
        line-height: 1;
    }

    .stockValue {
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        font-family: "Nata Sans", sans-serif;
        letter-spacing: -1px;
    }

    .stockCurrency {
        font-size: 16px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        align-self: flex-end;
        padding-bottom: 6px;
    }

    .stockChange {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 17px;
        font-weight: 600;
        font-family: "Nata Sans", sans-serif;

        &.stockChange--up {
            color: var(--green);
        }

        &.stockChange--down {
            color: #ff4d4d;
        }
    }

    .stockDelta {
        display: block;
    }

    .stockTime {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
        display: block;
    }


    .noticeBar {
        position: relative;
        display: flex;
        align-items: stretch;
        margin-top: 70px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        overflow: hidden;
        transition: all 0.5s;

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background-image: linear-gradient(to right, var(--green), #048FEA, rgba(255, 255, 255, 0));
        }

        &:hover,
        &:focus-within {
            .noticeTrack {
                animation-play-state: paused;
            }
        }
    }

    .noticeLabel {
        position: relative;
        z-index: 2;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 16px 34px 16px 24px;
        background-image: linear-gradient(120deg, var(--green) 0%, #2FA80F 100%);
        clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
    }

    .noticeLabelTxt {
        font-family: "Nata Sans", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.5px;
        color: #fff;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .noticeIcon {
        position: relative;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        font-size: 12px;
        flex-shrink: 0;
        transition: all 0.5s;

        &::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.6);
            animation: noticePulse 2s ease-out infinite;
        }
    }

    .noticeMarquee {
        position: relative;
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 60px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 60px), transparent 100%);
    }

    .noticeTrack {
        display: flex;
        width: max-content;
        animation: noticeScroll 45s linear infinite;
    }

    .noticeGroup {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }

    .noticeItem {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 0;
        white-space: nowrap;
        transition: all 0.5s;

        &:hover {
            .noticeTxt {
                color: #fff;
                text-decoration: underline;
                text-underline-offset: 4px;
            }

            .noticeDate {
                border-color: var(--green);
                background: var(--green);
            }
        }
    }

    .noticeDate {
        font-family: "Nata Sans", sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        padding: 4px 10px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 4px;
        line-height: 1;
        flex-shrink: 0;
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    .noticeTxt {
        font-size: 15px;
        line-height: 1;
        color: rgba(255, 255, 255, 0.85);
        transition: color 0.3s ease;
    }

    .noticeTag {
        font-family: "Nata Sans", sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #fff;
        background: var(--green);
        padding: 4px 8px;
        border-radius: 4px;
        line-height: 1;
        flex-shrink: 0;
    }

    .noticeSep {
        width: 7px;
        height: 7px;
        margin: 0 26px;
        flex-shrink: 0;
        transform: rotate(45deg);
        background: rgba(255, 255, 255, 0.35);
    }
}

@keyframes noticePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


@keyframes noticeScroll {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


@media (max-width: 1199px) {
    .investorSec .noticeBar {
        margin-top: 35px;
    }

    .investorSec .noticeTrack {
        animation-duration: 38s;
    }
}

@media (max-width: 767px) {
    .bannerVideo {
        .banImg {
            &::before {
                top: 0;
                height: 100%;
            }
        }
    }

    .investorSec .noticeBar {
        flex-direction: column;
        align-items: stretch;
        margin-top: 30px;
    }

    .investorSec .noticeLabel {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        clip-path: none;
    }

    .investorSec .noticeLabelTxt {
        font-size: 14px;
    }

    .investorSec .noticeMarquee {
        -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    }

    .investorSec .noticeTrack {
        animation-duration: 30s;
    }

    .investorSec .noticeItem {
        padding: 13px 0;
        gap: 8px;
    }

    .investorSec .noticeTxt {
        font-size: 14px;
    }

    .investorSec .noticeSep {
        margin: 0 18px;
    }
}

/* reduced motion - ticker keeps running (hover to pause), only the pulse ring stops */
@media (prefers-reduced-motion: reduce) {
    .investorSec .noticeIcon::after {
        animation: none;
    }
}

/* team */
.teamWrapSec {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    .teamSliderWrap {
        padding: 0;
    }

    .headingWrap {
        margin-bottom: 20px;
    }

    .btnWrap {
        ul {
            display: flex;
            gap: 10px;
            margin-top: 15px;

            li {
                .borderBtn {
                    border: 1px solid #010101;

                    span {
                        color: #000;
                    }

                    &:before {
                        width: 0px;
                    }

                    &:hover {
                        border: 1px solid var(--blue);

                        span {
                            color: #fff;
                        }

                        &::before {
                            width: 100%;
                        }
                    }
                }
            }
        }
    }

    .teamWrapLeft {
        flex: 1;
        width: 50%;
        padding-right: 20px;
        border-right: 1px solid #ccc;
    }

    .careerRightWrap {
        flex: 1;
        width: 100%;
        padding-left: 20px;
    }

    .teamNav {
        position: absolute;
        top: -75px;
        left: auto;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 3;
        gap: 10px;
    }

    .teamFigure {
        margin: 0;
        height: 200px;
        overflow: hidden;
        border-radius: 20px;
    }

    .teamCard {
        background: var(--blue);
        padding: 5px;
        transition: all 0.5s;

        &:hover {
            background-color: #fff;

            .teamInfo {
                background-color: #fff;

                .teamName {
                    color: #000;
                }

                .teamRole {
                    color: #000;
                }
            }
        }
    }

    .teamInfo {
        padding: 15px 10px;
        transition: all 0.5s;

        .teamName {
            font-size: 16px;
            transition: all 0.5s;
        }

        .teamRole {
            transition: all 0.5s;
        }
    }

    .teamNav {
        button {
            width: 45px;
            height: 45px;
        }
    }

    .subText {
        margin-bottom: 10px;
    }

    .careerCardItem {
        background-color: #fff;
        border-radius: 10px;
        padding: 15px;
        display: flex;
        align-items: center;
        margin-bottom: 20px;

        &:last-child {
            margin-bottom: 0px;
        }

        .cardItemLeft {
            width: 33.33%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;

            .careerIcon {
                width: 50px;
                padding: 10px;
                border-radius: 5px;
                background-color: #A9DDFF;
            }

            .jobText {
                width: calc(100% - 50px);
                padding-left: 10px;

                .jpbName {
                    display: block;
                    font-size: 18px;
                    font-weight: 700;
                    font-family: "Nata Sans", sans-serif;
                    margin-bottom: 5px;
                }
            }
        }

        .cardItemMidle {
            width: 33.33%;
            /* text-align: center; */
            padding-left: 50px;

            .location {
                display: inline-block;
                padding-left: 40px;
                position: relative;

                &::before {
                    width: 35px;
                    height: 35px;
                    border-radius: 50%;
                    text-align: center;
                    align-items: center;
                    padding: 10px;
                    content: "";
                    background: url(../images/MapPinLine.png) no-repeat center center #A9DDFF;
                    position: absolute;
                    left: 0;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
        }

        .btnWrap {
            width: 33.33%;
            display: flex;
            justify-content: end;
        }

        &:nth-child(even) {
            .cardItemLeft {
                .careerIcon {
                    background-color: #E0FFD8;
                }
            }
        }
    }
}

/*===latestSec start===*/
.latestSec {
    .secH span::after {
        background-image: linear-gradient(to right, #ffffff, #dfffd7bf);
    }

    .latestHeader {
        margin-bottom: 20px;

        .headingWrap {
            margin-bottom: 0;
        }
    }

    .latestTabs {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
        align-items: center;

        .latestTabBtn {
            padding: 10px 24px;
            border-radius: 8px;
            border: 1px solid #d5d5d5;
            background: transparent;
            color: #000;
            font-size: 16px;
            font-family: "Manjari", sans-serif;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            display: inline-block;

            &.is-active {
                background: var(--blue);
                border-color: var(--blue);
                color: #fff;
            }

            &:hover:not(.is-active) {
                border-color: var(--blue);
                color: var(--blue);
            }
        }
    }

    .latestSliderWrap {
        position: relative;
        padding: 0 0px;
    }

    .latestPrev,
    .latestNext {
        position: absolute;
        top: 38%;
        transform: translateY(-50%);
        width: 54px;
        height: 54px;
        border-radius: 50%;
        border: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        z-index: 3;
        transition: transform 0.3s ease, box-shadow 0.3s ease;

        &:hover {
            transform: translateY(-50%) scale(1.06);
            box-shadow: 0 4px 16px rgba(61, 199, 24, 0.35);
            background: var(--green);
            color: #fff;
        }
    }

    .latestPrev {
        left: -50px;
        background: #fff;
        color: #000;
        border: 1px solid #e8e8e8;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .latestNext {
        right: -50px;
        background: #fff;
        color: #000;
        border: 1px solid #e8e8e8;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .latestSlider {
        opacity: 0;
        transition: opacity 1s ease;

        &:last-child {
            .latestCard {
                .latestFigure {
                    background: linear-gradient(160deg, #ffffff 0%, #f2f7fb 100%);
                    border-bottom: 1px solid #e6eef5;

                    img {
                        object-fit: contain;
                    }
                }
            }
        }
    }

    .latestSlider.is-active {
        opacity: 1;
        transition: opacity 0.3s ease;

        &.is-switching {
            opacity: 0;
        }

        .slick-list {
            overflow: hidden;
        }

        .slick-track {
            display: flex !important;
        }

        .slick-slide {
            height: auto;

            >div {
                height: 100%;
            }
        }
    }

    #blogTab-2 {
        .latestCard {
            position: relative;

            .latestMeta {
                border-top: unset;
                border-bottom: unset;
                position: absolute;
                top: 4px;
                right: 20px;
                background-color: #fff;
                border-radius: 6px;
                padding: 10px;
            }
        }
    }

}

/*===lifeAtSec start===*/
.lifeAtSec {
    .lifeAtCard {
        background: #E6F5FF;
        border-radius: 24px;
        display: flex;
        align-items: center;
        overflow: hidden;
        min-height: 440px;
    }

    .lifeAtVisual {
        position: relative;
        flex-shrink: 0;
        width: 42%;
        align-self: stretch;
        overflow: hidden;
    }

    .lifeAtShape {
        position: absolute;

        &.lifeAtShape--green {
            width: 340px;
            height: 340px;
            background: var(--green);
            top: -30px;
            left: -40px;
            border-radius: 50% 50% 46% 54% / 58% 56% 44% 42%;
        }

        &.lifeAtShape--blue {
            width: 220px;
            height: 220px;
            background: var(--blue);
            bottom: -40px;
            left: 20px;
            opacity: 0.5;
            border-radius: 50% 50% 46% 54% / 58% 56% 44% 42%;
        }
    }

    .lifeAtFigure {
        position: absolute;
        inset: 0;
        margin: 0;
        align-items: flex-end;
        justify-content: center;
        z-index: 1;

        img {
            width: auto;
            height: 100%;
            max-height: 460px;
            object-fit: contain;
            object-position: bottom center;
        }
    }

    .lifeAtContent {
        flex: 1;
        padding: 60px 60px 60px 40px;

        .secH {
            margin-bottom: 20px;

            span::after {
                background-image: linear-gradient(to right, #E6F5FF, #A8DDFF);
            }
        }

        p {
            font-size: 17px;
            line-height: 1.65;
            color: #333;
            margin-bottom: 36px;
            max-width: 520px;
        }
    }

    .lifeAtBtns {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        align-items: center;
    }

    .lifeAtOutlineBtn {
        background: transparent;
        border: 1px solid var(--blue);

        &::before {
            width: 0;
        }

        span {
            color: var(--blue);
        }

        &:hover {
            border-color: transparent;

            &::before {
                width: 100%;
            }

            span {
                color: #fff;
            }
        }
    }
}


/* responsive start */
@media (max-width: 1768px) {
    .bannerWrap {
        .bannerCont {
            .bannerHeading {
                font-size: 80px;
            }
        }
    }
}

@media (max-width: 1600px) {
    .bannerWrap {
        .bannerCont {
            .banerCont {
                p {
                    font-size: 16px;
                }
            }
        }
    }

    .aboutSec {
        .aboutImg {
            height: 500px;
        }
    }

    .countWrap {
        .countItem {
            h3 {
                font-size: 45px;

                .countText {
                    font-size: 18px;
                }
            }
        }
    }

    .businessSec {
        .businessNav {
            .businessNavItem {

                button,
                a {
                    padding: 36px 0px;
                    font-size: 35px;
                }
            }
        }

        .businessCardTitle {
            font-size: 22px;
        }
    }

    .esgSec {
        .esgTriggerText {
            font-size: 24px;
        }

        .esgTrigger {
            padding: 18px 0;
        }

        .esgSlide {
            height: 500px;
        }
    }

    .teamWrapSec {
        .teamFigure {
            height: 170px;
        }

        .teamInfo {
            .teamName {
                font-size: 14px;
            }

            .teamRole {
                font-size: 13px;
            }
        }

        .careerCardItem {
            .cardItemLeft {
                .careerIcon {
                    width: 35px;
                    padding: 8px;
                }

                .jobText {
                    width: calc(100% - 35px);

                    .jpbName {
                        font-size: 14px;
                    }
                }
            }

            .cardItemMidle {
                .location {
                    font-size: 14px;
                }
            }
        }
    }

    .infrastructureSec {
        .infraVisual {
            bottom: -95px;
        }

        .infraPlayIcon {
            width: 56px;
            height: 56px;
            font-size: 20px;
        }

        .infraVideoLabel {
            font-size: 16px;
        }

        .infraCardTitle {
            font-size: 18px;
        }

        .infraCardIcon {
            width: 50px;
            height: 50px;
            margin-bottom: 12px;
            padding: 10px;
        }

        .infraList {
            li {
                font-size: 14px;
            }
        }
    }

    .investorSec {
        .investorColTitle {
            font-size: 26px;
            margin-bottom: 25px;
        }

        .investorDate {
            font-size: 16px;
        }

        .investorDesc {
            font-size: 14px;
        }
    }


    .latestSec {

        .latestPrev {
            left: 0;
        }

        .latestNext {
            right: 0;
        }
    }

    .latestCard {
        .latestMeta {
            span {
                font-size: 14px;
            }
        }
    }
}

@media (max-width: 1440px) {
    .bannerWrap {
        .bannerCont {
            .bannerHeading {
                font-size: 70px;
            }

            .bannerBtnWrap {
                ul {
                    li {
                        .commonBtn {
                            width: 170px;
                        }
                    }
                }
            }
        }
    }

    .countWrap {
        .countItem {
            h3 {
                font-size: 42px;
                gap: 12px;

                .countText {
                    font-size: 16px;
                }
            }
        }
    }

    .aboutSec {
        .aboutTextWrap {
            .estText {
                p {
                    font-size: 18px;
                }

                span {
                    strong {
                        font-size: 36px;
                    }
                }
            }
        }
    }

    .businessSec {
        .bgPattern_1 {
            width: 25%;
            top: 15%;
        }

        .businessCardDesc {
            font-size: 15px;
        }

        .businessCard {
            left: 20px;
            right: 20px;
        }

        .businessNav {
            .businessNavItem {

                button,
                a {
                    padding: 30px 0px;
                    font-size: 26px;
                }
            }
        }
    }

    .esgSec {
        .esgIntro {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .esgSlide {
            height: 400px;
        }

        .esgPanel {
            ul {
                li {
                    margin-bottom: 10px;
                    font-size: 15px;

                    &::before {
                        top: 5px;
                    }
                }
            }
        }

        .esgTrigger {
            padding: 12px 0;
        }

        .esgTriggerText {
            font-size: 20px;
        }
    }

    .productSec {
        .productFigure {
            height: 270px;
        }

        .productName {
            font-size: 16px;
            padding: 10px 10px 6px;
        }

        .productHoverTitle {
            font-size: 18px;
        }

        .productTabs {
            .prodAcc {
                .prodCardSlider {
                    padding: 0px 80px;

                    .slick-arrow {
                        width: 46px;
                        height: 46px;
                        left: 20px;

                        &::after {
                            font-size: 18px;
                        }

                        &.slick-next {
                            right: 20px;
                        }
                    }
                }
            }
        }
    }

    .investorSec {
        .investorCol {
            padding-right: 20px;
            margin-right: 20px;
        }
    }
}

@media (max-width: 1366px) {
    .aboutSec {
        .aboutImg {
            height: 400px;
        }
    }
}

@media (max-width: 1365px) {
    .bannerWrap {
        .bannerCont {
            .banerCont {
                .bannerBtnWrap {
                    ul {
                        li {
                            .commonBtn {
                                width: auto;
                            }
                        }
                    }
                }
            }
        }
    }

    .countWrap {
        .countItem {
            h3 {
                .countText {
                    font-size: 14px;
                }
            }
        }
    }

    .latestSec {
        .latestSliderWrap {
            padding: 0;
            padding-bottom: 80px;
        }

        .latestPrev {
            width: 46px;
            height: 46px;
            top: auto;
            bottom: -20px;
            left: calc(50% - 55px);
        }

        .latestNext {
            width: 46px;
            height: 46px;
            top: auto;
            bottom: -20px;
            left: auto;
            right: calc(50% - 55px);
        }
    }
}

@media (max-width: 1280px) {
    .latestSec {
        .latestHeader {
            .headingWrap {
                text-align: center;
            }
        }

        .latestTabs {
            justify-content: center;
            margin-bottom: 30px;
        }
    }

    .infrastructureSec{
        .infraList {
            column-count: auto !important;
        }
    }
}

@media (max-width: 1199px) {

    /* banner */
    .bannerWrap {
        .bannerCont {
            bottom: auto;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;

            .bannerHeading {
                font-size: 50px;
                margin-bottom: 20px
            }

            .banerCont {
                text-align: center;

                .bannerBtnWrap {
                    ul {
                        justify-content: center;
                    }
                }
            }
        }
    }

    .bannerVideo {
        .banImg {
            &::before {
                background-image: linear-gradient(180deg, #2a2a2a 0 0%, transparent 100% 100%);
            }

            &::after {
                background: rgba(0, 0, 0, 0.65);
            }
        }
    }

    /* business */
    .businessSec {
        .businessRow {
            --business-visual-height: 440px;
        }

        .businessCardTitle {
            font-size: 24px;
        }

        .businessNav {
            padding-left: 20px;

            .businessNavItem button,
            .businessNavItem a {
                font-size: 18px;
                padding: 22px 0;
            }
        }
    }

    /* industry */
    .industrySec {
        .industryContent {
            padding: 50px 40px 120px;

            .industryTitle {
                font-size: 52px;
            }

            .industryDesc {
                font-size: 18px;
            }
        }

        .industryTabs ul li button {
            font-size: 16px;
            padding: 18px 10px;
        }
    }

    /* life section */
    .lifeAtSec {
        .lifeAtContent {
            padding: 50px 40px 50px 30px;

            .secH {
                font-size: 50px;
            }
        }
    }

    /* products */
    .productSec {
        .productSliderWrap {
            padding: 0 60px;
        }

        .productFigure {
            height: 260px;
        }

        .productHover {
            top: 110px;
        }
    }

    /* infrastructure */
    .infrastructureSec {
        .infraTop {
            gap: 36px;
        }

        .infraVisual img {
            height: 360px;
        }

        .infraStatNum {
            font-size: 24px;
        }
    }

    /* team */
    .teamSec {
        .headingWrap {
            /* text-align: center; */
            margin-bottom: 25px;

            .secH {
                br {
                    display: none;
                }
            }
        }

        .teamFigure {
            height: 280px;
        }
    }

    /* investor */
    .investorSec {
        .investorH {
            font-size: 58px;
        }

        .stockValue {
            font-size: 40px;
        }

        .investorStock {
            width: 190px;
        }

        .investorCol {
            padding-right: 28px;
            margin-right: 28px;
        }
    }

    /* latest section */
    .latestSec {
        .latestFigure {
            height: 210px;
        }
    }

    .aboutSec {
        >.row {
            align-items: center;
        }

        .aboutImg {
            padding-left: 20px;
        }
    }

    .countWrap {
        .countItem {
            padding: 0 15px;

            h3 {
                font-size: 34px;
            }
        }
    }
}

@media (max-width: 1100px) {
    .teamSec {
        .headingWrap {
            text-align: center;
        }
    }

    .teamWrapSec {
        row-gap: 45px;

        .btnWrap {
            ul {
                justify-content: center;
            }
        }

        .teamNav {
            width: 100%;
            top: auto;
            bottom: 0;
            transform: none;

            button {
                position: absolute;

                &.teamPrev {
                    left: calc(50% - 55px);
                }

                &.teamNext {
                    left: auto;
                    right: calc(50% - 55px);
                }
            }
        }

        .teamSliderWrap {
            padding-bottom: 30px;
            margin-bottom: 60px;
        }

        .teamWrapLeft {
            flex: unset;
            width: 100%;
            padding-right: 0;
            border-right: none;
            text-align: center;

            p {
                text-align: center;
            }
        }

        .careerRightWrap {
            flex: unset;
            width: 100%;
            padding-left: 0;

            .secH {
                margin-bottom: 15px;
            }

            .subText {
                text-align: center;
                margin-bottom: 12px;
            }

            .btnWrap {
                ul {
                    justify-content: center;
                    margin-top: 25px;
                }
            }
        }

        .careerCardItem {
            .cardItemMidle {
                padding-left: 80px;
            }
        }
    }
}

@media (max-width: 1024px) {
    .mvContTrigger {
        display: block;
        position: relative;
        color: #fff;
        padding: 12px 30px 10px 15px;
        overflow: hidden;
        background-image: linear-gradient(to right, #048FEA, #282C75);
        transition: 0.5s;

        &::after {
            content: '\f107';
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-family: fontawesome;
            color: #fff;
            font-size: 16px;
            transition: all 0.5s;
        }

        span {
            display: block;
            width: 100%;
            height: 100%;
            color: #fff;
            position: relative;
            z-index: 1;
            font-size: 18px;
            line-height: 1.2;
            font-weight: 600;
        }

        &.active {
            &::after {
                transform: translateY(-50%) rotate(180deg);
            }
        }
    }

    .mvTabs {
        display: none;
    }

    .mvWraps {
        .mvContWrap {
            display: block !important;
            overflow: hidden;
            border-radius: 10px;
            border: 1px solid var(--blue);

            &:not(:last-child) {
                margin-bottom: 20px;
            }

            .mvContWrapInner {
                display: none;

                .mvWrapImg {
                    display: none;
                }

                .mvBox {
                    width: 100%;
                    border-radius: 0;
                    border: none;

                    .mvImgRes {
                        display: block;
                        width: 300px;
                        height: auto;
                        margin: 0px auto 12px;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-radius: 20px;
                        }
                    }
                }

            }

            &.active {
                .mvContWrapInner {
                    display: flex !important;
                }
            }
        }
    }

    .businessSec {
        .headingWrap {
            margin-bottom: 25px;
            text-align: center;
        }

        .bgPattern_1 {
            width: 350px;
            height: auto;
            top: 60px;

            img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        .businessRow {
            --business-visual-height: auto;

            &.deskView {
                display: none;
            }

            &.resView {
                display: block;

                .businessAccWrap {
                    .eachBusiness {
                        overflow: hidden;
                        border-radius: 10px;
                        border: 1px solid var(--blue);

                        &:not(:last-child) {
                            margin-bottom: 20px;
                        }

                        .accTrigger {
                            position: relative;
                            color: #fff;
                            padding: 12px 30px 10px 15px;
                            overflow: hidden;
                            font-size: 18px;
                            background-image: linear-gradient(to right, #048FEA, #282C75);
                            transition: 0.5s;

                            &::after {
                                content: '\f107';
                                position: absolute;
                                right: 12px;
                                top: 50%;
                                transform: translateY(-50%);
                                font-family: fontawesome;
                                color: #fff;
                                font-size: 16px;
                                transition: all 0.5s;
                            }
                        }

                        .eachBusinessCont {
                            display: none;
                            background: #fff;
                            padding: 25px 15px;

                            .eachBusinessContInn {
                                .businessFigure {
                                    width: 400px;
                                    height: auto;
                                    margin: 0px auto 20px;
                                }

                                .businessCardDesc {
                                    font-size: 14px;
                                    text-align: center;
                                    margin-bottom: 16px;
                                    overflow: visible;
                                    text-overflow: unset;
                                    display: block;
                                    -webkit-box-orient: unset;
                                    -webkit-line-clamp: none;
                                }

                                .businessCardLink {
                                    position: static;
                                    transform: none;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    margin: 0px auto;
                                }
                            }
                        }

                        &.active {
                            .accTrigger {
                                &::after {
                                    transform: translateY(-50%) rotate(180deg);
                                }
                            }

                            .eachBusinessCont {
                                display: block;
                            }
                        }
                    }
                }
            }
        }
    }

    .esgSec {
        .headingWrap {
            text-align: center;
            margin-bottom: 30px;
        }

        .esgRow {
            row-gap: 20px;

            .col-lg-6 {
                width: 100%;
            }

            .esgVisual {
                position: static;

                .esgSlide {
                    height: 300px;
                }
            }

            .esgContent {
                padding-left: 0;

                .esgIntro {
                    max-width: 100%;
                    text-align: center;
                    font-size: 14px;
                }
            }

            .btnWrap {
                justify-content: center;
            }
        }
    }

    .productSec {
        .headingWrap {
            margin-bottom: 25px;
        }

        .productTabs {
            ul {
                display: none;
            }

            .prodAcc {
                overflow: hidden;
                border-radius: 10px;
                border: 1px solid var(--blue);

                &:not(:last-child) {
                    margin-bottom: 25px;
                }

                .accTrigger {
                    display: block;
                    position: relative;
                    color: #fff;
                    padding: 12px 30px 10px 15px;
                    overflow: hidden;
                    font-size: 18px;
                    background-image: linear-gradient(to right, #048FEA, #282C75);
                    transition: 0.5s;

                    &::after {
                        content: '\f107';
                        position: absolute;
                        right: 12px;
                        top: 50%;
                        transform: translateY(-50%);
                        font-family: fontawesome;
                        color: #fff;
                        font-size: 16px;
                        transition: all 0.5s;
                    }
                }

                .prodAccCont {
                    display: none;
                    background: #fff;
                    padding: 25px 15px;

                    .prodCardSlider {
                        padding: 0;
                        padding-bottom: 80px;

                        .slick-arrow {
                            top: auto;
                            bottom: -10px;
                            left: calc(50% - 55px);

                            &.slick-next {
                                left: auto;
                                right: calc(50% - 55px);
                            }
                        }
                    }
                }

                .productName {
                    display: none;
                }

                .productHover {
                    position: static;
                    transform: none;
                    transition: none;
                    opacity: 1;
                    visibility: visible;
                    padding: 12px 10px;
                    text-align: center;
                }

                &.active {
                    .prodAccCont {
                        display: block;
                    }

                    .accTrigger {
                        &::after {
                            transform: translateY(-50%) rotate(180deg);
                        }
                    }
                }
            }
        }
    }

    .investorSec {
        .investorBody {
            .investorCols {
                flex-direction: column;
                row-gap: 20px;

                .investorCol {
                    padding-right: 0;
                    margin-right: 0;
                    padding-bottom: 20px;
                    flex: none;
                    border-right: 0;

                    &:not(:last-child) {
                        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                    }

                    .investorColTitle {
                        font-size: 22px;
                        margin-bottom: 10px;
                    }
                }
            }
        }
    }

    .latestSec {
        .latestHeader {
            .headingWrap {
                margin-bottom: 25px;
            }
        }
    }
}

@media (max-width: 991px) {

    /* banner */
    .bannerWrap {
        .bannerCont {
            .bannerHeading {
                font-size: 40px;
            }
        }

        .bannerVideo .banImg {
            height: 700px;
        }
    }

    /* about */
    .aboutSec {
        .col_2 {
            display: none;
        }

        .aboutTextWrap {
            text-align: center;
            margin-bottom: 20px;

            .aboutImgRes {
                width: 100%;
                height: 300px;
                margin: 0px auto 15px;
                display: block;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }

            .estText {
                p {
                    font-size: 16px;
                }

                span {
                    padding-right: 0;

                    strong {
                        font-size: 32px;
                    }
                }
            }

            .secH {
                margin-bottom: 12px;
            }

            .btnWrap {
                justify-content: center;
            }
        }
    }

    .countWrap {
        margin-top: 25px;

        .countItem {
            padding: 9px 12px !important;

            h3 {
                flex-direction: column;
                justify-content: center;
                align-items: center;
                text-align: center;

                .countText {
                    color: var(--blue) !important;
                }
            }

            &::before {
                width: 100% !important;
                right: 0;
            }

            &:after {
                height: 85px;
            }
        }
    }

    /* business */
    .businessSec {
        .businessRow {
            --business-visual-height: 400px;
        }

        .businessNav {
            margin-top: 40px;
            padding-left: 0;

            &::before {
                right: -40px;
            }
        }
    }

    /* esg */
    .esgSec {
        .esgContent {
            padding-left: 0;
        }

        .esgTriggerText {
            font-size: 22px;
        }
    }

    /* life section */
    .lifeAtSec {
        .lifeAtCard {
            flex-direction: column;
        }

        .lifeAtVisual {
            width: 100%;
            min-height: 320px;
        }

        .lifeAtContent {
            padding: 40px 30px;

            .secH {
                font-size: 44px;
            }
        }
    }

    /* infrastructure */
    .infrastructureSec {
        position: relative;

        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: rgba(255, 255, 255, 0.8);
        }

        .infraTop {
            flex-direction: column;
            gap: 30px;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .infraTopLeft {
            flex: unset;
            max-width: 100%;
            text-align: center;
            width: 100%;
        }

        .infraDesc {
            font-size: 14px;
            margin-bottom: 30px;
        }

        .infraStats {
            justify-content: center;
            align-items: flex-start;
        }

        .infraTopRight {
            width: 100%;
        }

        .infraVisual {
            position: static;
            width: auto;
            height: auto;
        }

        .infraCards {
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            justify-content: center;
        }

        .infraVideoBtn {
            position: static;
            justify-content: center;
        }

        .infraCard {
            flex: 0 0 calc(50% - 12px);
        }
    }

    /* investor */
    .investorSec {
        .investorBody .investorCols {
            flex-wrap: wrap;
        }

        .investorTop {
            justify-content: center;
            text-align: center;

            .investorViewBtn {
                display: none;
            }
        }

        .investorCol {
            flex: 0 0 calc(50% - 20px);
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-right: 0;
            margin-right: 0;
            padding-bottom: 30px;
            margin-bottom: 30px;

            &:last-of-type {
                border-bottom: 0;
                margin-bottom: 0;
                padding-bottom: 0;
            }
        }

        .investorStock {
            width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
        }

        .stockPrice {
            order: -1;
        }

        .resBtn {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
    }

    /* latest */
    .latestSec {
        .latestHeader {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }
    }

    /* values */
    .valuesSec {
        .valuesRow {
            flex-wrap: wrap;
        }

        .valuesItem {
            flex: 0 0 calc(50% - 1px);
            padding: 30px 30px;
            border-bottom: 1px solid #e5e5e5;

            &::after {
                display: block;
            }

            &:nth-child(2n)::after {
                display: none;
            }

            &:nth-last-child(-n+2) {
                border-bottom: 0;
            }

            &:first-child {
                padding-left: 30px;
            }

            &:last-child {
                padding-right: 30px;
            }
        }
    }

    .mvContWrapInner {
        .mvWrapImg {
            width: 100%;
            height: 300px;
        }

        .mvBox {
            width: 100%;
        }
    }

    /* community section from common.css override */
    .communitySec {
        .communityAccordion {
            flex-direction: column;
            min-height: auto;
        }

        .communityPanel {
            flex: 0 0 auto;
            min-width: 100%;
            width: 100%;

            &.is-active {
                flex: 0 0 auto;
            }
        }

        .communityPanelBtn {
            min-height: auto !important;
        }

        .communityPanel.is-active .communityExpanded {
            position: relative;
            opacity: 1;
            visibility: visible;
        }

        .communityFigure img {
            min-height: 300px !important;
        }
    }

    .contactDetailsSec {
        .contactDetailsRow {
            flex-wrap: wrap;
        }

        .contactDetailsCard {
            flex: 0 0 calc(50% - 12px);
        }
    }
}

@media (max-width: 768px) {
    .mvWraps {
        .mvContWrap {
            .mvContWrapInner {
                .mvBox {
                    .mvImgRes {
                        width: 100%;
                        height: auto;
                    }
                }
            }
        }
    }

    .countWrap {
        .countItem {
            width: 100%;
            padding: 16px 15px !important;

            &:after {
                width: 100%;
                height: 2px;
                background-color: #e1e1e185;
                right: 0;
                top: auto;
                transform: none;
                bottom: 0;
            }

            h3 {
                .countText {
                    br {
                        display: none;
                    }
                }
            }
        }
    }

    .businessSec {
        .bgPattern_1 {
            top: 110px;
        }
    }

    .infrastructureSec {
        .infraStatItem {
            flex-direction: column;
            width: 30%;
            justify-content: center;
        }

        .infraVideoLabel {
            font-size: 14px;
        }
    }

    .teamWrapSec {
        .careerCardItem {
            .cardItemMidle {
                padding-left: 30px;
            }
        }
    }
}

@media (max-width: 767px) {

    /* products */
    .productSec {
        .productTabs .productTabBtn {
            padding: 10px 16px;
            font-size: 14px;
        }

        .productSliderWrap {
            padding: 0 50px;
        }

        .productNav button {
            width: 44px;
            height: 44px;
            font-size: 15px;
        }

        .productFigure {
            height: 220px;
        }

        .productHover {
            top: 95px;
            padding: 16px 14px;
        }

        .productHoverTitle {
            font-size: 17px;
        }
    }

    /* business */
    .businessSec {
        .businessRow {
            --business-visual-height: 320px;
        }

        .businessCard {
            left: 16px;
            right: 16px;
            bottom: 16px;
            padding: 20px 72px 20px 20px;
        }

        .businessCardLink {
            right: 20px;
            top: -24px;
            width: 48px;
            height: 48px;
            font-size: 18px;
        }

        .businessCardTitle {
            font-size: 20px;
        }

        .businessCardDesc {
            font-size: 15px;
        }

        .businessNav .businessNavItem button,
        .businessNav .businessNavItem a {
            font-size: 15px;
            padding: 18px 0;
            gap: 12px;

            &::before {
                width: 0;
            }
        }

        .businessNav .businessNavItem.is-active button::before,
        .businessNav .businessNavItem:hover button::before,
        .businessNav .businessNavItem.is-active a::before,
        .businessNav .businessNavItem:hover a::before {
            width: 32px;
        }
    }

    /* industry */
    .industrySec {
        .industryPanel {
            min-height: 460px;
        }

        .industryContent {
            padding: 40px 24px 200px;
            max-width: 100%;

            .industryTitle {
                font-size: 36px;
            }

            .industryDesc {
                font-size: 16px;
            }

            .industryBtnWrap .commonBtn {
                min-width: 100%;
            }
        }

        .industryTabs ul {
            flex-wrap: wrap;

            li {
                flex: 0 0 50%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);

                &:nth-child(2n) {
                    border-right: 0;
                }

                button {
                    font-size: 14px;
                    padding: 14px 8px;
                }
            }
        }
    }

    /* life section */
    .lifeAtSec {
        .lifeAtContent {
            padding: 30px 20px;

            .secH {
                font-size: 36px;
            }
        }

        .lifeAtBtns {
            flex-direction: column;
            align-items: flex-start;

            .commonBtn {
                width: 100%;
                max-width: 260px;
            }
        }
    }

    /* esg */
    .esgSec {
        .esgIntro {
            font-size: 16px;
            margin-bottom: 24px;
        }

        .esgTrigger {
            padding: 12px 0;
        }

        .esgTriggerText {
            font-size: 18px;
        }

        .esgIcon {
            width: 34px;
            height: 34px;
            font-size: 12px;
        }

        .esgPanel ul li {
            font-size: 15px;
        }
    }

    /* infrastructure */
    .infrastructureSec {
        .infraStats {
            gap: 20px;
        }

        .infraCards {
            flex-direction: column;
        }

        .infraCard {
            flex: 0 0 100%;
        }

        .infraVisual img {
            height: 240px;
        }
    }

    /* team */
    .teamSec {

        .teamNav button {
            width: 44px;
            height: 44px;
            font-size: 15px;
        }

        .teamFigure {
            height: 260px;
        }

        .teamName {
            font-size: 16px;
        }

        .teamRole {
            font-size: 14px;
        }
    }

    /* investor */
    .investorSec {
        .investorH {
            font-size: 44px;
        }

        .investorBody .investorCols {
            flex-direction: column;
        }

        .investorCol {
            flex: 0 0 100%;
        }

        .investorColTitle {
            font-size: 22px;
        }
    }

    /* latest */
    .latestSec {

        .latestPrev,
        .latestNext {
            width: 44px;
            height: 44px;
            font-size: 15px;
        }

        .latestFigure {
            height: 185px;
            margin: 0 0 12px;
        }

        .latestTitle {
            a {
                font-size: 16px;
            }
        }

        .latestMeta {
            justify-content: center;
        }
    }
}

@media (max-width: 640px) {
    .teamWrapSec {
        .careerCardItem {
            flex-wrap: wrap;
            row-gap: 20px;

            .cardItemLeft {
                width: 100%;
            }

            .cardItemMidle {
                width: 100%;
                padding-left: 0;
            }

            .btnWrap {
                width: 100%;
                justify-content: flex-start;
            }
        }
    }
}

@media (max-width: 575px) {

    /* banner */
    .bannerWrap {
        .bannerCont {
            .bannerHeading {
                font-size: 34px;
                line-height: 1.2;
            }

            .banerCont {
                .bannerBtnWrap ul {
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    gap: 12px;

                    li .commonBtn {
                        width: 100%;
                        max-width: 250px;
                    }
                }
            }
        }

        .bannerVideo .banImg {
            height: 600px;
        }
    }

    /* business */
    .businessSec {
        .bgPattern_1 {
            width: 300px;
            height: auto;
        }

        .businessRow {
            &.resView {
                .businessAccWrap {
                    .eachBusiness {
                        .eachBusinessCont {
                            .eachBusinessContInn {
                                .businessFigure {
                                    width: 100%;
                                    height: auto;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    /* contact */
    .contactDetailsSec {
        .contactDetailsCard {
            flex: 0 0 100%;
        }
    }

    /* values */
    .valuesSec {
        .valuesItem {
            flex: 0 0 100%;
            padding: 24px 0;
            border-bottom: 1px solid #e5e5e5;

            &::after {
                display: none;
            }

            &:last-child {
                border-bottom: 0;
            }
        }
    }

    .countWrap {
        .countItem {
            h3 {
                font-size: 32px;
            }
        }
    }

    /* esg */
    .esgSec {
        .esgRow {
            .esgVisual {
                .esgSlide {
                    height: auto;
                }
            }
        }
    }

    .teamSec {
        .teamFigure {
            height: 350px;
        }
    }

    .teamWrapSec {
        .careerCardItem {
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 20px;

            .cardItemLeft {
                width: 100%;
            }

            .cardItemMidle {
                width: 100%;
                text-align: left;
            }

            .btnWrap {
                width: 100%;
                display: flex;
                justify-content: flex-start;
            }
        }
    }
}

@media (max-width: 480px) {
    .aboutSec {
        .aboutTextWrap {
            .aboutImgRes {
                width: 100%;
                height: auto;
            }
        }
    }

    .infrastructureSec {
        .infraStatItem {
            gap: 10px;
            flex-direction: column;
            width: 100%;
            justify-content: center;
        }
    }
}

@media (max-width: 420px) {
    .teamSec {
        .teamFigure {
            height: 300px;
        }
    }
}