.businessBanner {
    .pageBannerSubtitle {
        max-width: 100%;
    }
}

.overviewBoxWrap {
    border-radius: 30px;
    overflow: hidden;
    background-color: #048FEA;
    display: flex;
    flex-wrap: wrap;

    .overviewBoxItem {
        width: 50%;
        padding: 20px;
        border-right: 1px solid #ffffff70;
        border-bottom: 1px solid #ffffff70;

        h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #fff;
        }

        p {
            color: #fff;
            font-size: 16px;
            margin-bottom: 10px;

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

.mb_20 {
    margin-bottom: 10px;
}

/* ---- Business Entities Section ---- */
.businessEntitiesSec {
    background: #EBF5FF;
    padding-bottom: 80px;
    overflow: hidden;

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

.businessEntitiesHead {
    margin: 0 auto 50px;
}

.businessEntitiesHead .subH {
    color: #048FEA;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.businessEntitiesHead .secH {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.businessEntitiesDesc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Slick slider wrapper */
.businessEntitiesSlider {
    position: relative;
}

.businessEntitiesSlider .slick-list {
    overflow: visible;
}

.businessEntitiesSlider .slick-slide {
    padding: 0 12px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    margin: 0 10px;
}

.businessEntitiesSlider .slick-slide.slick-center {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    background-color: var(--green);
}

/* Cards */
.businessEntityCard {
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--blue);
}

.entityCardInner {
    padding: 32px 30px 30px;
}

.entityCategory {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
}

.entityName {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    margin-bottom: 10px;
}

.entityDesc {
    margin-bottom: 20px;
    min-height: 145px;
}

.entityDesc p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin-bottom: 0px;
}

.entityActLabel {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: normal;
}

.entityTags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.entityTag {
    background: #fff;
    color: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 7px;
    padding: 8px 14px;
    font-weight: 500;
}

.entityBtn {
    display: inline-block;
    margin-top: 6px;
    background: #fff;
    color: #048FEA;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s, color 0.3s;
}

.entityBtn:hover {
    background: #1a1a2e;
    color: #fff;
}

.entityCardInner .btnWrap {
    display: flex;
    padding-top: 20px;
    justify-content: flex-end;
}

/* Slick arrows */
.businessEntitiesSlider .entityPrev,
.businessEntitiesSlider .entityNext {
    position: absolute;
    bottom: -60px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #048FEA;
    background: #fff;
    color: #048FEA;
    font-size: 14px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s, color 0.3s;
    left: 50%;
}

.businessEntitiesSlider .entityPrev {
    transform: translateX(calc(-50% - 28px));
}

.businessEntitiesSlider .entityNext {
    transform: translateX(calc(-50% + 28px));
}

.businessEntitiesSlider .entityPrev:hover,
.businessEntitiesSlider .entityNext:hover {
    background: #048FEA;
    color: #fff;
}

@media (max-width: 768px) {
    .businessEntitiesHead .secH {
        font-size: 28px;
    }

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

/* ---- Subsidiary Governance Section ---- */
.subsidiaryGovSec {
    background: #fff;
}

.subsidiaryGovHead {
    margin-bottom: 50px;
}

.subsidiaryGovHead .subH {
    color: #048FEA;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.subsidiaryGovHead .secH {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

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

.subsidiaryGovRow {
    row-gap: 24px;
}

.subsidiaryGovCard {
    background: #EBF5FF;
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    position: relative;
}

.subsidiaryGovIcon {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #fff;
    width: 50px;
    height: 50px;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.subsidiaryGovIcon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.govIconFallback {
    font-size: 28px;
    color: #048FEA;
    opacity: 0.35;
    display: block;
}

.govCardTitle {
    font-size: 18px;
    font-weight: 700;
    color: #048FEA;
    margin-bottom: 25px;
    line-height: 1.3;
    padding-right: 40px;
}

.govCardDesc {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .subsidiaryGovHead .secH {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .subsidiaryGovHead .secH {
        font-size: 26px;
    }

    .subsidiaryGovRow .col-md-6 {
        margin-bottom: 0;
    }
}

.pdOtherSec {
    background: #fff;

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

}

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

.pdOtherSec .productCardInner:hover .productName {
    opacity: 0;
}

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

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

.pdOtherSec .productFigure {
    margin: 0;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
}

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

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

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

.pdOtherSec .productHover .commonBtn {
    display: inline-flex;
    width: auto;
    min-width: 140px;
    padding: 11px 20px;
    margin-top: 12px;
}

.pdOtherSec .productHoverTitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
    font-family: "Nata Sans", sans-serif;
    line-height: 1.2;
}

.pdOtherSec .productHoverDesc {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

.pdOtherSliderWrap {
    position: relative;
    padding: 0 60px;
}

.pdOtherNav {
    position: absolute;
    top: 38%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.pdOtherNav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    cursor: pointer;
    transition: 0.5s;
}

.pdOtherNav button:hover {
    background-color: var(--green);
    color: #fff;
}


.pdOtherSwiper {
    overflow: hidden;
}

.pdOtherSwiper .slick-list {
    margin: 0 -12px;
    overflow: hidden;
}

.pdOtherSwiper .slick-slide {
    padding: 0 12px;
    overflow: hidden;
}

/*===location sec start===*/
.locSec {
    background-color: #E5F8E2;

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

    .mapImg {
        height: 370px;
        border-radius: 20px;
        overflow: hidden;

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

    .lovCont {
        padding-left: 20px;

        h3 {
            font-size: 20px;
            margin-bottom: 20px;
        }

        ul {
            li {
                display: flex;
                margin-bottom: 20px;
                align-items: center;

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

                .locIcon {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    background-color: var(--blue);
                    display: flex;
                    padding: 10px;
                }

                p {
                    width: calc(100% - 50px);
                    padding-left: 15px;
                }
            }
        }
    }
}

.oversiteText {
    .govCardTitle {
        color: var(--green);
        font-size: 24px;
    }

    .subsidiaryGovCard {
        padding-top: 50px;
    }
}

.subsOverViewSliderDiv {
    position: relative;

    .subsOverViewSlider {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(4, 33, 63, 0.13);
        position: relative;

        .slick-arrow {
            position: absolute;
            top: 50%;
            left: 15px;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.92);
            color: #04213F;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(4, 33, 63, 0.18);
            font-size: 0;
            z-index: 3;
            transition: all 0.5s;

            &::after {
                content: '\f060';
                font-family: fontawesome;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: #04213F;
                transition: all 0.5s;
                font-size: 18px;
            }

            &.slick-next {
                left: auto;
                right: 15px;

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

            &:hover {
                background: linear-gradient(135deg, #048FEA, #0470C7);
                color: #fff;

                &::after {
                    color: #fff;
                }
            }
        }

        .slick-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);

            li {
                font-size: 0;
                width: 8px;
                height: 8px;
                margin: 0 !important;
                border-radius: 50%;
                background: #fff;
                opacity: 0.5;
                transition: all 0.5s;

                &.slick-active {
                    width: 22px;
                    border-radius: 10px;
                    height: 6px;
                    opacity: 1;
                }
            }
        }

        .subsOverviewCard {
            .subsOverviewImg {
                width: 100%;
                height: 400px;

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

.keySec {
    &.infrasKeySec {
        .unitSlider {
            .unitSlide {
                .unitImg {
                    width: 100%;
                    height: 300px;
                }
            }
        }
    }
}

.keyBoxImg {
    display: none;
}

.single-our-group {
    &.postid-632 {

        .industrySec,
        .productSec,
        .certificateSec {
            display: none !important;
        }

        .infrasKeySec {
            .keyBox {
                min-height: auto;
                height: auto;
                background: transparent;
                border: none;
                padding: 0;
                margin-bottom: 0;

                .keyBoxTxt {
                    margin-bottom: 0;
                    display: flex;
                    align-items: center;

                    .keyBoxImg {
                        display: block;
                        width: 500px;

                        img {
                            width: 100%;
                            height: 100%;
                            border-radius: 14px;
                        }
                    }

                    .keyBoxPara {
                        width: calc(100% - 500px);
                        padding-left: 30px;
                    }
                }
            }

            .commonBtnDiv {
                display: none;
            }

            .unitSlider {
                display: none;
            }
        }
    }

    &.postid-631 {
        .certificateSec {
            display: none !important;
        }
    }
}

.groupEndAppSec {
    .groupAppWrap {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;

        .groupAppItem {
            width: calc((100% / 4) - 20px);
            padding: 40px 30px;
            border-left: 4px solid var(--blue);
            border-radius: 20px;
            background-image: linear-gradient(to right, #E5F8E2, #ffffff00);
            height: 100%;
            display: flex;
            align-items: center;
            min-height: 140px;

            p {
                margin-bottom: 0px;
                font-size: 20px;
                font-weight: 600;
                position: relative;
                padding-left: 15px;

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

/* Responsive */
@media (max-width: 1440px) {
    .businessPageSec {
        .overviewBoxItem {
            p:last-child {
                font-size: 14px;
            }
        }
    }
}

@media(max-width: 1366px) {
    .groupEndAppSec {
        .groupAppWrap {

            .groupAppItem {
                width: calc((100% / 2) - 20px);
            }
        }
    }
}

@media (max-width: 1280px) {
    .keySec {
        &.infrasKeySec {
            .unitSlider {
                .unitSlide {
                    .unitImg {
                        height: 250px;
                    }
                }
            }
        }
    }
}


@media(max-width: 1024px) {
    .single-our-group {
        &.postid-632 {
            .infrasKeySec {
                .keyBox {
                    .keyBoxTxt {
                        .keyBoxImg {
                            width: 400px;
                        }

                        .keyBoxPara {
                            width: calc(100% - 400px);
                        }
                    }
                }
            }
        }
    }
}


@media (max-width: 991px) {
    .keySec {
        &.infrasKeySec {
            .unitSlider {
                .unitSlide {
                    .unitImg {
                        height: 220px;
                    }
                }
            }
        }
    }

    .single-our-group {
        &.postid-632 {
            .infrasKeySec {
                .keyBox {
                    .keyBoxTxt {
                        flex-direction: column;

                        .keyBoxImg {
                            width: 100%;
                        }

                        .keyBoxPara {
                            width: 100%;
                            padding-left: 0;
                            margin-top: 20px;
                        }
                    }
                }
            }
        }
    }
}

@media(max-width: 768px) {
    .groupEndAppSec {
        .groupAppWrap {
            .groupAppItem {
                width: 100%;
                min-height: auto;
                padding: 25px 26px;
                border-radius: 14px;
            }
        }
    }
}

@media (max-width: 767px) {
    .subsidiaryGovIcon {
        width: 42px;
        height: 42px;
        padding: 10px;
    }

    .govCardTitle {
        margin-bottom: 18px;
    }
}