.mb_50 {
    margin-bottom: 50px;
}

.row_gap10 {
    row-gap: 10px;
}

.row_gap20 {
    row-gap: 20px;
}

.row_gap30 {
    row-gap: 30px;
}

.row_gap40 {
    row-gap: 40px;
}

.row_gap50 {
    row-gap: 50px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb {
    background-color: #0B6E3A;
    border-radius: 6px;
}

.nice-select {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    margin-bottom: 20px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid #ccc;

    span {
        font-size: 18px;
        color: #000;
    }

    .list {
        width: 100%;
        max-height: 160px;
        overflow-y: auto;
    }

    &::after {
        background-image: url(../images/form-arrow.png);
        background-repeat: no-repeat;
        background-size: 100%;
        width: 20px;
        height: 20px;
        top: 15px;
        right: 15px;
        border: none;
        -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
        transform-origin: unset;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        margin-top: 0;
        filter: brightness(0) saturate(100%) invert(12%) sepia(74%) saturate(5888%) hue-rotate(157deg) brightness(96%) contrast(91%);
    }

    &.open {
        &::after {
            top: 10px;
            -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
        }
    }

    &.open,
    &:focus {
        border-color: #ccc;
    }
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
    width: 100%;
    height: 60px;
    font-size: 18px;
    color: #000;
    line-height: 45px;
    padding: 5px 20px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: transparent;

    &::placeholder {
        color: #000;
    }
}

.commonBtn {
    border: 1px solid transparent;
    position: relative;
    padding: 15px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;

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

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

    &:hover {
        border: 1px solid var(--blue);
        background-color: #fff;

        span {
            color: #048FEA;
        }

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

.wpcf7-not-valid-tip {
    font-size: 16px;
    margin-top: 8px;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 10px;
    border: none !important;
    padding: 0;
    font-size: 16px;
}

.submitWrap {
    position: relative;

    .wpcf7-spinner {
        position: absolute;
        bottom: -30px;
        right: 0;
    }
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    color: #dc3232;
}

/*==mission & Vision==*/
.mvBox {
    padding: 30px 20px 30px 25px;
    border-radius: 30px;
    border-left: 4px solid var(--blue);
    background-image: linear-gradient(to right, #DFFFD7, #FFFFFF);

    .mvHeading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;

        .mvIcon {
            width: 50px;
            height: 50px;
            border-radius: 6px;
            background-color: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
        }
    }

    .mvTitle {
        display: block;
        font-weight: 700;
        font-family: "Nata Sans", sans-serif;
        font-size: 40px;
    }
}

/*===headingWrap start===*/
.subH {
    font-size: 17px;
    color: var(--blue);
    font-weight: 700;
}

.secH {
    font-size: 60px;
    line-height: 1.2 !important;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    line-height: normal;

    span {
        padding-right: 30px;
        position: relative;
        display: inline-block;

        &::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            background-image: linear-gradient(to right, #ffffff, #dfffd7bf);
            width: 85%;
            z-index: -1;
        }
    }
}


/*===pageBannerWrap start===*/
.pageBannerWrap {
    position: relative;
    overflow: hidden;
    padding: 170px 0 90px;
    text-align: center !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;

    .breadcrumbWrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 10px;

        a {
            font-size: 15px;
            color: #555;
            transition: color 0.3s ease;

            &:hover {
                color: var(--blue);
            }
        }

        .breadcrumbSep {
            color: #999;
            font-size: 14px;
        }

        .breadcrumbCurrent {
            font-size: 15px;
            color: var(--green);
            font-weight: 600;
        }
    }

    .pageBannerTitle {
        font-size: 50px;
        font-weight: 700;
        color: #111;
        text-transform: uppercase;
        line-height: 1.15;
        margin-bottom: 22px;
        font-family: "Nata Sans", sans-serif;
    }

    .pageBannerSubtitle {
        font-size: 17px;
        color: #000;
        line-height: 1.5;
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }
}

.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: center;
            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;
                }
            }
        }
    }
}


/*===contactDetailsSec start===*/
.contactDetailsSec {

    .headingWrap {
        margin-bottom: 40px;
    }

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

    .contactDetailsRow {
        display: flex;
        gap: 24px;
    }

    .contactDetailsCard {
        flex: 1;
        /* background: var(--light-green); */
        background-color: #dfffd766;
        border-radius: 16px;
        padding: 36px 30px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
    }

    .contactCardTitle {
        font-size: 32px;
        font-weight: 700;
        color: #111;
        font-family: "Manjari", sans-serif;
        margin-bottom: 6px;
    }

    .contactCardSubtitle {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        margin-bottom: 15px;
    }

    .contactPersonWrap {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
        margin-top: 4px;
    }

    .contactPersonName {
        font-size: 24px;
        font-weight: 700;
        font-family: "Manjari", sans-serif;
        color: var(--blue);
    }

    .contactPersonRole {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        margin-top: 10px;
        font-family: "Manjari", sans-serif;
    }

    .contactInfoList {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 16px;
        flex: 1;
    }

    .contactInfoItem {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .contactInfoIcon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 50%;
        background-color: var(--blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 15px;
    }

    .contactInfoText,
    .contactInfoText a {
        font-size: 18px;
        line-height: 1.55;
        padding-top: 6px;
    }

    .contactCardFooter {
        margin-top: 24px;
        text-align: right;
    }

    .contactEnquiryLink {
        font-size: 18px;
        font-weight: 700;
        color: var(--blue);
        position: relative;
        font-family: "Manjari", sans-serif;

        &::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--blue);
            transition: width 0.3s ease;
        }
    }
}

