@import "./variables.css";

body {
    font-family: var(--inter);
}

.form-control:focus {
    border: none !important;
    outline: none !important;
    color: transparent !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;

    .preloader-left {
        position: fixed;
        top: 0;
        left: 0;
        width: 30%;
        height: 100vh;
        background-color: #fff;
    }

    .preloader-right {
        position: fixed;
        top: 0;
        right: 0;
        width: 30%;
        height: 100vh;
        background-color: #fff;
    }

    .middler__upper {
        position: fixed;
        top: 0;
        left: 30%;
        width: 40%;
        height: 50%;
        background-color: #fff;
    }
    .middler__bottom {
        position: fixed;
        bottom: 0;
        left: 30%;
        width: 40%;
        height: 50%;
        background-color: #fff;
    }

    .preloader-middle {
        display: flex;
        align-items: center;
        justify-content: center;
        .preloader__text {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: absolute;
            z-index: 10000;
            h1 {
                color: #000;
            }

            img {
                width: 50px;
                height: 50px;
            }
        }
    }
}

p {
    font-size: 14px;
    font-weight: 700;
}

.hero__container {
    width: 100%;
    /* background-color: var(--backgroundColor); */
    background-color: #fff;
    /* background-color: #/; */
    padding: 10px 40px;
    position: fixed;
    z-index: 1000;
    nav {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .navbarLogo img {
            width: 250px;
            height: auto;
        }

        .navbarMain {
            position: relative;
            right: 0%;

            ul {
                display: flex;
                align-items: center;
                justify-self: center;
                gap: 30px;

                li {
                    a {
                        color: #000b36 !important;
                        font-weight: normal;
                        &:hover {
                            color: #e8bc70;
                        }
                    }
                }
            }
        }

        .hamburgerMenu {
            cursor: pointer;
            font-size: 28px;
            span {
                i {
                    color: #000;
                }
            }
        }
    }
}

.hero__container.scrolled {
    background-color: #fff;
    color: #000;

    .navbarMain {
        position: relative;
        right: 0;
        ul {
            display: flex;
            align-items: center;
            justify-self: center;
            gap: 30px;

            li {
                a {
                    color: #000b36 !important;
                    font-weight: normal;

                    &:hover {
                        color: #e8bc70 !important;
                    }
                }
            }
        }
    }
}

.home {
    position: relative;
    .home__container {
        position: relative;

        .swiper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            text-align: center;
            font-size: 18px;
            background: #444;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper__Content {
            width: 100%;
            position: absolute;

            padding: 0 40px;

            display: flex;
            /* align-items: center; */
            justify-content: space-between;

            .swiper__home_content {
                position: absolute;
                bottom: -150px;
                width: 100%;
                display: block;
                position: absolute;
                align-items: start;

                .swiper__heading {
                    text-wrap: nowrap;
                    text-align: start;
                    font-size: 72px;
                    color: #fff;
                }

                .swiper__para {
                    width: 50%;
                    margin-top: 20px;
                    text-align: start;
                    font-weight: normal;
                    font-size: 18px;
                    /* color: #003f72; */
                }
            }

            .swiper__details-card {
                position: absolute;
                top: -150px;
                left: 70%;
                height: 350px;
                width: 350px;
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.5),
          inset 0 -1px 0 rgba(255, 255, 255, 0.1),
          inset 0 0 0px 0px rgba(255, 255, 255, 0); */
                /* position: relative; */
                overflow: hidden;
            }

            .swiper__location_tag {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                position: absolute;
                left: 80%;
                top: -100px;
                h6 {
                    font-size: 16px;
                    text-transform: uppercase;
                    color: #fff;
                    font-weight: normal;
                    margin-top: 10px;
                }
            }
        }

        .swiper-slide img {
            display: block;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            /* background-position: top; */
        }

        .swiper-pagination-bullet {
            position: relative;
            z-index: 1000;
            width: 15px;
            height: 15px;
            border-radius: 10px;
            text-align: center;
            line-height: 20px;
            font-size: 12px;
            padding-top: 10px;
            color: #fff;
            opacity: 1;
            right: 0;
            bottom: 75px;
            background: transparent;
            border: 1px solid #fff;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

        .swiper-pagination-bullet-active {
            color: #fff;
            background: #e8bc70;
        }
    }
    /* &::after {
    content: "";
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background-color: #000;
    opacity: 0.4;
  } */
}

.about {
    background-color: var(--backgroundColor);
    height: auto;
    width: 100%;
    position: relative;
    z-index: 100;
    padding: 120px 42px;

    .about__container {
        width: 100%;
        padding: 0 180px;
        display: flex;
        /* align-items: center; */
        justify-content: center;
        gap: 40px;

        .about__year {
            p {
                color: #000b36;
            }
        }

        .about__heading {
            h1 {
                color: #000;
                font-size: 28px;
                /* font-weight: 600; */
            }
        }
    }

    .about__info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 150px;
        /* margin: 78px 0; */
        /* padding: 0 38px; */

        .about_info_container {
            h1 {
                font-size: 72px;
                font-weight: 600;
                color: #000;
            }
            p {
                font-size: 24px;
                font-weight: 500;
                color: #000;
            }
            span {
                font-size: 16px;
                color: #828487;
                font-weight: 500;
            }
            .about__info_img {
                margin-top: 60px;
                display: flex;
                align-items: center;
                position: relative;
                img {
                    width: 50px;
                    height: 50px;

                    object-fit: contain;
                }

                .image-ab1 {
                    position: absolute;
                    border: 3px solid #fff;
                    border-radius: 10px;
                }
                .image-ab2 {
                    position: absolute;
                    left: 30px;
                    border: 3px solid #fff;
                    border-radius: 10px;
                }
                .image-ab3 {
                    position: absolute;
                    left: 60px;
                    border: 3px solid #fff;
                    border-radius: 10px;
                }
            }
        }
        .container_2,
        .container_4 {
            margin-top: 100px !important;
        }
        .container_1,
        .container_3 {
            img {
                border: 3px solid #fff !important;
                border-radius: 50% !important;
            }
        }
    }
}

.projects {
    background-color: var(--backgroundColor);
    height: auto;
    width: 100%;
    position: relative;
    z-index: 100;
    padding: 0px 42px;
    padding-bottom: 140px;

    /* .project__th {
    font-size: 16px;
    color: #000;
    padding: 35px 0;
  } */

    .project__heading {
        padding-top: 35px;
        font-size: 72px;
        color: #021049;
        /* margin-top: 30px; */
        font-weight: 600;
    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide.project__slide {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 50px 0;

        .project__contents {
            margin-top: 24px;
            h1 {
                font-size: 24px;
                color: #000;
                font-weight: 600;
            }
            p {
                margin-top: 10px;
                color: #828487;
                font-size: 16px;
                font-weight: 400;
            }
            span {
                margin-top: 10px;
                color: #828487;
                font-size: 16px;
                font-weight: 400;
            }
        }
    }

    .projects__btn {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 20px;
        padding-right: 150px;
        h1 {
            font-size: 24px;
            font-weight: 600;
            a {
                color: #000;
            }
        }
        .projects__btn_arrow_icon {
            img {
                /* border: 1px solid #000; */
                background-color: #fff;
                border-radius: 50%;
                padding: 5px;
                width: 30px;
                height: 30px;
            }
        }
    }

    .swiper-slide.project__slide img {
        display: block;
        width: 450px;
        height: 610px;
        object-fit: cover;
        border-radius: 10px;
    }
}

.process {
    height: auto;
    width: 100%;
    position: relative;
    z-index: 100;
    .process__bg {
        padding: 0 42px;
        background-color: var(--backgroundColor);
        background-image: url("../../images/process_bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;

        h1 {
            font-size: 24px;
            color: #fff;
            font-weight: 600;
            padding-top: 40px;
        }
        p {
            font-weight: 400;
            font-size: 22px;
            color: #828487;
            width: 25%;
            margin-top: 20px;
        }
    }

    .process__container {
        padding-bottom: 140px;
        .process__mainContainer {
            margin-top: 30px;
            h1 {
                font-size: 64px;
                font-weight: 700;
            }
        }
    }

    .process_content {
        img {
            /* height: 100px; */
            margin-top: 12px;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
        }

        .process__number {
            color: #828487;
            font-size: 22px;
        }

        .process__info {
            h1 {
                font-size: 24px;
                text-wrap: nowrap;
            }
            p {
                font-size: 14px;
                width: 100%;
            }

            .p__process_content_para {
                color: #fff;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100px;
            }
        }
    }
}

/* .team {
  background-color: var(--backgroundColor);
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 100;
  padding: 0 42px;
} */

.envirnoment {
    width: 100%;
    position: relative;
    z-index: 100;
    height: auto;
    .environment__bg {
        display: flex;
        align-items: center;
        overflow: hidden !important;
        img {
            width: 450px !important;
            height: 100vh;
            object-fit: cover;
        }

        h1 {
            color: #fff;
        }
    }

    .environment_th {
        position: absolute;
        top: 25%;
        left: 25%;
        h2 {
            font-size: 26px;
            color: #fff;
            font-weight: 500;

            span {
                color: var(--paragraphText);
            }
        }
    }

    .environment__heading {
        position: absolute;
        top: 40%;
        padding: 0 40px;
        .environment__uppper_text,
        .environment__lower_text {
            font-weight: 700;
            color: #fff;
            font-size: 120px;
        }

        .environment__lower_text {
            line-height: 120px;
            width: 100%;
            position: absolute;
            text-wrap: nowrap;
            left: 50%;
        }
    }

    .environment__bg::after {
        position: absolute;
        content: "";
        height: 100vh;
        width: 100%;
        background-color: #000;
        opacity: 0.3;
    }
}

.clients {
    background-color: var(--light);
    /* height: 100vh; */
    /* min-height: 600px; */
    width: 100%;
    position: sticky;
    z-index: 100;
    padding: 0 42px;

    .clients_head {
        h1 {
            font-size: 24px;
            color: #000;
            font-weight: 700;
            padding-top: 40px;
        }
        p {
            font-weight: 400;
            font-size: 22px;
            color: #828487;
            width: 25%;
            margin-top: 20px;
        }
    }

    .client__slide {
        margin-top: 50px;
    }

    .client_content {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        img {
            width: 125px;
            height: 125px;
        }
        h1 {
            font-size: 28px;
            color: #000;
            font-weight: 600;
            margin: 10px;
        }
        p {
            font-size: 16px;
            color: #828487;
        }
    }

    .client__desc {
        width: 100%;
        margin-top: 60px;
        h1 {
            font-size: 28px;
            color: #000;
            font-weight: 600;
        }
        p {
            font-size: 18px;
            color: #828487;
            font-weight: 500;
            width: 80%;
            margin-top: 36px;
        }
        &::after {
            content: "";
            position: absolute;
            top: -50px;
            left: 34%;
            background: url("/assets/images/quotes.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            width: 50px;
            height: 50px;
        }
    }

    .clients_swiper {
        position: relative;
        min-height: 600px;

        .swiper-button-prev {
            background: url("./assets/images/arrow.svg");
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }

        .swiper-button-prev.client-prev {
            position: absolute;
            left: 35%;
            top: 60%;
            background-color: #e8bc70;
            padding: 25px;
            width: 25px;
            height: 25px;
            color: #fff;
            font-size: 20px;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }
        .swiper-button-next.client-next {
            position: absolute;
            left: 40%;
            top: 60%;
            background-color: #e8bc70;
            padding: 25px;
            width: 25px;
            height: 25px;
            color: #fff;
            font-size: 20px;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 18px !important;
            text-transform: none !important;
            letter-spacing: 0;
            font-variant: initial;
            line-height: 1;
        }
    }
}

/* PROJECTS PAGE */

.projects-main-container {
    position: relative;
    padding: 120px 42px;

    .project__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        h1 {
            font-size: 48px;
        }

        .project__selector {
            .form-select {
                &:focus {
                    border: 1px solid !important;
                    outline: none;
                    box-shadow: none;
                }
            }
        }
    }

    .projects__container {
        .project-content {
            margin: 50px 0;
            .project-imgbg {
                overflow: hidden;
                display: inline-block;
                border-radius: 10px;
                img {
                    width: 100%;
                    height: auto;
                    transform: scale(1);
                    transition: transform 0.5s ease;
                    transform-origin: center center;
                }

                &:hover img {
                    transform: scale(1.1);
                    cursor: pointer;
                    -webkit-transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -ms-transform: scale(1.1);
                    -o-transform: scale(1.1);
                }
            }
        }

        .project-heading {
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .project-heading-content {
                h1 {
                    font-size: 28px;
                    text-transform: uppercase;
                }
            }

            .project-detail {
                display: flex;
                align-items: center;
                gap: 10px;
                p {
                    color: #828487;
                    text-transform: uppercase;
                    font-weight: normal;
                }
            }
        }
    }
}

/* PROJECTS DETAILS */

.projectDetails {
    padding: 120px 42px;
    .projectDetail__container {
        .project-imgbg {
            position: relative;
            img {
                border-radius: 10px;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
            }
        }

        .project-heading {
            .project-heading-content {
                position: absolute;
                top: 10px;
                left: 50%;
                transform: translate(-50%, 50%);
                -webkit-transform: translate(-50%, 50%);
                -moz-transform: translate(-50%, 50%);
                -ms-transform: translate(-50%, 50%);
                -o-transform: translate(-50%, 50%);

                h1 {
                    color: #fff;
                    text-align: center;
                    font-size: 72px;
                }
                p {
                    text-align: center;
                    color: #828487;
                    text-transform: uppercase;
                    font-weight: normal;
                    margin-bottom: 10px;
                }
            }

            .project-detail {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 200px;
                position: absolute;
                bottom: 10%;
                left: 50%;
                transform: translate(-50%, 50%);
                -webkit-transform: translate(-50%, 50%);
                -moz-transform: translate(-50%, 50%);
                -ms-transform: translate(-50%, 50%);
                -o-transform: translate(-50%, 50%);
                .project-detail-content {
                    p {
                        text-align: center;
                        font-weight: normal;
                        margin-bottom: 10px;
                        font-size: 18px;
                    }
                    h1 {
                        text-wrap: nowrap;
                        color: #fff;
                    }
                }
            }
        }
    }
}

.project__info_s {
    .project_info {
        h1 {
            font-size: 48px;
            font-weight: normal;
        }
        p {
            font-size: 22px;
            font-weight: normal;
            color: #828487;
        }
    }
}

.gallery {
    .gallery_container {
        padding: 0px 42px !important;
        .gallery_heading {
            margin: 50px;
            h1 {
                font-size: 48px;
                font-weight: normal;
                text-align: center;
            }
        }

        img {
            height: auto;
            width: 100%;
            cursor: pointer;
        }
    }
}

/* SERVICES PAGE */

.services__container {
    padding: 120px 40px;
    .services__header {
        margin-bottom: 20px;
        text-align: center;
        /* text-transform: uppercase; */
    }
    .services {
        /* padding-block: 2rem; */
        display: grid;
        grid-template-columns: 50% 1fr;
        /* gap: 20px; */
        align-items: start;

        .services__left {
            position: sticky;
            top: 2rem;
            overflow: hidden;

            img {
                transform: scale(1);
                transition: transform 0.5s ease;
                transform-origin: center center;

                /* &:hover {
                    transform: scale(1.1);
                    cursor: pointer;
                    -webkit-transform: scale(1.1);
                    -moz-transform: scale(1.1);
                    -ms-transform: scale(1.1);
                    -o-transform: scale(1.1);
                } */
            }

            .row {
                padding-right: 0 !important;
                padding-left: 0 !important;
            }
        }

        .services__right {
            padding: 30px 50px;

            .services__heading {
                font-size: 48px;
            }
            .services__desc,
            .services__descTwo {
                font-size: 16px;
                color: #828487;
                font-weight: normal;
                margin: 10px 0;
            }

            h6 {
                margin-top: 75px;
                /* width: 100%; */
                position: relative;
                font-size: 14px;
                color: #828487;
                text-transform: uppercase;
                font-weight: normal;

                &::after {
                    content: "";
                    position: absolute;
                    bottom: -10px;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background: #e7e7e7;
                }
            }

            .commerical__services {
                .infrastructure__services {
                    margin: 20px 0;

                    p {
                        color: #828487;
                        font-weight: normal;
                        margin: 10px 0;
                    }

                    ul {
                        li {
                            margin: 0 10px;
                            list-style-type: "-";
                        }
                    }
                }
            }
        }
    }
}

/* ABOUT PAGE  */
.about__page {
    position: relative;
    z-index: 100;
    padding: 120px 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;

    .about__p_heading {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;

        h1 {
            font-size: 48px;
            color: #000b36;
            margin-bottom: 20px;
            white-space: nowrap;
        }

        p {
            font-weight: normal;
            color: #828487;
            margin: 0 auto;
            max-width: 500px;
            font-size: 18px;
        }
    }

    .about__overview {
        width: 100%;
        padding: 120px 42px;

        .overview__top {
            .overview_tHeading {
                /* font-size: 48px; */
                color: #000b36;
                text-align: start;
            }
            .overview_desc {
                color: #828487;
                font-weight: normal;
                text-align: start;
                margin: 20px 0;
                font-size: 18px;
            }
        }

        .overview__bottom {
            text-align: start;
            align-self: flex-start;
            width: 100%;

            .overview_desc {
                color: #828487;
                font-weight: normal;
                text-align: start;
                font-size: 16px;
                text-wrap: nowrap;
            }
        }

        .imgContainer {
            img {
                margin: 10px 0;
                width: 420px;
                height: 240px;
                object-fit: cover;
                border-radius: 10px;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
            }
        }
        .imgContainer.last__img img {
            height: 500px;
        }
    }

    .our__team {
        position: relative;
        .team__heading {
        }
        .team__desc {
            padding: 0 42px;
            p {
                color: #828487;
                font-weight: normal;
                text-align: right;
                font-size: 16px;
            }
        }
        .team__member {
            position: relative;
            margin: 50px;
            .member__title {
                position: relative;
                overflow: hidden;
                border-radius: 10px;
                img {
                    transform: scale(1);
                    transition: transform 0.5s ease;
                    transform-origin: center center;
                    border-radius: 10px;
                    &:hover {
                        transform: scale(1.1);
                        cursor: pointer;
                        -webkit-transform: scale(1.1);
                        -moz-transform: scale(1.1);
                        -ms-transform: scale(1.1);
                        -o-transform: scale(1.1);
                    }
                }
                h3 {
                    color: #fff;
                    position: absolute;
                    bottom: 10px;
                    margin: auto 0;
                    text-align: center;
                    left: 75px;
                }
            }
        }
    }

    .member-details {
        padding: 0 50px;
        text-align: left;
        margin-bottom: 30px;

        h4 {
            color: #777;
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        p {
            color: #828487;
            font-weight: normal;
            text-align: start;
            font-size: 16px;
        }
    }

    .member__title.active {
        transform: scale(1.05);
        transition: 0.3s ease;
        opacity: 1;
    }
    .member__title img {
        opacity: 1;
        transition: 0.3s ease;
    }
    .member__title.active img {
        opacity: 1;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    #memberDetailsContainer::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: -50px;
        width: 200%;
        height: 1px;
        background-color: #e8bc70;
    }

    .mission__vision-header {
        margin-top: 50px;
        padding: 0px 42px;

        .team__heading {
            h1 {
                text-align: start;
            }
        }

        .team__desc {
            p {
                color: #828487;
                font-weight: normal;
                text-align: start;
                font-size: 16px;
            }
        }
    }

    .mission__vision_swiper {
        margin-top: 50px;

        .mission__text {
            text-align: start;
            margin-bottom: 10px;
            padding: 0 20px;
            h3 {
                margin-bottom: 10px;
            }
            p {
                color: #828487;
                font-weight: normal;
                text-align: start;
                font-size: 16px;
            }
        }

        .mission__img-container {
            img {
                width: 100%;
                height: 350px;
                object-fit: cover;
                border-radius: 10px;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
            }
        }

        .swiper.mission_swiper {
            position: relative;
            /* height: 450px; */
            .swiper-button-prev.mission-prev {
                position: absolute;
                top: 50px;
                left: 0%;
                background-color: #e8bc70;
                padding: 25px;
                width: 25px;
                height: 25px;
                color: #fff;
                font-size: 20px;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
            }
            .swiper-button-next.mission-next {
                position: absolute;
                top: 50px;
                left: 5%;
                background-color: #e8bc70;
                padding: 25px;
                width: 25px;
                height: 25px;
                color: #fff;
                font-size: 20px;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
            }

            .swiper-button-next:after,
            .swiper-button-prev:after {
                font-size: 18px !important;
                text-transform: none !important;
                letter-spacing: 0;
                font-variant: initial;
                line-height: 1;
            }
        }
    }
}

.certification {
    padding: 0 42px;
    .certification__heading {
        padding: 0 52px;
        margin-bottom: 50px;
    }
    .scrolling-text {
        overflow: hidden;
        width: 100%;
        /* height: 100vh; */
        display: flex;
        align-items: center;
        margin-bottom: 50px;
    }
    .scrolling-text .rail {
        display: flex;
    }
    .scrolling-text .rail {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        img {
        }
    }
    .scrolling-text .rail h4 {
        white-space: nowrap;
        font-size: 100px;
        font-weight: 900;
        letter-spacing: ls(120);
        line-height: 1em;
        margin: 0 30px 0 0;
        color: var(--color-surface-white);
    }
}

/* SECTOR PAGE */

.sector__container {
    position: relative;
    padding: 120px 40px;
    .sector__header {
        margin-bottom: 20px;
        text-align: center;
        /* text-transform: uppercase; */
    }

    .sector__details_s {
        margin: 50px 0;
        .sector__left_s {
            .sector__left_content {
                .slc_heading {
                    margin: 10px 0;
                }
            }
            p {
                color: #828487;
                font-weight: normal;
                text-align: start;
                font-size: 16px;
            }
        }

        .sector__middle_s {
            img {
                width: 100%;
                height: 380px;
                object-fit: cover;
            }
        }

        .sector__points {
            p {
                color: #828487;
                font-weight: normal;
                text-align: start;
                font-size: 16px;
            }

            ul {
                li {
                    margin: 10px;
                }
            }
        }
    }
}

/* SUSTAINABILITY */

.sustainability {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    height: 100vh;
    background: url("../../images/sustain_banner.jpg");
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
    /* background-color: #021049;
  color: #fff;
  height: 100vh; */

    .sustainability__hero {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* height: 100vh; */
        h1 {
            margin-top: 50px;
            text-align: center;
            font-size: 76px;
            /* color: #021049; */
            color: #fff;
            text-transform: capitalize;
        }
        p {
            margin-top: 20px;
            width: 50%;
            color: #000;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }

        .sustain_btn {
            margin-top: 30px;

            .var-button-container {
                text-decoration: none;
                padding: 0;
                margin: 0;
            }

            .var-button-wrapper {
                position: relative;
                display: flex;
                height: 52px;
                padding: 0px 24px;
                align-items: center;
                gap: 4px;
                overflow: hidden;
                place-self: center;
                border: 1.3px solid transparent;

                &::after {
                    content: "";
                    position: absolute;
                    left: -290px;
                    bottom: -264px;
                    width: 250px;
                    height: 250px;
                    aspect-ratio: 1/1;
                    transition: all 0.6s ease-in-out;
                }

                .var-button-text {
                    font-family: "Geist", sans-serif;
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 16px;
                    text-transform: uppercase;
                    transition: all 0.8s ease-in-out;
                    z-index: 1;
                }

                .var-button-icon {
                    display: flex;
                    flex-direction: column;
                    position: relative;
                    overflow: hidden;
                    z-index: 1;
                    translate: 0px;
                    transition: all 0.8s ease-in-out;

                    svg {
                        width: 16px;
                        height: 16px;
                    }

                    .var-button-icon-2 {
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        opacity: 0;
                        translate: -14px 14px;
                        transition: all 0.8s ease-in-out;
                    }

                    .var-button-icon-1 {
                        translate: 0px 0px;
                        opacity: 1;
                        transition: all 0.8s ease-in-out;
                    }
                }

                &:hover {
                    .var-button-text {
                        scale: 1.04;
                        color: #d103d1;
                    }

                    &::after {
                        bottom: -97px;
                        left: -26px;
                    }

                    .var-button-icon {
                        translate: 3px;

                        .var-button-icon-1 {
                            translate: 14px -14px;
                            opacity: 0;
                        }

                        .var-button-icon-2 {
                            opacity: 1;
                            translate: 0px 0px;
                        }
                    }
                }
            }

            /* Varient 3 */
            .var-button-wrapper.var-btn-variant-3 {
                background: #003f72;
                /* border-radius: 100px; */
                border: 1.3px solid transparent;
                &::after {
                    background-color: #f4f7ed;
                    border-radius: 500px;
                    left: 250px;
                    bottom: -270px;
                }
                .var-button-text {
                    color: #fff;
                    scale: 1;
                }
                .var-button-icon {
                    svg.var-button-icon-1 * {
                        stroke: white;
                        transition: all 0.8s ease-in-out;
                    }
                    svg.var-button-icon-2 * {
                        stroke: #edcb90;
                        transition: all 0.8s ease-in-out;
                    }
                }
                &:hover {
                    .var-button-text {
                        color: #edcb90;
                        scale: 1.04;
                    }
                    &::after {
                        left: -26px;
                        bottom: -97px;
                    }
                }
            }
        }
    }
}

.sustainability_commitment {
    position: relative;
    padding: 40px;
    .commitment__container {
        h3 {
            font-size: 48px;
            color: #021049;
        }
        p {
            margin-top: 20px;
            width: 60%;
            color: #828487;
            font-weight: normal;
            /* text-align: center; */
            font-size: 16px;
        }
        p.commitment__para {
            margin: 10px 0;
            width: 100%;
            color: #828487;
            font-weight: normal;
            /* text-align: center; */
            font-size: 16px;
        }

        .sustain-icons {
            /* padding: 10px; */
            /* margin-bottom: 20px;
      object-fit: cover;
      border-radius: 50px; */
            /* margin: 30px 0; */
            border-top: 1px solid #021049;
            img {
                margin: 30px 0;
                padding: 10px;
                background-color: #e8bc70;
                width: 55px;
                height: 55px;
                border-radius: 50px;
                -webkit-border-radius: 50px;
                -moz-border-radius: 50px;
                -ms-border-radius: 50px;
                -o-border-radius: 50px;
            }
        }
    }

    .ourCommitment__img-container {
        .image-wrapper {
            position: relative;
            display: flex;
            gap: 10px;
            width: 100%;
            height: 500px; /* adjust as needed */
            overflow: hidden;

            .img-box {
                position: relative;
                flex: 1;
                transition: all 0.6s ease;
                overflow: hidden;

                img {
                    border-radius: 20px;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: all 0.6s ease;
                    /*background-color: #000;
          */ /*opacity: 0.9;
          */
                    -webkit-transition: all 0.6s ease;
                    -moz-transition: all 0.6s ease;
                    -ms-transition: all 0.6s ease;
                    -o-transition: all 0.6s ease;
                    -webkit-border-radius: 20px;
                    -moz-border-radius: 20px;
                    -ms-border-radius: 20px;
                    -o-border-radius: 20px;
                }

                &:hover {
                    flex: 1.5;
                    cursor: pointer;
                }
            }

            /* when one image is hovered, shrink others */
            &:has(.img-box:hover) .img-box:not(:hover) {
                flex: 0.5; /* shrink non-hovered images */
                opacity: 0.8;
            }

            .ourCommitment__img-content {
                overflow: hidden;
                position: absolute;
                text-wrap: wrap;
                top: 20%;
                padding: 50px;
                h1 {
                    color: #fff;
                    font-weight: 800;
                }
                p {
                    height: 100%;
                    color: #fff;
                    /* position: absolute; */
                    /* overflow: hidden; */
                    text-wrap: wrap;
                    font-size: 18px;
                }
                .sustain-icons {
                    img {
                        /* margin: 30px 0; */
                        padding: 15px;
                        background-color: #e8bc70;
                        width: 65px;
                        height: 65px;
                        border-radius: 50px;
                        -webkit-border-radius: 50px;
                        -moz-border-radius: 50px;
                        -ms-border-radius: 50px;
                        -o-border-radius: 50px;
                    }
                }
            }
        }
    }
}

.sustainability_solutions {
    position: relative;
    padding: 40px;
    .commitment__container {
        h3 {
            font-size: 48px;
            color: #021049;
        }
        p {
            margin-top: 20px;
            width: 60%;
            color: #828487;
            font-weight: normal;
            /* text-align: center; */
            font-size: 16px;
        }
        p.commitment__para {
            margin: 10px 0;
            width: 100%;
            color: #828487;
            font-weight: normal;
            /* text-align: center; */
            font-size: 16px;
        }
    }
    .solution_container {
        padding: 30px 0;
        border-bottom: 1px solid #e8bc70;
        /* display: flex; */
        /* align-items: center; */
        /* gap: 15px; */

        .solutions__img {
            img {
                /* opacity: 0; */
                /* display: none; */
                transform: scale(0.95);
                transition: all 0.4s ease-in-out;
            }
        }

        .soltion__head {
            p {
                color: #828487;
                font-weight: normal;
                margin-top: 10px;
            }
        }
    }
}

.careers {
    position: relative;
    padding: 120px 40px;

    .careers__container {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        h1 {
            text-align: center;
        }
        h4 {
            margin-top: 10px;
        }
        p {
            margin-top: 10px;
            width: 70%;
            color: #828487;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }

    .careers__roles {
        h4 {
            text-transform: uppercase;
        }
        a {
            color: #021049;
            .var-button-icon {
                color: #000 !important;
            }
        }
    }
}

.contact {
    position: relative;
    padding: 120px 42px;

    .card {
        background-color: #021049;
        color: #fff;
        h5 {
            color: #edcb90;
        }

        a {
            color: #fff;

            i {
                color: #fff;
            }
            /* border: 1px solid #000; */
        }
    }

    .contact__container {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        h1 {
            text-align: center;
        }
        p {
            margin-top: 20px;
            width: 70%;
            color: #828487;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }

    .contact_getintouch {
        margin-bottom: 20px;

        p {
            width: 100%;
            color: #828487;
            font-weight: normal;
            /* text-align: center; */
            font-size: 16px;
        }
    }

    button.contact__btn {
        background-color: #021049;
        border: none;
    }
    .contact__map {
        margin-top: 50px;
        iframe {
            width: 100%;
            height: 75vh;
        }
    }
}

.footer {
    height: 100vh !important;
    width: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    /* position: fixed; */
    bottom: 0;
    z-index: 0;
    /* position: sticky; */

    .footer___bg {
        background: url("/assets/images/footerbg.png");
        height: 100vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        .footer_logo {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
                margin-top: 120px;
                width: 220px;
                height: 220px;
                object-fit: cover;
            }
        }

        .footer__list {
            margin-top: 30px;
            ul {
                li {
                    margin: 10px 0;
                    a {
                        color: #fff;
                        font-size: 18px;
                    }
                }
            }

            .footer__title {
                font-size: 24px;
                color: #edcb90;
                font-weight: 800;
            }

            .footer__text {
                margin-top: 10px;
                span {
                    font-size: 18px;
                }
                a {
                    color: #fff;
                    font-size: 18px;
                }
            }

            .footer__social {
                i {
                    font-size: 24px;
                }
            }
        }
    }
}

/* ################## CAREERS PAGE */
/* OPEN OPOSITIONS PAGE DESIGN END HERE */
.careers {
    p {
        width: 100%;
        color: #828487;
        font-weight: normal;
        /* text-align: center; */
        font-size: 16px;
    }
    .jobinfo-wrapper {
        background-color: #e7e7e7;
        padding: 30px;
        border-radius: 12px;
        position: sticky;
        top: 140px;
    }

    .jobinfo-item {
        margin-bottom: 20px;
    }

    .jobinfo-label {
        font-size: 14px;
        color: #555;
        font-weight: 500;
    }

    .jobinfo-value {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

    .jobinfo-apply-btn {
        display: inline-block;
        padding: 12px 24px;
        background: #000;
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
    }
}

.apply-job {
    padding: 120px 42px;
    .careers__container {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        h1 {
            text-align: center;
        }
        h4 {
            margin-top: 10px;
        }
        p {
            margin-top: 10px;
            width: 70%;
            color: #828487;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }
    p {
        width: 100%;
        color: #828487;
        font-weight: normal;
        /* text-align: center; */
        font-size: 16px;
    }
}
/* ############################### */

/* INDUSTRIES */
.industries {
    padding: 120px 42px;

    .industries__container {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        h1 {
            text-align: center;
        }
        h4 {
            margin-top: 10px;
        }
        p {
            margin-top: 10px;
            width: 70%;
            color: #828487;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }

    .product-item {
        position: relative;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
    }

    .product-details {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: #fff;
        overflow: hidden;
        transition: height 0.6s ease-in-out;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .product-item.active .product-details {
        height: 100vh;
        padding: 50px;
    }

    .details-content {
        text-align: center;
        max-width: 800px;
    }

    .details-content img {
        width: 100%;
        border-radius: 10px;
        margin: 20px 0;
    }

    .close-btn {
        background: #000;
        color: #fff;
        padding: 10px 25px;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        transition: 0.3s;
    }

    .close-btn:hover {
        background: #333;
    }
}

/* RESPONSIVENESS */

@media (max-width: 576px) {
    .hero__container {
        width: 100%;
        background-color: transparent;
        padding: 10px;
        position: fixed;
        z-index: 1000;
        nav {
            .navbarLogo img {
                width: 220px;
                height: auto;
            }

            .navbarMain {
                position: relative;
                right: 20%;

                ul {
                    display: none;
                    align-items: center;
                    justify-self: center;
                    gap: 10px;
                }
            }

            .hamburgerMenu {
                cursor: pointer;
                font-size: 28px;
                span {
                    i {
                        color: #000;
                    }
                }
            }
        }
    }

    .hero__container.scrolled {
        .navbarMain {
            position: relative;
            right: 0;
            ul {
                display: none;
            }
        }
    }

    .about {
        padding: 42px;
        .about__container {
            width: 100%;
            padding: 0px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about__info {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            .about_info_container {
            }
            .container_2,
            .container_4 {
                margin-top: 0px !important;
            }
        }
    }

    .projects {
        .project__heading {
            padding-top: 35px;
            font-size: 10vw;
        }

        .swiper-slide.project__slide img {
            display: block;
            width: 450px;
            height: 610px;
            object-fit: cover;
            border-radius: 10px;
        }
    }

    .process {
        height: auto;
        width: 100%;
        position: relative;
        z-index: 100;
        .process__bg {
            p {
                width: 100%;
            }
        }
    }

    .clients {
        .clients_head {
            p {
                width: 100%;
            }
        }

        .client__slide {
            margin-top: 50px;
        }

        .client_content {
            margin-top: 20px;
        }

        .client__desc {
            width: 100%;
            margin-top: 40px;
            margin-bottom: 40px;

            p {
                width: 100%;
                margin-top: 10px;
            }
            &::after {
                display: none;
            }
        }

        .clients_swiper {
            .swiper-button-prev.client-prev {
                position: absolute;
                left: 0%;
                top: 30%;
            }
            .swiper-button-next.client-next {
                position: absolute;
                left: 85%;
                top: 30%;
            }
        }
    }

    .envirnoment {
        width: 100%;
        height: auto;
        .environment__bg {
            overflow: hidden !important;
            img {
                width: calc(450px / 3) !important;
                height: 100vh;
                object-fit: cover;
            }
        }

        .environment_th {
            position: absolute;
            top: 20%;
            left: 10%;
        }

        .environment__heading {
            position: absolute;
            top: 50%;
            padding: 0 10px;
            .environment__uppper_text,
            .environment__lower_text {
                font-weight: 700;
                color: #fff;
                font-size: 9vw;
            }

            .environment__lower_text {
                line-height: 80px;
                width: 100%;
                position: absolute;
                text-wrap: nowrap;
                left: 30%;
            }
        }

        .environment__bg::after {
            position: absolute;
            content: "";
            height: 100vh;
            width: 100%;
            background-color: #000;
            opacity: 0.3;
        }
    }

    .projects-main-container {
        .project__header {
            display: flex;
            flex-direction: column;
            .project__selector {
                width: 100% !important;
                .form-select {
                    width: 100% !important;
                    margin-top: 10px;
                }
            }
        }

        .projects__container {
            .project-content {
                margin: 20px 0;
                .project-imgbg {
                    overflow: hidden;
                    display: inline-block;
                    border-radius: 10px;
                    img {
                        width: 100%;
                        height: auto;
                        transform: scale(1);
                        transition: transform 0.5s ease;
                        transform-origin: center center;
                    }

                    &:hover img {
                        transform: scale(1.1);
                        cursor: pointer;
                        -webkit-transform: scale(1.1);
                        -moz-transform: scale(1.1);
                        -ms-transform: scale(1.1);
                        -o-transform: scale(1.1);
                    }
                }
            }

            .project-heading {
                padding: 15px;
                display: flex;
                align-items: center;
                flex-direction: column;

                .project-heading-content {
                    h1 {
                        font-size: 18px;
                        text-transform: uppercase;
                    }
                }

                .project-detail {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    p {
                        color: #828487;
                        text-transform: uppercase;
                        font-weight: normal;
                    }
                }
            }
        }
    }

    .sustainability {
        position: relative;
        padding: 120px 20px;
        width: 100%;
        height: 100%;

        .sustainability__hero {
            h1 {
                margin-top: 50px;
                text-align: center;
                font-size: 48px;
            }
            p {
                width: 100%;
            }
        }
    }

    .sustainability_commitment {
        position: relative;
        padding: 20px;
        .commitment__container {
            h3 {
                font-size: 48px;
                color: #021049;
            }
            p {
                margin-top: 20px;
                width: 100%;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
            }
        }

        .ourCommitment__img-container {
            .image-wrapper {
                position: relative;
                display: flex;
                gap: 10px;
                width: 100%;
                height: 500px; /* adjust as needed */
                overflow: hidden;

                .ourCommitment__img-content {
                    overflow: hidden;
                    position: absolute;
                    text-wrap: wrap;
                    top: 10%;
                    padding: 20px;
                    p {
                        height: 100%;
                        color: #fff;
                        /* position: absolute; */
                        /* overflow: hidden; */
                        text-wrap: wrap;
                        font-size: 18px;
                    }
                    .sustain-icons {
                        img {
                            /* margin: 30px 0; */
                            padding: 10px;
                            background-color: #e8bc70;
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }

    .sustainability_solutions {
        position: relative;
        padding: 40px;
        .commitment__container {
            p {
                margin-top: 20px;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
        }
        .solution_container {
            padding: 10px 0;
        }
    }

    /* ABOUT PAGE  */
}

@media (min-width: 577px) and (max-width: 767px) {
    .hero__container {
        width: 100%;
        background-color: transparent;
        padding: 10px;
        position: fixed;
        z-index: 1000;
        nav {
            .navbarLogo img {
                width: 220px;
                height: auto;
            }

            .navbarMain {
                position: relative;
                right: 20%;

                ul {
                    display: none;
                    align-items: center;
                    justify-self: center;
                    gap: 10px;
                }
            }

            .hamburgerMenu {
                cursor: pointer;
                font-size: 28px;
                span {
                    i {
                        color: #000;
                    }
                }
            }
        }
    }

    .hero__container.scrolled {
        .navbarMain {
            position: relative;
            right: 0;
            ul {
                display: none;
            }
        }
    }

    .about {
        padding: 42px;
        .about__container {
            width: 100%;
            padding: 0px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about__info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            .about_info_container {
            }
            .container_2,
            .container_4 {
                margin-top: 0px !important;
            }
        }
    }

    .projects {
        padding-bottom: 40px;
        .project__heading {
            padding-top: 35px;
            font-size: 10vw;
        }

        .swiper-slide.project__slide img {
            display: block;
            width: 100%;
            height: 610px;
            object-fit: cover;
            border-radius: 10px;
        }

        .projects__btn {
            display: flex;
            align-items: center;
            justify-content: start;
        }
    }

    .process {
        height: auto;
        width: 100%;
        position: relative;
        z-index: 100;
        .process__bg {
            p {
                width: 100%;
            }
        }
    }

    .clients {
        .clients_head {
            p {
                width: 100%;
            }
        }

        .client__slide {
            margin-top: 50px;
        }

        .client_content {
            margin-top: 20px;
        }

        .client__desc {
            width: 100%;
            margin-top: 40px;
            margin-bottom: 40px;

            p {
                width: 100%;
                margin-top: 10px;
            }
            &::after {
                display: none;
            }
        }

        .clients_swiper {
            .swiper-button-prev.client-prev {
                position: absolute;
                left: 0%;
                top: 30%;
            }
            .swiper-button-next.client-next {
                position: absolute;
                left: 85%;
                top: 30%;
            }
        }
    }

    .envirnoment {
        width: 100%;
        height: auto;
        .environment__bg {
            overflow: hidden !important;
            img {
                width: calc(650px / 3) !important;
                height: 100vh;
                object-fit: cover;
            }
        }

        .environment_th {
            position: absolute;
            top: 20%;
            left: 10%;
        }

        .environment__heading {
            position: absolute;
            top: 40%;
            padding: 0 10px;
            .environment__uppper_text,
            .environment__lower_text {
                font-weight: 700;
                color: #fff;
                font-size: 9vw;
            }

            .environment__lower_text {
                line-height: 70px;
                width: 100%;
                position: absolute;
                text-wrap: nowrap;
                left: 30%;
            }
        }

        .environment__bg::after {
            position: absolute;
            content: "";
            height: 100vh;
            width: 100%;
            background-color: #000;
            opacity: 0.3;
        }
    }

    .projects-main-container {
        .project__header {
            display: flex;
            flex-direction: column;
            .project__selector {
                width: 100% !important;
                .form-select {
                    width: 100% !important;
                    margin-top: 10px;
                }
            }
        }

        .projects__container {
            .project-content {
                margin: 20px 0;
                .project-imgbg {
                    border-radius: 10px;
                }
            }

            .project-heading {
                padding: 15px;
                display: flex;
                align-items: center;
                flex-direction: column;

                .project-heading-content {
                    h1 {
                        font-size: 18px;
                        text-transform: uppercase;
                    }
                }
            }
        }
    }

    .sustainability {
        position: relative;
        padding: 120px 20px;
        width: 100%;
        height: 100%;

        .sustainability__hero {
            h1 {
                margin-top: 50px;
                text-align: center;
                font-size: 48px;
            }
            p {
                width: 100%;
            }
        }
    }

    .sustainability_commitment {
        position: relative;
        padding: 20px;
        .commitment__container {
            h3 {
                font-size: 48px;
                color: #021049;
            }
            p {
                margin-top: 20px;
                width: 100%;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
            }
        }

        .ourCommitment__img-container {
            .image-wrapper {
                position: relative;
                display: flex;
                gap: 10px;
                width: 100%;
                height: 500px; /* adjust as needed */
                overflow: hidden;

                .ourCommitment__img-content {
                    overflow: hidden;
                    position: absolute;
                    text-wrap: wrap;
                    top: 10%;
                    padding: 20px;
                    p {
                        height: 100%;
                        color: #fff;
                        /* position: absolute; */
                        /* overflow: hidden; */
                        text-wrap: wrap;
                        font-size: 18px;
                    }
                    .sustain-icons {
                        img {
                            /* margin: 30px 0; */
                            padding: 10px;
                            background-color: #e8bc70;
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }

    .sustainability_solutions {
        position: relative;
        padding: 40px;
        .commitment__container {
            p {
                margin-top: 20px;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
        }
        .solution_container {
            padding: 10px 0;
        }
    }
}

@media (min-width: 767px) and (max-width: 991px) {
    .hero__container {
        width: 100%;
        background-color: transparent;
        padding: 10px;
        position: fixed;
        z-index: 1000;
        nav {
            .navbarLogo img {
                width: 220px;
                height: auto;
            }

            .navbarMain {
                position: relative;
                right: 20%;

                ul {
                    display: none;
                    align-items: center;
                    justify-self: center;
                    gap: 10px;
                }
            }

            .hamburgerMenu {
                cursor: pointer;
                font-size: 28px;
                span {
                    i {
                        color: #000;
                    }
                }
            }
        }
    }

    .hero__container.scrolled {
        .navbarMain {
            position: relative;
            right: 0;
            ul {
                display: none;
            }
        }
    }
    .about {
        padding: 42px;
        .about__container {
            width: 100%;
            padding: 0px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .about__info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 10px;
            .about_info_container {
            }
            .container_2,
            .container_4 {
                margin-top: 0px !important;
            }
        }
    }

    .projects {
        padding-bottom: 40px;
        .project__heading {
            padding-top: 35px;
            font-size: 10vw;
        }

        .swiper-slide.project__slide img {
            display: block;
            width: 100%;
            height: 610px;
            object-fit: cover;
            border-radius: 10px;
        }

        .projects__btn {
            display: flex;
            align-items: center;
            justify-content: start;
        }
    }

    .process {
        height: auto;
        width: 100%;
        position: relative;
        z-index: 100;
        .process__bg {
            p {
                width: 100%;
            }
        }
    }

    .clients {
        .clients_head {
            p {
                width: 100%;
            }
        }

        .client__slide {
            margin-top: 50px;
        }

        .client_content {
            margin-top: 20px;
        }

        .client__desc {
            width: 100%;
            margin-top: 40px;
            margin-bottom: 20px;

            p {
                width: 100%;
                margin-top: 10px;
            }
            &::after {
                display: none;
            }
        }

        .clients_swiper {
            position: relative;
            min-height: 0px;
        }

        .clients_swiper {
            .swiper-button-prev.client-prev {
                position: absolute;
                left: 75%;
                top: 15%;
            }
            .swiper-button-next.client-next {
                position: absolute;
                left: 85%;
                top: 15%;
            }
        }
    }

    .envirnoment {
        width: 100%;
        height: auto;
        .environment__bg {
            overflow: hidden !important;
            img {
                width: calc(100% / 3) !important;
                height: 100%;
                object-fit: cover;
            }
        }

        .environment_th {
            position: absolute;
            top: 10%;
            left: 10%;
        }

        .environment__heading {
            position: absolute;
            top: 30%;
            padding: 0 10px;
            .environment__uppper_text,
            .environment__lower_text {
                font-weight: 700;
                color: #fff;
                font-size: 9vw;
            }

            .environment__lower_text {
                line-height: 70px;
                width: 100%;
                position: absolute;
                text-wrap: nowrap;
                left: 30%;
            }
        }

        .environment__bg::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            background-color: #000;
            opacity: 0.3;
        }
    }

    .sustainability {
        position: relative;
        padding: 120px 20px;
        width: 100%;
        height: 100%;

        .sustainability__hero {
            h1 {
                margin-top: 50px;
                text-align: center;
                font-size: 48px;
            }
            p {
                width: 100%;
            }
        }
    }

    .sustainability_commitment {
        position: relative;
        padding: 20px;
        .commitment__container {
            h3 {
                font-size: 48px;
                color: #021049;
            }
            p {
                margin-top: 20px;
                width: 100%;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
            }
        }

        .ourCommitment__img-container {
            .image-wrapper {
                position: relative;
                display: flex;
                gap: 10px;
                width: 100%;
                height: 500px; /* adjust as needed */
                overflow: hidden;

                .ourCommitment__img-content {
                    overflow: hidden;
                    position: absolute;
                    text-wrap: wrap;
                    top: 10%;
                    padding: 20px;
                    p {
                        height: 100%;
                        color: #fff;
                        /* position: absolute; */
                        /* overflow: hidden; */
                        text-wrap: wrap;
                        font-size: 18px;
                    }
                    .sustain-icons {
                        img {
                            /* margin: 30px 0; */
                            padding: 10px;
                            background-color: #e8bc70;
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }

    .sustainability_solutions {
        position: relative;
        padding: 40px;
        .commitment__container {
            p {
                margin-top: 20px;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
        }
        .solution_container {
            padding: 10px 0;
        }
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .envirnoment {
        width: 100%;
        height: auto;
        .environment__bg {
            overflow: hidden !important;
            img {
                width: calc(100% / 3) !important;
                height: 100%;
                object-fit: cover;
            }
        }

        .environment_th {
            position: absolute;
            top: 10%;
            left: 10%;
        }

        .environment__heading {
            position: absolute;
            top: 30%;
            padding: 0 10px;
            .environment__uppper_text,
            .environment__lower_text {
                font-weight: 700;
                color: #fff;
                font-size: 9vw;
            }

            .environment__lower_text {
                line-height: 70px;
                width: 100%;
                position: absolute;
                text-wrap: nowrap;
                left: 30%;
            }
        }

        .environment__bg::after {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            background-color: #000;
            opacity: 0.3;
        }
    }

    .sustainability {
        position: relative;
        padding: 120px 20px;
        width: 100%;
        height: 100%;

        .sustainability__hero {
            h1 {
                margin-top: 50px;
                text-align: center;
                font-size: 48px;
            }
            p {
                width: 100%;
            }
        }
    }

    .sustainability_commitment {
        position: relative;
        padding: 20px;
        .commitment__container {
            h3 {
                font-size: 48px;
                color: #021049;
            }
            p {
                margin-top: 20px;
                width: 100%;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
            }
        }

        .ourCommitment__img-container {
            .image-wrapper {
                position: relative;
                display: flex;
                gap: 10px;
                width: 100%;
                height: 500px; /* adjust as needed */
                overflow: hidden;

                .ourCommitment__img-content {
                    overflow: hidden;
                    position: absolute;
                    text-wrap: wrap;
                    top: 10%;
                    padding: 20px;
                    p {
                        height: 100%;
                        color: #fff;
                        /* position: absolute; */
                        /* overflow: hidden; */
                        text-wrap: wrap;
                        font-size: 18px;
                    }
                    .sustain-icons {
                        img {
                            /* margin: 30px 0; */
                            padding: 10px;
                            background-color: #e8bc70;
                            width: 50px;
                            height: 50px;
                        }
                    }
                }
            }
        }
    }

    .sustainability_solutions {
        position: relative;
        padding: 40px;
        .commitment__container {
            p {
                margin-top: 20px;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
            p.commitment__para {
                margin: 10px 0;
                width: 100%;
                color: #828487;
                font-weight: normal;
                /* text-align: center; */
                font-size: 16px;
            }
        }
        .solution_container {
            padding: 10px 0;
        }
    }
}

/* @media (min-width: 1201px) and (max-width: 1399.98px) {
   
}


@media (min-width: 1400px) {

}  */