/* ===== end contact details ===== */

/* ===== common form ====== */
.formWrap {
    .form-group {
        margin-bottom: 20px;

    }

    input[type="text"],
    input[type="email"],
    select,
    input,
    textarea {
        width: 100%;
        min-height: 55px;
        background-color: #F1F1F1;
        padding: 5px 25px;
        border-radius: 50px;
        border: none;
        outline: none;
        color: #000;
        font-size: 18px;
        font-weight: 400;
        font-family: "Manjari", sans-serif;
        outline: none;

        &::placeholder {
            color: #000;
        }
    }

    textarea {
        height: 100px;
        border-radius: 10px;
        resize: none;
    }

    input[type="submit"] {
        background: linear-gradient(90deg, #0d6efd 0%, #08276f 100%);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        padding: 10px 40px;
        font-size: 16px;
        font-weight: 500;
        transition: all 0.4s ease;
        width: 170px;

        &:hover {
            background: linear-gradient(90deg, #08276f 0%, #0d6efd 100%);
            opacity: 0.9;
        }
    }
}

.menuBg {
    display: none;
    transition: all .5s ease;

    &.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        z-index: 102;
    }
}

/* popup form */
.commonPopup {
    width: 100%;
    max-width: 700px;
    border-radius: 15px;
    background-color: #fff;
    display: none;

    .popHead {
        color: #08276f;
        font-size: 25px;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
    }

    .form-group {
        margin-bottom: 15px;
    }

    input,
    select {
        height: 42px;
        line-height: normal;
        padding: 10px 15px 5px;
    }

    textarea {
        height: 100px;
        padding: 5px 15px;
        resize: none;
    }

    input[type="submit"] {
        min-width: 150px;
        background-image: linear-gradient(to right, rgb(4, 143, 234), rgb(40, 44, 117));
        border: 1px solid transparent;
        padding: 12px 25px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        overflow: hidden;
        color: #fff;
        transition: all 0.5s;
        margin: 0px auto;

        &:hover {
            background-image: none;
            background-color: #fff;
            color: #000;
            border-color: #08276f;
        }
    }
}

.getTouchBtnDiv {
    .getTouchBtn {
        padding: 10px 20px 5px;
        top: 50%;
        right: -70px;
        z-index: 30;
        width: 180px;
        height: 40px;
        display: flex;
        font-size: 16px;
        position: fixed;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        background-color: #048FEA;
        border: 1px solid transparent;
        transform: translateY(-50%) rotate(90deg);
        border-radius: 0 0 10px 10px;
        box-shadow: 0 0 6px 0 #ccc;
        transition: all 0.5s;

        &:hover {
            background-color: #fff;
            border-color: #048FEA;
            color: #048FEA;
        }
    }
}

.sidebarForm {
    position: fixed;
    width: 100%;
    max-width: 350px;
    transform: translateX(120%);
    right: 0;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    z-index: 110;
    transition: all .5s;
    padding: 30px 20px;
    box-shadow: 2px 0 10px 2px rgba(0, 0, 0, .2);

    &.active {
        transform: translateX(0);
    }

    .sidebarFormInn {
        .sidebarFormTop {
            .sectionMainTitle {
                font-size: 30px;
                margin: 0;
                padding: 0;
                font-weight: 600;
                color: #08276f;
                font-family: "Manjari", sans-serif;
            }

            .sidebarHead {
                font-size: 15px;
                margin-top: 10px;
                margin-bottom: 18px;
                line-height: 1.5;
                color: var(--blue);
            }

            .sideMenuClose {
                position: absolute;
                right: 10px;
                top: 8px;
                font-size: 22px;

                i {
                    color: #08276f;
                }
            }
        }

        .form-group {
            margin-bottom: 15px;
        }

        input,
        select {
            height: 42px;
            line-height: normal;
            padding: 10px 15px 5px;
        }

        textarea {
            height: 100px;
            padding: 5px 15px;
            resize: none;
        }

        input[type="submit"] {
            min-width: 150px;
            background-image: linear-gradient(to right, rgb(4, 143, 234), rgb(40, 44, 117));
            border: 1px solid transparent;
            padding: 12px 25px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            overflow: hidden;
            color: #fff;
            font-size: 18px;
            transition: all 0.5s;
            margin: 0px auto;

            &:hover {
                background-image: none;
                background-color: #fff;
                color: #000;
                border-color: #08276f;
            }
        }
    }
}

/* ====== common form ===== */
.leadershipSec {
    background-image: linear-gradient(to right, #1F3780, #1f3780eb);

    .headingWrap {
        margin-bottom: 45px;
    }

    .subH {
        color: #fff;
    }

    .secH {
        color: #fff;
    }

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

    .teamSliderWrap {
        position: relative;
        padding: 0 70px;
    }

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

        button {
            pointer-events: all;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

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

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

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

    .teamSwiper {
        overflow: hidden;
    }

    .teamCard {
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);

        &:hover {
            background-color: #fff;

            .teamInfo {
                background-color: #fff;

                .teamName {
                    color: var(--blue);
                }

                .teamRole {
                    color: #000;
                }

                .teamText {
                    p {
                        color: #010101;
                    }
                }
            }
        }
    }

    .teamFigure {
        margin: 0;
        height: 400px;
        overflow: hidden;

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

    .teamInfo {
        background: var(--blue);
        padding: 22px 20px;
        text-align: center;
        border-radius: 0 0 18px 18px;
        transition: 0.5s;
    }

    .teamName {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 6px;
        line-height: 1.3;
        font-family: "Nata Sans", sans-serif;
    }

    .teamRole {
        font-size: 15px;
        color: #fff;
        margin: 0;
        line-height: 1.4;
    }

    .teamText {
        margin-top: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;

        p {
            font-size: 14px;
            color: #ffffff;
        }
    }
}

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

    .headingWrap {
        margin-bottom: 45px;
    }

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

    .teamSliderWrap {
        position: relative;
        padding: 0 70px;
    }

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

        button {
            pointer-events: all;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

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

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

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

    .teamSwiper {
        overflow: hidden;
    }

    .teamCard {
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    }

    .teamFigure {
        margin: 0;
        height: 400px;
        overflow: hidden;

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

    .teamInfo {
        background: var(--blue);
        padding: 22px 20px;
        text-align: center;
        border-radius: 0 0 18px 18px;
    }

    .teamName {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 6px;
        line-height: 1.3;
        font-family: "Nata Sans", sans-serif;
    }

    .teamRole {
        font-size: 15px;
        color: #fff;
        margin: 0;
        line-height: 1.4;
    }

    .teamText {
        margin-top: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;

        p {
            font-size: 14px;
            color: #ffffff;
        }
    }
}

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

    .headingWrap {
        margin-bottom: 55px;
        position: relative;
        z-index: 1;
    }

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

    .valuesRow {
        row-gap: 30px;

        &:not(:last-child) {
            border-bottom: 1px solid #00000025;
            margin-bottom: 40px;
            padding-bottom: 40px;
        }
    }

    .valuesItem {
        position: relative;

        &::before {
            content: '';
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 1px;
            left: 0;
            background: rgba(0, 0, 0, 0.25);
        }

        &::after {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 1px;
            height: 100%;
            background: rgba(0, 0, 0, 0.25);
        }

        &:last-child,
        &:nth-child(4) {
            &::after {
                display: none;
            }
        }

        &:first-child,
        &:nth-child(2),
        &:nth-child(3),
        &:nth-child(4) {
            .valuesItemInn {
                margin-bottom: 30px;
            }

            &::after {
                height: calc(100% - 30px);
            }
        }

        &:nth-child(5),
        &:nth-child(6),
        &:nth-child(7),
        &:nth-child(8) {
            &::before {
                display: none;
            }
        }
    }

    .valuesTop {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .valuesTitle {
        font-size: 22px;
        font-weight: 700;
        color: var(--green);
        font-family: "Nata Sans", sans-serif;
        line-height: 1.3;
    }

    .valuesIcon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #E6F5FF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 20px;
        color: var(--blue);
        transition: background 0.3s ease, color 0.3s ease;
        padding: 10px;
    }

    .valuesItem:hover .valuesIcon {
        background: var(--blue);
        color: #fff;

        img {
            filter: brightness(0) invert(1);
        }
    }

    .valuesDesc {
        line-height: 1.5;
        color: #000;
        margin: 0;
    }
}

/* === end values ==== */

/*===industrySec start==*/
.industrySec {
    padding-bottom: 0px !important;

    .headingWrap {
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
    }

    .industryPanel {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        min-height: 620px;

        &.resView {
            display: none;
        }
    }

    .industryBg {
        position: absolute;
        inset: 0;
        z-index: 0;

        .industryBgImg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.55s ease, visibility 0.55s ease;

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

            figure {
                width: 100%;
                height: 100%;
                margin-bottom: 0px;

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

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

        .industryCont {
            position: absolute;
            width: 100%;
            left: 0;
            bottom: 0;
            padding: 0 40px;
            padding-bottom: 180px;
            z-index: 2;

            h3 {
                text-transform: uppercase;
                font-weight: 600;
                font-size: 44px;
                color: #fff;
                margin-bottom: 15px;
            }

            p {
                font-size: 20px;
                color: #fff;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3;
            }
        }
    }

    .industryTabs {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;

        ul {
            display: flex;

            li {
                flex: 1;
                border-right: 1px solid rgba(255, 255, 255, 0.2);
                border-top: 1px solid #ffffff42;
                border-right: 1px solid #ffffff42;
                text-align: center;

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

                &.is-active {
                    span {
                        color: var(--green);
                    }
                }

                span {
                    width: 100%;
                    background: transparent;
                    color: #fff;
                    font-size: 20px;
                    line-height: 1.4;
                    font-family: "Nata Sans", sans-serif;
                    cursor: pointer;
                    transition: color 0.3s ease;
                    padding: 30px 15px;
                    height: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                &.is-active button,
                &:hover button {
                    color: var(--green);
                }
            }
        }
    }

    .industry_img {
        &:nth-child(6) {
            object-position: 0% 15%;
        }
    }

    .indusBtn {
        max-width: 200px;
        margin: 20px auto 0;
    }
}


/* ===== pagination ===== */
.pagination {
    display: flex;
    padding-left: 0;

    ul {
        display: flex;
        gap: 10px;

        li {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-numbers {
            width: 44px;
            height: 44px;
            line-height: 44px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid #00000025;
            color: #000;
            transition: 0.5s;
            text-align: center;
            display: block;
            align-items: center;

            /* justify-content: center; */
            &:hover,
            &.current {
                background-color: #3DC718;
                color: #ffffff;
                border-color: transparent;
            }
        }
    }
}

/* ===== end pagination ====== */

/* start certificate section */
.CertiWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    .echCertiWrap {
        width: calc(25% - 10px);
        height: 100%;
        padding: 0 10px;

        .certiCard {
            min-height: 220px;
            box-shadow: 1px 0px 30px #00000011;
            border-radius: 10px;
            background-color: #fff;
            padding: 15px;
            text-align: center;

            .certiIcon {
                width: 52px;
                height: 52px;
                margin: 0 auto 20px;

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

            .certiTxt {
                .certiTle {
                    font-size: 25px;
                    font-weight: 700;
                    color: #000;
                    font-family: "Nata Sans", sans-serif;
                    margin-bottom: 15px;
                    text-align: center;
                }

                .certiCont {
                    font-family: "Manjari", sans-serif;
                    color: #048FEA;
                    font-size: 18px;
                    font-weight: 400;
                    text-align: center;
                }
            }
        }
    }
}

/* end certificate section */

/* start blog section card */
.latestCard {
    padding: 0 14px;
    height: 100%;

    .latestFigure {
        margin: 0 0 20px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        height: 240px;

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

        &:hover img {
            transform: scale(1.05);
        }
    }

    .latestCardLink {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: var(--green);
        color: rgb(255, 255, 255);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 2;
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.3s, transform 0.3s, background 0.3s;
        transform: translate(-50%, -50%);

        svg {
            transform: rotate(-45deg);
        }

        &:hover {
            background: #34b314;
            color: #fff;
        }
    }

    .latestFigure:hover .latestCardLink {
        opacity: 1;
    }

    .latestTitle {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.45;
        margin-bottom: 18px;
        font-family: "Nata Sans", sans-serif;

        a {
            color: #000;
            transition: color 0.3s ease;
            font-size: 18px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
        }
    }

    .latestMeta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 10px;
        border-top: 1px solid rgb(229, 229, 229);
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgb(229, 229, 229);

        span {
            display: block;
            align-items: center;
            font-size: 16px;
            line-height: normal;
            color: #555;

            img {
                width: 20px;
                margin-right: 6px;
            }

            i {
                font-size: 15px;
                color: var(--blue);
            }
        }
    }

    &:hover {
        .latestMeta {
            span {
                color: #000;

                img {
                    filter: brightness(0) saturate(100%) invert(54%) sepia(85%) saturate(5109%) hue-rotate(182deg) brightness(99%) contrast(97%);
                }
            }
        }

        .latestTitle {
            a {
                color: #282C75;
                text-decoration: underline !important;
            }
        }
    }
}

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

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

    .keyBox {
        padding: 50px 20px 30px 25px;
        border-radius: 20px;
        border-left: 4px solid var(--blue);
        background-image: linear-gradient(to right, #DFFFD7, #FFFFFF);
        position: relative;
        min-height: 220px;
        margin-bottom: 20px;

        .keyIcon {
            width: 52px;
            height: 52px;
            border-radius: 10px;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: #fff;
            margin-bottom: 0;
            transition: background 0.3s ease;
            padding: 8px;
            position: absolute;
            right: 20px;
            top: 10px;
        }

        h3 {
            font-size: 24px;
            font-weight: 700;
            color: #111;
            font-family: "Nata Sans", sans-serif;
            line-height: 1.3;
            margin-bottom: 12px;
            padding-right: 40px;
        }

        h6 {
            font-size: 16px;
            color: var(--blue);
            margin-bottom: 15px;
            font-weight: 600;
        }
    }
}

/* end blog section card */

@media (max-width: 1199px) {
    .pageBannerWrap {
        .pageBannerSubtitle {
            max-width: 100%;
        }
    }
}

@media (max-width: 991px) {
    .pageBannerWrap {
        padding: 65px 0 40px;

        .pageBannerTitle {
            font-size: 25px;
        }
    }
}

/*===pageBannerWrap end===*/

/*===communitySec start===*/
.communitySec {
    .communityInner {
        background-color: var(--light-green);
        border-radius: 20px;

    }

    .headingWrap {
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }

    .secH span::after {
        background-image: linear-gradient(to right, var(--light-green), #B7EBAA);
    }

    .communityAccordion {
        display: flex;
        align-items: stretch;
        gap: 14px;
        min-height: 510px;
    }

    .communityPanel {
        position: relative;
        flex: 0 0 76px;
        min-width: 76px;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
        transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.55s cubic-bezier(0.4, 0, 0.2, 1);

        &.is-active {
            flex: 1 1 0;
            min-width: 0;

            /* .communityPanelBtn {
                pointer-events: none;
            } */

            .communityLink {
                pointer-events: all;
            }
        }
    }

    .communityPanelBtn {
        width: 100%;
        height: 100%;
        min-height: 480px;
        border: 0;
        padding: 0;
        margin: 0;
        background: transparent;
        cursor: pointer;
        position: relative;
        display: block;
        text-align: left;
    }

    .communityCollapsedLabel {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-family: "Nata Sans", sans-serif;
        font-size: 22px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--blue);
        padding: 20px 0;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .communityPanel.is-active .communityCollapsedLabel {
        opacity: 0;
        visibility: hidden;
    }

    .communityExpanded {
        position: absolute;
        inset: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease 0.1s, visibility 0.4s ease 0.1s;
    }

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

    .communityFigure {
        margin: 0;
        width: 100%;
        height: 100%;

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

    .communityOverlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 80px 28px 28px;
        background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 30%);
        border-radius: 0 0 18px 18px;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
    }

    .communityOverlayText {
        flex: 1;
        min-width: 0;
    }

    .communityTitle {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
        text-transform: uppercase;
        margin-bottom: 10px;
        line-height: 1.2;
        font-family: "Nata Sans", sans-serif;
    }

    .communityDesc {
        font-size: 17px;
        line-height: 1.5;
        color: #fff;
        margin: 0;
        max-width: 520px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .communityLink {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        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;
        }
    }
}

.overviewImg {
    figure {
        height: 420px;
        border-radius: 20px;
        overflow: hidden;

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

.overviewText {
    padding-right: 50px;
}

.keySec {
    &.infrasKeySec {
        .unitSlider {
            position: relative;
            padding-bottom: 50px;

            .unitSlide {
                padding: 0px 10px;

                .unitImg {
                    width: 100%;
                    height: 200px;

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

            .slick-arrow {
                position: absolute;
                top: auto;
                bottom: 0;
                left: calc(50% - 50px);
                width: 42px;
                height: 42px;
                border: 0;
                border-radius: 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;
                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: calc(50% - 50px);

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

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

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

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

.headerNotice {
    position: relative;
    margin-bottom: 8px;
    background: rgba(2, 20, 38, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    .noticeBar {
        position: relative;
        display: flex;
        align-items: stretch;
        overflow: hidden;

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

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

    .noticeLabelTxt {
        font-size: 13px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.5px;
        color: #fff;
        text-transform: uppercase;
        white-space: nowrap;
        padding-top: 6px;
    }

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

        &::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;
        animation-play-state: paused;

        &.is-ready {
            animation-play-state: running;
        }
    }

    .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-size: 13px;
        font-weight: 700;
        color: #fff;
        padding: 6px 10px 2px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 4px;
        line-height: 1;
        flex-shrink: 0;
        transition: all 0.5s;
    }

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

    .noticeTag {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.6px;
        text-transform: uppercase;
        color: #fff;
        background: var(--green);
        padding: 6px 8px 2px;
        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);
    }
}


/* Responsive */
@media (max-width: 1600px) {
    .pageBannerWrap {
        padding: 160px 0 70px;
    }

    .pageBannerWrap {
        .pageBannerTitle {
            font-size: 36px;
            margin-bottom: 12px;
        }

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

    .commonBtn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .secH {
        font-size: 46px;
    }

    p,
    ul li {
        font-size: 16px;
    }

    .customBlock {
        padding: 80px 0;
    }

    input[type=text],
    input[type=tel],
    input[type=email],
    select,
    textarea {
        font-size: 16px;
    }

    .formWrap {

        input[type="text"],
        input[type="email"],
        select,
        input,
        textarea {
            font-size: 16px;
        }
    }

    .nice-select {
        font-size: 16px;

        span {
            font-size: 16px;
        }
    }

    input[type="submit"] {
        font-size: 16px;
    }

    .leadershipSec {
        .teamFigure {
            height: 320px;
        }
    }

    .industrySec {
        .industryPanel {
            min-height: 530px;
        }

        .industryTabs {
            ul {
                li {
                    span {
                        font-size: 18px;
                        padding: 25px 15px;
                    }
                }
            }
        }

        .industryBg {
            .industryCont {
                h3 {
                    font-size: 36px;
                }

                p {
                    font-size: 18px;
                }
            }
        }
    }

    .communitySec {
        .communityCollapsedLabel {
            font-size: 18px;
            padding: 18px 0;
        }

        .communityAccordion {
            min-height: 450px;
        }

        .communityPanelBtn {
            min-height: 450px;
        }

        .communityTitle {
            font-size: 24px;
        }

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

    .contactDetailsSec {
        .contactCardTitle {
            font-size: 26px;
        }

        .contactCardSubtitle {
            font-size: 16px;
        }

        .contactPersonName {
            font-size: 20px;
        }

        .contactPersonRole {
            font-size: 16px;
        }

        .contactInfoText,
        .contactInfoText a {
            font-size: 16px;
        }

        .contactInfoIcon {
            width: 30px;
            height: 30px;
            min-width: 30px;
            font-size: 14px;
        }

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

    .latestCard {
        .latestFigure {
            margin: 0 0 10px;
        }
    }

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

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

}

@media (max-width: 1440px) {

    .pageBannerWrap {
        .pageBannerTitle {
            font-size: 32px;
        }

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

    .commonBtn {
        font-size: 14px;
    }

    input[type=text],
    input[type=tel],
    input[type=email],
    select,
    textarea {
        font-size: 14px;
    }

    .formWrap {

        input[type="text"],
        input[type="email"],
        select,
        input,
        textarea {
            font-size: 14px;
        }
    }

    input[type=text],
    input[type=tel],
    input[type=email],
    select,
    textarea {
        height: 46px;
        min-height: 46px;
    }

    .nice-select {
        font-size: 14px;

        &::after {
            width: 16px;
            height: 16px;
        }

        span {
            font-size: 14px;
        }
    }

    .formWrap {
        input[type="submit"] {
            padding: 10px 20px;
            font-size: 16px;
            width: 150px;
            min-height: 45px;
        }
    }

    p,
    ul li {
        font-size: 14px;
    }

    a {
        font-size: 14px;
    }

    .secH {
        font-size: 40px;
    }

    .mvBox {
        .mvTitle {
            font-size: 32px;
        }
    }

    .leadershipSec {
        .teamNav {
            button {
                width: 46px;
                height: 46px;
            }
        }

        .teamFigure {
            height: 260px;
        }

        .teamInfo {
            padding: 16px 12px;
        }

        .teamName {
            font-size: 16px;
        }

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

    .industrySec {
        .industryPanel {
            min-height: 480px;
        }

        .industryTabs {
            ul {
                li {
                    span {
                        font-size: 16px;
                        padding: 20px 12px;
                    }
                }
            }
        }

        .industryBg {
            .industryCont {
                padding: 0 20px;
                padding-bottom: 140px;

                h3 {
                    font-size: 30px;
                }

                p {
                    font-size: 17px;
                }
            }
        }
    }

    .communitySec {
        .communityTitle {
            font-size: 22px;
        }

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

    .contactDetailsSec {
        .contactDetailsCard {
            padding: 20px 25px;
        }

        .contactPersonWrap {
            margin-bottom: 6px;
            margin-top: 4px;
        }

        .contactCardTitle {
            font-size: 22px;
        }

        .contactCardSubtitle {
            font-size: 14px;
        }

        .contactPersonName {
            font-size: 17px;
        }

        .contactPersonRole {
            font-size: 14px;
        }

        .contactInfoText,
        .contactInfoText a {
            font-size: 14px;
        }

        .contactInfoIcon {
            width: 26px;
            height: 26px;
            min-width: 26px;
            font-size: 14px;
        }

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

    .valuesSec {
        .valuesTop {
            margin-bottom: 10px;
        }

        .valuesTitle {
            font-size: 20px;
        }

        .valuesIcon {
            width: 46px;
            height: 46px;
        }
    }

    .CertiWrap {
        .echCertiWrap {
            .certiCard {
                .certiTxt {
                    .certiTle {
                        font-size: 20px;
                        margin-bottom: 12px;

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

    .latestCard {
        .latestTitle {
            a {
                font-size: 14px;
            }
        }

        .latestMeta {
            span {
                font-size: 13px;
            }
        }
    }
}

@media (max-width: 1280px) {
    .container-mid {
        max-width: 100%;
    }

    .secH {
        font-size: 38px;
    }

    .mvBox {
        .mvTitle {
            font-size: 25px;
        }
    }

    .industrySec {
        .industryPanel {
            min-height: 450px;
        }
    }

    .communitySec {
        .communityAccordion {
            min-height: 400px;
        }

        .communityCollapsedLabel {
            font-size: 16px;
        }

        .communityPanelBtn {
            min-height: 400px;
        }

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

    .contactDetailsSec {
        .contactCardTitle {
            font-size: 20px;
        }

        .contactInfoList {
            margin-top: 10px;
        }
    }
}

@media (max-width: 1199px) {

    .leadershipSec {
        .teamNav {
            top: auto;
            bottom: 0;
            transform: none;

            button {
                position: absolute;

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

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

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

    .communitySec {
        .communityAccordion {
            min-height: 400px;
        }

        .communityPanelBtn,
        .communityFigure img {
            min-height: 400px;
        }

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

    .CertiWrap {
        .echCertiWrap {
            .certiCard {
                .certiIcon {
                    width: 42px;
                    height: 42px;
                    margin: 0 auto 10px;
                }

                .certiTxt {
                    .certiCont {
                        font-size: 16px;
                    }
                }
            }
        }
    }

    .keySec {
        &.infrasKeySec {
            .unitSlider {
                .unitSlide {
                    .unitImg {
                        height: 150px;
                    }
                }
            }
        }
    }

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

@media (max-width: 1024px) {
    .mvBox {
        .mvTitle {
            font-size: 22px;
        }

        .mvHeading {
            margin-bottom: 16px;
            flex-direction: column-reverse;
            gap: 15px;
        }

        .mvText {
            text-align: center;
        }
    }

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

        .teamFigure {
            height: 360px;
        }
    }

    .industrySec {
        padding-bottom: 0 !important;

        .headingWrap {
            margin-bottom: 25px;
        }

        .industryPanel {
            &.deskView {
                display: none;
            }

            &.resView {
                display: block;
                height: auto;
                min-height: auto;
                border: none;
                border-radius: 0;
                position: static;

                .eachIndus {
                    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;
                        }
                    }

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

                        .eachIndusContInn {
                            .eachIndusFig {
                                width: 400px;
                                height: auto;
                                margin: 0px auto 20px;

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

                            .industryCont {
                                position: static;
                                padding: 0;
                                text-align: center;

                                .btnWrap {
                                    justify-content: center;
                                }

                                p {
                                    font-size: 14px;
                                    overflow: visible;
                                    text-overflow: unset;
                                    display: block;
                                    -webkit-box-orient: unset;
                                    -webkit-line-clamp: unset;
                                }
                            }
                        }
                    }

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

                        .eachIndusCont {
                            display: block;
                        }
                    }
                }
            }
        }
    }

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

        .communityAccordion {
            display: block;
            min-height: unset;
        }

        .communityOverlay {
            background: transparent !important;
            display: block !important;
            border-radius: 0 !important;
            padding: 0 !important;
            position: static !important;

            .communityOverlayText {
                text-align: center;

                * {
                    color: #000 !important;
                }

                .communityTitle {
                    display: none;
                }

                .communityDesc {
                    max-width: 100%;
                    overflow: visible;
                    text-overflow: unset;
                    display: block;
                    -webkit-box-orient: unset;
                    -webkit-line-clamp: unset;
                    margin-bottom: 15px;
                }
            }
        }

        .communityFigure {
            width: 100%;
            height: 300px;
            margin-bottom: 15px;

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

        .communityPanel {
            min-width: unset !important;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            transition: none;

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

            &.is-active {
                .communityCollapsedLabel {
                    &::after {
                        content: '\2212';
                    }
                }

                .communityExpanded {
                    max-height: 100%;
                    opacity: 1 !important;
                    visibility: visible !important;
                    padding: 10px 15px 25px;
                }
            }
        }

        .communityPanelBtn {
            min-height: unset;
            height: auto;
        }

        .communityCollapsedLabel {
            position: relative;
            writing-mode: unset;
            transform: none;
            font-size: 18px;
            padding: 20px 15px;
            justify-content: flex-start;
            align-items: center;
            color: var(--blue);
            opacity: 1 !important;
            visibility: visible !important;

            &::after {
                content: '\002B';
                position: absolute;
                right: 15px;
                top: 50%;
                transform: translateY(-50%);
                font-family: fontawesome;
                font-size: 18px;
                font-weight: 400;
                color: var(--blue);
            }
        }

        .communityExpanded {
            position: static;
            max-height: 0;
            overflow: hidden;
            transition: none;
        }


        .communityLink {
            pointer-events: all;
            text-align: center;
            margin: 0px auto;
            width: 46px;
            height: 46px;
            font-size: 20px;
        }
    }

}

@media (max-width: 991px) {

    .customBlock {
        padding: 60px 0;
    }

    .subH {
        font-size: 15px;
    }

    .secH {
        font-size: 32px;
        margin-bottom: 12px;

        br {
            display: none;
        }

        span {
            padding-right: 0;
        }
    }

    .overviewText {
        padding-right: 0;
    }

    .overviewImg {
        margin-top: 20px;

        figure {
            height: auto;
        }
    }

    .valuesSec {
        .headingWrap {
            margin-bottom: 20px;
        }

        .valuesRow {
            gap: 0 !important;
        }

        .valuesTop {
            flex-direction: column-reverse;
            justify-content: center;
            align-items: center;
            margin-bottom: 10px;
        }

        .valuesDesc {
            text-align: center;
        }

        .valuesItem {

            &::after,
            &::before {
                display: none !important;
            }

            .valuesItemInn {
                padding-top: 15px;
                padding-bottom: 15px;
                margin-bottom: 0 !important;
            }

            &:not(:last-child) {
                .valuesItemInn {
                    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
                }
            }

            .valuesIcon {
                background: var(--blue);
                color: #fff;
                margin-bottom: 10px;

                img {
                    filter: brightness(0) invert(1);
                }
            }
        }

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

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

@media (max-width: 768px) {
    .mvBox {
        padding: 25px 15px 25px 15px;
    }

    .communitySec {
        .communityCollapsedLabel {
            font-size: 16px;
            padding: 16px 15px;

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

        .communityFigure {
            height: auto;
        }
    }

    .commonPopup {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .headerNotice {
        .noticeDate {
            font-size: 11px;
        }

        .noticeLabel {
            padding: 8px 16px 8px 8px;
        }

        .noticeLabelTxt {
            font-size: 12px;
        }

        .noticeTxt {
            font-size: 13px;
        }

        .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%);
        }

        .noticeTrack {
            animation-duration: 30s;
        }

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

        .noticeTxt {
            font-size: 14px;
        }

        .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;
    }
}

@media (max-width: 640px) {
    .leadershipSec {
        .teamFigure {
            height: 360px;
        }
    }
}

@media (max-width: 575px) {
    .customBlock {
        padding: 50px 0;
    }

    .secH {
        font-size: 28px;
    }

    .industrySec {
        .industryPanel {
            &.resView {
                .eachIndus {
                    .eachIndusCont {
                        .eachIndusContInn {
                            .eachIndusFig {
                                width: 100%;
                                height: auto;
                            }
                        }
                    }
                }
            }
        }
    }

    .contactDetailsSec {
        .contactDetailsCard {
            padding: 20px 18px;
        }
    }
}

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

    .headerNotice {
        .noticeLabelTxt {
            font-size: 11px;
        }

        .noticeTxt {
            font-size: 12px;
        }

        .noticeIcon {
            width: 15px;
            height: 15px;
            font-size: 8px;
        }
    }
}

/* 404 not found */
.errorSec {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #E6F5FF 0%, #ffffff 65%);

    .errorInner {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
    }

    .errorCode {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        font-family: "Nata Sans", sans-serif;
        font-size: 180px;
        font-weight: 700;
        line-height: 1;
        margin-bottom: 25px;

        span {
            display: inline-block;
            color: transparent;
            -webkit-text-stroke: 2px var(--blue);
            animation: errFloat 3.6s ease-in-out infinite;

            &:nth-child(2) {
                animation-delay: 0.4s;
            }

            &:nth-child(3) {
                animation-delay: 0.8s;
            }
        }

        .errorZero {
            -webkit-text-stroke: 0px transparent;
            background-image: linear-gradient(120deg, var(--green) 0%, #2FA80F 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    .errorSubH {
        display: block;
        font-size: 17px;
        color: var(--blue);
        font-weight: 700;
        margin-bottom: 12px;
    }

    .errorTitle {
        font-size: 50px;
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        line-height: normal;
        margin-bottom: 20px;

        span {
            padding-right: 30px;
            position: relative;
            display: inline-block;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                height: 100%;
                width: 85%;
                background-image: linear-gradient(to right, #e6f5ff00, #dfffd7bf);
                z-index: -1;
            }
        }
    }

    .errorDesc {
        font-size: 17px;
        color: #444;
        line-height: 1.75;
        max-width: 560px;
        margin: 0 auto;
    }

    .errorActions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 40px;

        .commonBtn {
            display: inline-flex;

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

                &::before {
                    width: 0;
                }

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

                &:hover {
                    border-color: transparent;

                    &::before {
                        width: 100%;
                    }

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

    /* floating chemistry bubbles */
    .errorBubble {
        position: absolute;
        bottom: -120px;
        border-radius: 50%;
        background: rgba(4, 143, 234, 0.07);
        border: 1px solid rgba(4, 143, 234, 0.18);
        animation: bubbleRise 14s linear infinite;

        &:nth-child(1) {
            left: 8%;
            width: 90px;
            height: 90px;
            animation-duration: 16s;
        }

        &:nth-child(2) {
            left: 22%;
            width: 40px;
            height: 40px;
            animation-delay: 3s;
            background: rgba(61, 199, 24, 0.08);
            border-color: rgba(61, 199, 24, 0.22);
        }

        &:nth-child(3) {
            left: 50%;
            width: 65px;
            height: 65px;
            animation-delay: 6s;
            animation-duration: 18s;
        }

        &:nth-child(4) {
            left: 74%;
            width: 34px;
            height: 34px;
            animation-delay: 1.5s;
            background: rgba(61, 199, 24, 0.08);
            border-color: rgba(61, 199, 24, 0.22);
        }

        &:nth-child(5) {
            left: 88%;
            width: 110px;
            height: 110px;
            animation-delay: 8s;
            animation-duration: 20s;
        }
    }
}

@keyframes errFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-115vh) scale(1.15);
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .errorSec {
        padding: 160px 0 100px;

        .errorCode {
            font-size: 150px;
        }

        .errorTitle {
            font-size: 42px;
        }
    }
}

@media (max-width: 991px) {
    .errorSec {
        .errorCode {
            font-size: 120px;
        }

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

@media (max-width: 767px) {
    .errorSec {
        padding: 130px 20px 80px;
        min-height: auto;

        .errorCode {
            font-size: 90px;
            gap: 8px;
        }

        .errorTitle {
            font-size: 28px;

            span {
                padding-right: 15px;
            }
        }

        .errorDesc {
            font-size: 15px;
        }

        .errorBtns {
            flex-direction: column;

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

/* Thank you */
.thankSec {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #E5F8E2 0%, #ffffff 65%);

    .thankInner {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 720px;
        margin: 0 auto;
    }

    .thankIcon {
        position: relative;
        width: 110px;
        height: 110px;
        margin: 0 auto 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: linear-gradient(120deg, var(--green) 0%, #2FA80F 100%);
        color: #fff;
        font-size: 44px;
        box-shadow: 0 18px 40px rgba(61, 199, 24, 0.3);

        i {
            animation: thankPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.3s;
        }

        &::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid rgba(61, 199, 24, 0.5);
            animation: thankPulse 2s ease-out infinite;
        }
    }

    .thankSubH {
        display: block;
        font-size: 17px;
        color: var(--blue);
        font-weight: 700;
        margin-bottom: 12px;
    }

    .thankTitle {
        font-size: 50px;
        font-weight: 700;
        text-transform: uppercase;
        color: #000;
        line-height: normal;
        margin-bottom: 20px;

        span {
            padding-right: 30px;
            position: relative;
            display: inline-block;

            &::after {
                content: "";
                position: absolute;
                top: 0;
                right: 0;
                height: 100%;
                width: 85%;
                background-image: linear-gradient(to right, #e5f8e200, #B7EBAA);
                z-index: -1;
            }
        }
    }

    .thankDesc {
        font-size: 17px;
        color: #444;
        line-height: 1.75;
        max-width: 560px;
        margin: 0 auto;
    }

    .thankNote {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 25px;
        padding: 12px 24px;
        border-radius: 50px;
        background: #fff;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
        font-size: 15px;
        color: #333;

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

    .thankBtns {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        margin-top: 40px;

        .commonBtn {
            display: inline-flex;

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

                &::before {
                    width: 0;
                }

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

                &:hover {
                    border-color: transparent;

                    &::before {
                        width: 100%;
                    }

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

    /* floating chemistry bubbles */
    .thankBubble {
        position: absolute;
        bottom: -120px;
        border-radius: 50%;
        background: rgba(61, 199, 24, 0.07);
        border: 1px solid rgba(61, 199, 24, 0.2);
        animation: thankBubbleRise 14s linear infinite;

        &:nth-child(1) {
            left: 8%;
            width: 90px;
            height: 90px;
            animation-duration: 16s;
        }

        &:nth-child(2) {
            left: 22%;
            width: 40px;
            height: 40px;
            animation-delay: 3s;
            background: rgba(4, 143, 234, 0.07);
            border-color: rgba(4, 143, 234, 0.18);
        }

        &:nth-child(3) {
            left: 50%;
            width: 65px;
            height: 65px;
            animation-delay: 6s;
            animation-duration: 18s;
        }

        &:nth-child(4) {
            left: 74%;
            width: 34px;
            height: 34px;
            animation-delay: 1.5s;
            background: rgba(4, 143, 234, 0.07);
            border-color: rgba(4, 143, 234, 0.18);
        }

        &:nth-child(5) {
            left: 88%;
            width: 110px;
            height: 110px;
            animation-delay: 8s;
            animation-duration: 20s;
        }
    }
}

@keyframes thankPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

@keyframes thankBubbleRise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-115vh) scale(1.15);
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .thankSec {
        padding: 160px 0 100px;

        .thankTitle {
            font-size: 42px;
        }
    }
}

@media (max-width: 991px) {
    .thankSec {
        .thankTitle {
            font-size: 36px;
        }

        .thankIcon {
            width: 95px;
            height: 95px;
            font-size: 38px;
        }
    }
}

@media (max-width: 767px) {
    .thankSec {
        padding: 130px 20px 80px;
        min-height: auto;

        .thankTitle {
            font-size: 28px;

            span {
                padding-right: 15px;
            }
        }

        .thankDesc {
            font-size: 15px;
        }

        .thankIcon {
            width: 80px;
            height: 80px;
            font-size: 32px;
            margin-bottom: 25px;
        }

        .thankNote {
            font-size: 13px;
            padding: 10px 18px;
        }

        .thankBtns {
            flex-direction: column;

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