@import "./variables.css";

body {
    font-family: var(--inter);
    overflow-x: hidden;
}

a {
    color: #000;
}

.form-control:focus {
    border: none !important;
    outline: none !important;
    color: transparent !important;
}

p {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* HEADER  */
.top__header {
    width: 100%;
    height: 6vh;
    background-color: #f29d0b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;

    .social__logo {
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
        gap: 20px;

        .social_icon {
            i {
                color: white;
            }
        }
    }

    .header__register {
        display: flex;
        gap: 20px;

        .register__links {
            a {
                color: #fff !important;
            }
        }
    }
}


.hero__container {
    width: 100%;
    /* background-color: #8fc0e9; */
    background-color: #003f72;
    /* background-color: #fff; */
    /* background-color: #/; */
    padding: 10px 40px;
    position: fixed;
    position: relative;
    z-index: 20000;

    nav {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .navbarLogo img {
            width: 250px;
            height: auto;
        }

        .navbarMain {
            position: relative;
        }

        .navbarMain ul {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .navbarMain ul li {
            position: relative;
        }

        .navbarMain ul li a {
            color: #fff;
            font-weight: normal;
            text-decoration: none;
            padding: 10px 0;
        }

        .navbarMain ul li a:hover {
            color: #fff;
        }

        .navbarMain ul li ul.dropdown {
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 0px;
            top: 60px;
            left: -50px;
            min-width: 180px;
            background: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 11000;
        }

        .navbarMain ul li:hover ul.dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .navbarMain ul li ul.dropdown li {
            display: block;
            width: 100%;
            text-align: start;
        }

        .navbarMain ul li ul.dropdown li a {
            display: block;
            padding: 15px 20px;
            color: #000b36;
            white-space: nowrap;
            text-align: start;
        }

        .navbarMain ul li ul.dropdown li a:hover {
            background-color: #f5f5f5;
            color: #003f72;
            width: 100%;
        }

        .navbarMain ul li ul.dropdown li {
            position: relative;
        }

        .navbarMain ul li ul.dropdown li ul.dropdown-side {
            position: absolute;
            top: 0;
            left: 100%;
            display: flex;
            flex-direction: column;
            gap: 0;
            min-width: 240px;
            background: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateX(10px);
            transition: all 0.3s ease;
            z-index: 12000;
        }

        .navbarMain ul li ul.dropdown li:hover ul.dropdown-side {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .navbarMain ul li ul.dropdown li ul.dropdown-side li {
            padding: 0;
            color: #000b36;
            cursor: pointer;
            white-space: nowrap;
        }

        .navbarMain ul li ul.dropdown li ul.dropdown-side li:hover {
            background-color: #f5f5f5;
            color: #003f72;
        }

        .hamburgerMenu {
            display: none;
            cursor: pointer;
            font-size: 28px;

            span {
                i {
                    color: #000;
                }
            }
        }
    }
}

.hero__container.scrolled {
    background-color: #003f72;
    color: #fff;
    position: fixed;
    top: 0;

    nav {
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;

        .navbarLogo img {
            width: 200px;
            height: auto;
        }

        .navbarMain {
            position: relative;
        }

        .navbarMain ul {
            display: flex;
            align-items: center;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .navbarMain ul li {
            position: relative;
            /* important for dropdown */
        }

        .navbarMain ul li a {
            color: #fff;
            font-weight: normal;
            text-decoration: none;
            padding: 10px 0;
        }

        .navbarMain ul li a:hover {
            color: #fff;
        }

        .navbarMain ul li ul.dropdown {
            position: absolute;
            display: flex;
            flex-direction: column;
            gap: 0px;
            top: 60px;
            left: -50px;
            min-width: 180px;
            background: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            /* padding: 20px 0; */
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 11000;
        }

        .navbarMain ul li:hover ul.dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .navbarMain ul li ul.dropdown li {
            display: block;
            width: 100%;
            text-align: start;
        }

        .navbarMain ul li ul.dropdown li a {
            display: block;
            padding: 15px 20px;
            color: #000b36;
            white-space: nowrap;
            text-align: start;
        }

        .navbarMain ul li ul.dropdown li a:hover {
            background-color: #f5f5f5;
            color: #003f72;
            width: 100%;
        }

        .hamburgerMenu {
            display: none;
            cursor: pointer;
            font-size: 28px;

            span {
                i {
                    color: #000;
                }
            }
        }
    }

    .hamburgerMenu {
        display: none;
        cursor: pointer;
        font-size: 28px;

        span {
            i {
                color: #000;
            }
        }
    }
}

.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;
            z-index: 10000;
        }

        .swiper__Content {
            width: 100%;
            position: absolute;

            padding: 0 40px;

            display: flex;
            /* align-items: center; */
            justify-content: space-between;
            z-index: 10000;

            .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-position: bottom;
            object-fit: cover;
            /* background-position: top; */
        }

        .swiper-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(0 63 114);
            opacity: 0.4;
            z-index: 9999;
        }

        .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;
        }


        /* SOCIAL ICONS */
        .social__logo {
            /* position: absolute; */
            position: fixed;
            top: 50%;
            right: 1%;
            z-index: 9999;

            .social_icon {
                margin: 10px 0;

                a {
                    i {
                        font-size: 20px;
                        color: #e9b152;
                        mix-blend-mode: difference;
                    }
                }
            }

        }
    }

    /* &::after {
    content: "";
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background-color: #000;
    opacity: 0.4;
  } */
}

/* .about {
    
    height: auto;
    width: 100%;
    position: relative;
    z-index: 100;
    padding: 120px 42px;

    .about-right-container{
        background-color: #000b36 !important;
        width: 100%;
        height: 100vh;
    }

} */

.home__aboutContainer {
    border-top: 1px solid #fff;

    .hma_left {
        height: 100vh;
        /* background-color: #021049 !important; */
        background-color: #003f72 !important;

        .abt-content {
            padding: 40px;

            .abt-heading {
                font-size: 52px;
                text-transform: uppercase;
                color: #fff;
                text-align: center;
            }

            .abt-text-content {
                font-weight: normal;
                color: #fff;
                font-size: 16px;
            }
        }
    }

    .hma_right {
        position: relative;
        height: 100vh;

        overflow: hidden;

        /* padding: 20px; */
        .hma_right__img_container {
            width: 100%;
            height: 100%;

            .grid-img {
                width: 100%;
                height: 250px;
                object-fit: cover;
                /* border-radius: 8px; */
            }
        }

        /* .col-12 {
            height: 220px;
          
        }

        .col-7,
        .col-5 {
            height: 165px;
           
        } */

        .about__btn {
            position: absolute;
            top: 70%;
            left: 50%;

            button {
                padding: 30px;
                border-radius: 50%;
                width: 135px;
                height: 135px;
                background-color: #003f72;
                border: none;

                a {
                    text-align: center;
                    text-wrap: wrap;
                    color: #fff;
                    font-size: 18px;
                    font-weight: 700;
                    text-transform: uppercase;
                }
            }
        }
    }
}

.counter {
    .counter__container {
        background-color: #e7e7e7 !important;
        width: 100%;
        height: 50vh;
        padding: 42px;

        .about__info {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-top: 30px;

            h1 {
                font-size: 48px;
                font-weight: 800;
                color: #003f72;
            }

            p {
                color: #000;
                font-weight: bold;
                font-size: 22px;
            }

            span {
                color: #828487;
                font-size: 14px;
                width: 70% !important;
            }
        }
    }
}

/* 
.projects {
    background-color: var(--backgroundColor);
    height: auto;
    width: 100%;
    position: relative;
    z-index: 100;
    padding: 0px 42px;
    padding-bottom: 140px;

    

    .project__heading {
        padding-top: 35px;
        font-size: 48px;
        color: #021049;
        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 {
                background-color: #fff;
                border-radius: 50%;
                padding: 5px;
                width: 30px;
                height: 30px;
            }
        }
    }

    .swiper-slide.project__slide img {
        display: block;
        height: 350px;
        object-fit: cover;
        border-radius: 10px;
    }

    .swiper-button-prev.project-prev {
        position: absolute;
        left: 85%;
        top: 4%;
        background-color: #e8bc70;
        padding: 20px;
        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.project-next {
        position: absolute;
        left: 90%;
        top: 4%;
        background-color: #e8bc70;
        padding: 20px;
        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;
    }
} */

.home__projects {
    background-color: #003f72;
    padding: 42px 0;

    .project__content {
        .project__heading {
            color: #fff;
            font-size: 48px;
            text-transform: uppercase;
            font-weight: 700;
        }

        .project__para {
            color: #fff;
            /* font-size: 16px; */
            font-weight: normal;
            margin-top: 20px;
            color: #ccc;
        }
    }

    .swiper.project-swiper {

        /* position: relative; */
        .swiper-wrapper {
            position: relative;

            .swiper-slide {
                img {
                    width: 100% !important;
                    height: 250px !important;
                    object-fit: cover;
                }
            }

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgb(0 63 114);
                opacity: 0.2;
                z-index: 9999;
            }

            .swiper-content {
                width: 100%;
                position: absolute;
                bottom: 5%;
                z-index: 10000;
                display: flex;
                align-items: center;
                padding: 0 20px;
                justify-content: space-between;

                .swiper__heading {
                    h3 {
                        /* font-size: 36px; */
                        color: #fff;
                        text-transform: uppercase;
                        font-weight: 700;
                    }
                }

                .swiper__btn {
                    button {
                        float: left;
                        width: 35px;
                        height: 35px;
                        border: none;
                        background-color: #e8bc70;

                        a {
                            text-align: center;
                            color: #fff;
                        }
                    }
                }
            }
        }
    }
}

.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: 50%;
            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 {
    width: 100%;
    /* height: 50vh; */
    padding: 0 42px;
    margin: 75px 0;

    .clients_head {
        margin-top: 20px;

        h1 {
            /* font-size: 48px; */
            color: #000b36;
            /* margin-bottom: 20px; */
            white-space: nowrap;
            font-weight: 600;
        }

        p {
            font-weight: 400;
            font-size: 22px;
            color: #828487;
            width: 25%;
        }
    }

    .clients_swiper {
        position: relative;
        height: 100%;
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;

        .client__slide {
            .clients-img {
                width: 100%;
                height: auto;


            }
        }
    }
}

.clients {
    width: 100%;
    /* height: 50vh; */
    padding: 0 42px;
    margin: 75px 0;

    .clients_head {
        margin-top: 20px;

        h1 {
            /* font-size: 48px; */
            color: #000b36;
            /* margin-bottom: 20px; */
            white-space: nowrap;
            font-weight: 600;
        }

        p {
            font-weight: 400;
            font-size: 22px;
            color: #828487;
            width: 25%;
        }
    }

    .clients_swiper {
        position: relative;
        height: 100%;
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;

        .client__slide {
            .clients-img {
                width: 100%;
                height: auto;


            }
        }
    }
}

.clients {
    width: 100%;
    /* height: 50vh; */
    padding: 0 42px;
    margin: 75px 0;

    .clients_head {
        margin-top: 20px;

        h1 {
            /* font-size: 48px; */
            color: #000b36;
            /* margin-bottom: 20px; */
            white-space: nowrap;
            font-weight: 600;
        }

        p {
            font-weight: 400;
            font-size: 22px;
            color: #828487;
            width: 25%;
        }
    }

    .clients_swiper {
        position: relative;
        height: 100%;
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;

        .client__slide {
            .clients-img {
                width: 100%;
                height: auto;


            }
        }
    }
}

.clients {
    width: 100%;
    /* height: 50vh; */
    padding: 0 42px;
    margin: 75px 0;

    .clients_head {
        margin-top: 20px;

        h1 {
            /* font-size: 48px; */
            color: #000b36;
            /* margin-bottom: 20px; */
            white-space: nowrap;
            font-weight: 600;
        }

        p {
            font-weight: 400;
            font-size: 22px;
            color: #828487;
            width: 25%;
        }
    }

    .clients_swiper {
        position: relative;
        height: 100%;
        margin: 20px 0;
        display: flex;
        align-items: center;
        justify-content: center;

        .client__slide {
            .clients-img {
                width: 100%;
                height: auto;

                img {
                    border: 1px solid #000;
                    padding: 12px;
                    border-radius: 5px;
                }

            }
        }
    }
}



/* 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 {
        margin: 0 180px;

        h1 {
            font-size: 28px;
            font-weight: normal;
        }

        p {
            font-size: 16px;
            font-weight: normal;
            color: #828487;
        }
    }

    .gallery_container {
        .gallery_heading {
            /* margin: 50px; */
        }

        img {
            height: 250px;
            width: 100%;
            cursor: pointer;
            object-fit: cover;
        }
    }
}

.more_related {
    border-top: 1px solid #000;

    .more_related_container {
        margin: 10px 0;

        img {
            width: 100%;
            height: 350px;
        }

        .more_relatedContent {
            h1 {
                font-size: 22px;
                margin: 10px 0;
                text-transform: uppercase;
            }
        }
    }
}

/* 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;
            width: 70%;
        }
    }

    .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;
                    width: 100%;
                    height: 500px;
                    object-fit: cover;
                    object-position: top;
                    padding: 0 45px;
                    border-radius: 25px;

                    &: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: 20%;
                    text-wrap: nowrap;
                }
            }

            .member_details {
                p {
                    color: #000;
                    text-align: start;
                    font-size: 18px;
                    font-weight: normal;
                }

                h3 {
                    text-align: end;
                }
            }
        }

        .team__member_mob {
            display: none;
        }
    }

    .member-details {
        padding: 0 75px;
        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 */


.careers_banner-header-section {
    position: relative;
    padding: 40px;
    width: 100%;
    height: 50vh;
    background: url("../../images/banner/careers.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 20px;

    .careers_banner-banner-content {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%);
        z-index: 10000;

        .careers_banner-bg-heading {
            font-size: 75px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 9999;
    }
}


.careers {
    position: relative;
    padding: 40px;

    .careers__container {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;


        h4 {
            margin-top: 10px;
            text-align: center;
            font-size: 48px;
            color: #021049;
        }

        p {
            margin-top: 10px;
            width: 60%;
            color: #828487;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }

    .careers__roles {
        h4 {
            text-transform: uppercase;
            color: #021049;
        }

        a {
            color: #021049;

            .var-button-icon {
                color: #000 !important;
            }
        }
    }
}

/* CONTACT */


.contact_banner-header-section {
    position: relative;
    padding: 40px;
    width: 100%;
    height: 50vh;
    background: url("../../images/banner/careers.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 20px;

    .contact_banner-banner-content {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%);
        z-index: 10000;

        .contact_banner-bg-heading {
            font-size: 75px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 9999;
    }
}

.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;
    bottom: 0;
    z-index: 0;

    .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;
                }
            }
        }
    }
} */

/* FOOTER START HERE */
.footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
}

.footer a {
    color: #fff;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-end;
    /* gap: 40px; */
}

/* .footer_rborder {
    border-right: 1px solid #fff;
} */
.footer_logo img {
    max-width: 380px;
}

.footer_desc p {
    font-size: 14px;
    color: #fff;
    width: 90%;
}

.footer__addr span,
.callus span,
.emailus span {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.footer__addr p,
.callus a,
.emailus a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.footer__links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid #fff;
    height: 100%;
}

.footer__links ul li {
    margin-left: 40px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.footer__links ul li:hover {
    color: #fff;
}

.footer__social {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social li a {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s;
}

.footer__social li a:hover {
    color: #e8bc70;
}

/* @media (min-width: 768px) {
    .footer .col-md-3 {
        flex: 1 1 22%;
        max-width: 22%;
    }
}

@media (max-width: 767px) {
    .footer {
        text-align: center;
    }
    .footer__social {
        justify-content: center;
    }
    .footer .col-md-3 {
        max-width: 100%;
    }
} */

/* FOOTER END HERE */

/* ################## 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;
        }

        p {
            margin-top: 10px;
            width: 50%;
            color: #828487;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }

    a {
        color: #000;
    }

    .industries_content_container {
        border-bottom: 1px solid #000;
        margin: 50px 0;
        padding: 20px 0;

        .industries_content {
            margin: 10px 0;

            h3 {
                color: #000 !important;
            }

            p {
                margin-top: 10px;
                color: #828487;
                font-weight: normal;
                font-size: 16px;
            }
        }

        .industries_imgContainer {
            overflow: hidden;

            img {
                width: 100%;
                height: 380px;
                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);
            }
        }
    }

    .industries_benfits {
        .benefits_container {
            margin: 20px 0px 20px 15px;
            border-right: 1px solid #828487;

            img {
                width: 50px;
                height: 50px;
            }

            h6 {
                margin: 15px 0;
            }

            p {
                color: #828487;
                font-weight: normal;
                font-size: 16px;
            }
        }
    }

    .industries_content,
    .industries_imgContainer,
    .benefits_container {
        will-change: transform, opacity;
    }
}

/* 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;
        }
    }

    .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;
                        text-wrap: wrap;
                        font-size: 18px;
                    }

                    .sustain-icons {
                        img {
                            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  */
    .about__page {
        position: relative;
        z-index: 100;
        padding: 120px 0px;
        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;

            p {
                font-weight: normal;
                color: #828487;
                margin: 0;
                /* max-width: 500px; */
                font-size: 18px;
                width: 90%;
            }
        }

        .about__overview {
            width: 100%;
            padding: 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: 200px;
                    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;
                display: none;
            }
        }

        .our__team {
            position: relative;

            .team__heading {}

            .team__desc {
                padding: 0 42px;

                p {
                    color: #828487;
                    font-weight: normal;
                    text-align: start;
                    font-size: 16px;
                }
            }

            .team__member {
                display: none;
            }

            .team__member_mob {
                display: block;
                margin-top: 10px;

                .member_img {
                    padding: 10px 40px;
                    border-bottom: 1px solid #000;

                    img {
                        width: 75px;
                        height: 75px;
                    }
                }
            }
        }

        #memberDetailsContainer {
            display: none;
        }

        #memberDetailsContainer::after {
            display: none;
        }

        .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: 25px;
                    left: 65%;
                    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: 25px;
                    left: 85%;
                    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: 0px;
            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);
        }
    }

    /* INDUSTRIES */
    .industries {
        padding: 120px 42px;

        .industries__container {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;

            p {
                margin-top: 10px;
                width: 100%;
                color: #828487;
                font-weight: normal;
                text-align: center;
                font-size: 16px;
            }
        }

        .industries_content_container {
            border-bottom: 1px solid #000;
            margin: 50px 0;
            padding: 20px 0;

            .industries_content {
                margin: 10px 0;
            }
        }

        .industries_benfits {
            .benefits_container {
                margin: 20px 0px 20px 15px;
                border-right: none;

                img {
                    width: 50px;
                    height: 50px;
                }

                h6 {
                    margin: 15px 0;
                }

                p {
                    color: #828487;
                    font-weight: normal;
                    font-size: 16px;
                }
            }
        }
    }
}

@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;
        }
    }

    /* INDUSTRIES */
    .industries {
        padding: 120px 42px;

        .industries__container {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;

            p {
                margin-top: 10px;
                width: 90%;
                color: #828487;
                font-weight: normal;
                text-align: center;
                font-size: 16px;
            }
        }

        .industries_benfits {
            .benefits_container {
                margin: 20px 0px 20px 15px;
                border-right: none;
            }
        }
    }

    /* ABOUT US PAGE */
    .about__page {
        position: relative;
        z-index: 100;
        padding: 120px 0px;
        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;

            p {
                font-weight: normal;
                color: #828487;
                margin: 0;
                /* max-width: 500px; */
                font-size: 18px;
                width: 90%;
            }
        }

        .about__overview {
            width: 100%;
            padding: 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: 200px;
                    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;
                display: none;
            }
        }

        .our__team {
            position: relative;

            .team__heading {}

            .team__desc {
                padding: 0 42px;

                p {
                    color: #828487;
                    font-weight: normal;
                    text-align: start;
                    font-size: 16px;
                }
            }

            .team__member {
                display: none;
            }

            .team__member_mob {
                display: block;
                margin-top: 10px;

                .member_img {
                    padding: 10px 40px;
                    border-bottom: 1px solid #000;

                    img {
                        width: 75px;
                        height: 75px;
                    }
                }
            }
        }

        #memberDetailsContainer {
            display: none;
        }

        #memberDetailsContainer::after {
            display: none;
        }

        .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: 25px;
                    left: 65%;
                    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: 25px;
                    left: 85%;
                    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;
                }
            }
        }
    }
}

@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;
        }
    }

    /* INDUSTRIES */
    .industries {
        padding: 120px 42px;

        .industries__container {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;

            p {
                margin-top: 10px;
                width: 70%;
                color: #828487;
                font-weight: normal;
                text-align: center;
                font-size: 16px;
            }
        }

        .industries_benfits {
            .benefits_container {
                margin: 20px 0px 20px 15px;
                border-right: none;
            }
        }
    }

    .about__page {
        position: relative;
        z-index: 100;
        padding: 120px 0px;
        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;

            p {
                font-weight: normal;
                color: #828487;
                margin: 0;
                /* max-width: 500px; */
                font-size: 18px;
                width: 90%;
            }
        }

        .about__overview {
            width: 100%;
            padding: 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: 200px;
                    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;
                display: none;
            }
        }

        .our__team {
            position: relative;

            .team__heading {}

            .team__desc {
                padding: 0 42px;

                p {
                    color: #828487;
                    font-weight: normal;
                    text-align: start;
                    font-size: 16px;
                }
            }

            .team__member {
                display: block;
            }

            .team__member_mob {
                display: none;
                margin-top: 10px;

                .member_img {
                    padding: 10px 40px;
                    border-bottom: 1px solid #000;

                    img {
                        width: 75px;
                        height: 75px;
                    }
                }
            }
        }

        #memberDetailsContainer {
            display: block;
        }

        #memberDetailsContainer::after {
            display: none;
        }

        .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: 3%;
                    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: 10%;
                    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: 0px;
    }
}

@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;
        }
    }

    /* INDUSTRIES */
    .industries {
        padding: 120px 42px;

        .industries__container {
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: center;

            p {
                margin-top: 10px;
                width: 70%;
                color: #828487;
                font-weight: normal;
                text-align: center;
                font-size: 16px;
            }
        }

        .industries_benfits {
            .benefits_container {
                margin: 20px 15px 20px 10px;
                /* border-right: none; */
            }
        }
    }

    /* ABOUT US PAGE */
    .about__page {
        position: relative;
        z-index: 100;
        padding: 120px 0px;
        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;

            p {
                font-weight: normal;
                color: #828487;
                margin: 0;
                /* max-width: 500px; */
                font-size: 18px;
                width: 90%;
            }
        }

        .about__overview {
            width: 100%;
            padding: 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: 200px;
                    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;
                /* display: none; */
            }
        }

        .our__team {
            position: relative;

            .team__heading {}

            .team__desc {
                padding: 0 42px;

                p {
                    color: #828487;
                    font-weight: normal;
                    text-align: start;
                    font-size: 16px;
                }
            }

            .team__member {
                /* display: none; */
            }
        }

        #memberDetailsContainer {
            display: none;
        }

        #memberDetailsContainer::after {
            display: none;
        }

        .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: 3%;
                    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: 10%;
                    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;
                }
            }
        }
    }
}

/* PROJECT DETAILS PAGE RESPONSIVE  */

/* ----------  Extra Small Devices (max-width: 576px) ---------- */
@media (max-width: 576px) {
    .projectDetails {
        padding: 100px 15px 15px 15px;
    }

    .projectDetails {
        .projectDetail__container {
            .project-imgbg {
                width: 100%;
                height: 100%;
            }

            .project-heading {
                .project-heading-content {
                    position: absolute;
                    top: 0%;
                    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: 44px;
                        display: none;
                    }

                    p {
                        text-align: center;
                        color: #828487;
                        text-transform: uppercase;
                        font-weight: normal;
                    }
                }

                .project-detail {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 30px;
                    position: absolute;
                    bottom: 20%;
                    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;
                        }
                    }
                }
            }
        }
    }

    .projectDetails .project-heading-content p {
        font-size: 14px;
    }

    /* .projectDetails .project-detail {
        flex-direction: column;
        gap: 20px;
        bottom: 5%;
    } */

    .projectDetails .project-detail-content h1 {
        font-size: 18px;
    }

    .project__info_s .project_info {
        margin: 0 10px;
    }

    .project__info_s .project_info h1 {
        font-size: 22px;
    }

    .project__info_s .project_info p {
        font-size: 14px;
    }

    .project__info_s .gallery_container img {
        height: 180px;
    }

    .more_related .more_related_container img {
        height: 220px;
    }

    .more_related .more_relatedContent h1 {
        font-size: 18px;
    }
}

/* ----------  Small Devices (min-width: 577px) and (max-width: 767px) ---------- */
@media (min-width: 577px) and (max-width: 767px) {
    .projectDetails {
        padding: 100px 15px 15px 15px;
    }

    .projectDetails {
        .projectDetail__container {
            .project-imgbg {
                width: 100%;
                height: 100%;
            }

            .project-heading {
                .project-heading-content {
                    position: absolute;
                    top: 0%;
                    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: 44px;
                        display: none;
                    }

                    p {
                        text-align: center;
                        color: #828487;
                        text-transform: uppercase;
                        font-weight: normal;
                    }
                }

                .project-detail {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 30px;
                    position: absolute;
                    bottom: 20%;
                    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;
                        }
                    }
                }
            }
        }
    }

    .projectDetails .project-detail-content h1 {
        font-size: 20px;
    }

    .project__info_s .project_info {
        margin: 0 20px;
    }

    .project__info_s .gallery_container img {
        height: 200px;
    }

    .more_related .more_related_container img {
        height: 260px;
    }
}

/* ----------  Medium Devices (min-width: 768px) and (max-width: 991px) ---------- */
@media (min-width: 768px) and (max-width: 991px) {
    .projectDetails {
        padding: 100px 15px 15px 15px;
    }

    .projectDetails {
        .projectDetail__container {
            .project-imgbg {
                width: 100%;
                height: 100%;
            }

            .project-heading {
                .project-heading-content {
                    position: absolute;
                    top: 0%;
                    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: 36px;
                        /* display: none; */
                    }

                    p {
                        text-align: center;
                        color: #828487;
                        text-transform: uppercase;
                        font-weight: normal;
                    }
                }

                .project-detail {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 30px;
                    position: absolute;
                    bottom: 20%;
                    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 {
        margin: 0 40px;
    }

    .project__info_s .gallery_container img {
        height: 220px;
    }

    .more_related .more_related_container img {
        height: 280px;
    }
}

/* ----------  Large Devices (min-width: 992px) and (max-width: 1200px) ---------- */
@media (min-width: 992px) and (max-width: 1200px) {
    .projectDetails {
        padding: 100px 15px 15px 15px;
    }

    .projectDetails {
        .projectDetail__container {
            .project-imgbg {
                width: 100%;
                height: 100%;
            }

            .project-heading {
                .project-heading-content {
                    position: absolute;
                    top: 0%;
                    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: 48px;
                        /* display: none; */
                    }

                    p {
                        text-align: center;
                        color: #828487;
                        text-transform: uppercase;
                        font-weight: normal;
                    }
                }

                .project-detail {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 30px;
                    position: absolute;
                    bottom: 20%;
                    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;
                        }
                    }
                }
            }
        }
    }

    .projectDetails .project-detail {
        gap: 150px;
    }

    .project__info_s .project_info {
        margin: 0 100px;
    }

    .project__info_s .gallery_container img {
        height: 240px;
    }

    .more_related .more_related_container img {
        height: 320px;
    }
}

/* TOOLS */

.tools {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    height: 100vh;
    background: url("../../images/banner/tools-banner.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-bottom: 20px; */

    .tools_hero {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* height: 100vh; */
        z-index: 100;

        h1 {
            margin-top: 150px;
            text-align: center;
            font-size: 76px;
            /* color: #021049; */
            /* color: #f8cc1c; */
            color: #fff;
            font-weight: 800;
            text-transform: uppercase;
        }

        p {
            margin-top: 20px;
            width: 50%;
            color: #000;
            font-weight: normal;
            text-align: center;
            font-size: 16px;
        }
    }

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 1;
    }
}

.tools__swiper {

    .swiper-horizontal>.swiper-pagination-progressbar,
    .swiper-pagination-progressbar.swiper-pagination-horizontal {
        width: 100%;
        height: var(--swiper-pagination-progressbar-size, 4px);
        position: relative;
        left: 0;
        bottom: 0 !important;
    }

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0 !important;
        width: 100%;
        height: 100%;
    }

    .tools_swiper .swiper-slide {
        position: relative;
    }

    .tools_swiper .swiper-slide .slide_text {
        position: absolute;
        top: 20%;
        left: 60%;

        h1.tools_text {
            font-size: 75px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* transform: translate(-13%,0%); */
        }

        h3.tools_text {
            font-size: 28px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        p {
            width: 90%;
            margin: 10px 0;
            color: #000;
            font-weight: normal;
            /* transform: translate(35%,-250%); */
        }
    }

    .tools_swiper .swiper-slide img {
        width: 100%;
        /* height: 400px; */
        object-fit: cover;
    }
}

.tools__cards_container {
    padding: 42px !important;

    .card.tools-cards {
        width: 100%;
        height: auto;

        .tools-cards-img-container {
            width: 100%;
            height: 100%;

            img.card-img-top {
                height: 250px !important;
                object-fit: cover !important;
                background-color: #003f72;
            }
        }
    }

    .card-body.tools-card-body {
        .card-title.tools-card-title {
            text-transform: uppercase;
            font-weight: 600;
            color: #000b36;
        }

        .tools-cards-tags {
            display: flex;
            gap: 10px;

            .tags {
                padding: 0px 15px;
                border: 1px solid #000b36;
                /* font-weight: 800; */
                border-radius: 5px;
            }
        }

        .card-text.tools-card-text {
            font-weight: normal;
        }

        .cards-tools-footer {
            display: flex;
            justify-content: space-between;

            .btns {
                .tools-btn {
                    padding: 5px 20px;
                    background-color: transparent;
                    background-color: #f8cc1c;
                    border: none;
                    color: #fff;
                    border-radius: 5px;
                }
            }
        }
    }
}

/* ABOUT NEW  */

.about-header-section {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    height: 50vh;
    background: url("../../images/about/about-new-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 20px;

    .about-banner-content {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%);
        z-index: 10000;

        .about-bg-heading {
            font-size: 75px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }

        /* &::after {
            content: "";
            position: absolute;
            height: 4px;
            width: 90%;
            left: 50%;
            transform: translate(-50%);
            background-color: #003f72;
        } */
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 9999;
    }
}

.about-new-section {
    padding: 40px;

    .about-new-content {
        p {
            width: 100%;
            color: #828487;
            font-weight: normal;
            text-align: start;
            font-size: 18px;
        }

        .about-new-content-heading {
            font-size: 32px;
            font-weight: 600;
            color: #003f72;
            text-transform: uppercase;
        }

        .about-new-content-list {
            padding: 0 10px;

            li {
                list-style-type: disc;
                margin: 10px 0;
                color: #828487;
                font-weight: normal;
                text-align: start;
                font-size: 16px;
            }
        }
    }
}

.home__sustain {
    background-color: #e9f0e8;
    width: 100%;
    height: 100vh;

    .home__sustain_content {
        p {
            font-size: 16px;
            color: #000;
            font-weight: normal;
        }
    }

    .home__sustian-container {
        padding: 42px;

        .home__sustain_image {
            width: 100%;

            img {
                width: 100%;
                max-height: 400px;
                object-fit: cover;
            }
        }

        .sustain__btn {
            margin-top: 10px;

            button {
                padding: 10px 20px;
                background-color: transparent;
                border: 1px solid #003f72;
                border-radius: 50px;

                a {
                    color: #000b36;
                }
            }
        }
    }
}

/* MISSION */


.mission-header-section {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    height: 50vh;
    background: url("../../images/about/mission-vision-banner.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 20px;

    .mission-banner-content {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%);
        z-index: 10000;

        .mission-bg-heading {
            font-size: 75px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }

        /* &::after {
            content: "";
            position: absolute;
            height: 4px;
            width: 90%;
            left: 50%;
            transform: translate(-50%);
            background-color: #003f72;
        } */
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 9999;
    }
}

.mission {
    margin: 20px 0;

    .mission-img-container {
        width: 100%;
        padding: 0 30px;
        position: relative;

        img {
            width: 100%;
            height: 90vh !important;
            object-fit: cover;
            border-radius: 25px;
        }

        .mission-image-overlay {
            position: absolute;
            top: 25%;
            right: -50px;

            img.overlay-img {
                width: 100%;
                height: 250px !important;
                border-radius: 25px;
                border: 10px solid #fff;
            }
        }
    }

    .mission-img-container.left {
        width: 100%;
        padding: 0 30px;
        position: relative;

        img {
            width: 100%;
            height: 90vh !important;
            object-fit: cover;
            border-radius: 25px;
        }

        .mission-image-overlay {
            position: absolute;
            top: 25%;
            left: -50px;

            img.overlay-img {
                width: auto;
                height: 250px !important;
                border-radius: 25px;
                border: 10px solid #fff;
            }
        }
    }

    .mission-content {
        padding: 0 40px;

        h1 {
            font-size: 48px;
            font-weight: 600;
            color: #003f72;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .mission-para {
            p {
                color: #000;
                font-weight: normal;
                margin: 10px 0;
            }
        }
    }
}

/* policy */
@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}


.quality_policy-header-section {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    height: 50vh;
    background: url("../../images/banner/quality_policy.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 20px;

    .quality_policy-banner-content {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%);
        z-index: 10000;

        .quality_policy-bg-heading {
            font-size: 75px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 9999;
    }
}


.hse_policy-header-section {
    position: relative;
    padding: 120px 40px;
    width: 100%;
    height: 50vh;
    background: url("../../images/banner/HSE.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    margin-bottom: 20px;

    .hse_policy-banner-content {
        position: absolute;
        bottom: 30%;
        left: 50%;
        transform: translate(-50%);
        z-index: 10000;

        .hse_policy-bg-heading {
            font-size: 75px;
            text-transform: uppercase;
            color: #fff;
            font-weight: 700;
        }
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 63 114);
        opacity: 0.4;
        z-index: 9999;
    }
}

.policy-container {
    margin: 30px 0;
    /* height: 200vh; */

    .policy-content {
        padding: 0 30px;

        h1 {
            font-size: 32px;
            font-weight: 600;
            color: #003f72;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        p {
            color: #000;
            font-weight: normal;
        }

        .policy-listing {
            padding: 0 20px;

            li {
                list-style-type: disc;
                font-family: var(--inter);
            }
        }
    }

    .policy-img-container {
        padding: 0 30px;
        position: relative;

        img {
            width: 100%;
            height: 450px;
            border-radius: 25px;
        }

        .circle {
            position: absolute;
            top: 60%;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 100vmax;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
        }

        .logo {
            position: absolute;

            img {
                width: 140px;
                height: 140px;
                background-size: cover;
                border-radius: 100vmax;
                background-position: center;
            }
        }

        .text {
            position: absolute;
            width: 100%;
            height: 100%;
            font-family: sans-serif;
            color: #000;
            font-size: 18px;
            letter-spacing: 30px;
            animation: textRotation 8s linear infinite;
        }

        .text span {
            position: absolute;
            left: 50%;
            font-size: 1.2em;
            transform-origin: 0 100px;
        }
    }
}


/* BOARDS OF DIRECTOR */
.boards__director {
    padding: 42px;

    .director__heading {
        h1 {
            font-size: 32px;
            font-weight: 600;
            color: #003f72;
            text-transform: uppercase;
            text-align: center;
        }
    }
}

.director_container {
    .director__img_container {
        width: 100%;
        height: auto;
        position: relative;

        .director__info {
            background: #000;
            background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 0, 1) 100%);
            opacity: 0.8;
            position: absolute;
            top: 20%;
            right: 10%;
            width: 55%;
            padding: 20px;
            border-radius: 5px;
            /* border-bottom-left-radius: 75px; */

            h1 {
                font-size: 32px;
                font-weight: 800;
                color: #fff;
            }

            h3 {
                font-size: 18px;
                font-weight: 800;
                color: #9c9b9b;
                margin-bottom: 20px;
            }

            p {
                font-weight: normal;
                font-size: 16px;
                color: #fff;
            }
        }

        .director__info-left {
            background: #000;
            background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 0, 1) 100%);
            opacity: 0.8;
            position: absolute;
            top: 20%;
            left: 5%;
            width: 55%;
            padding: 20px;
            border-radius: 5px;
            /* border-bottom-left-radius: 75px; */

            h1 {
                font-size: 32px;
                font-weight: 800;
                color: #fff;
            }

            h3 {
                font-size: 18px;
                font-weight: 800;
                color: #9c9b9b;
                margin-bottom: 20px;
            }

            p {
                font-weight: normal;
                font-size: 16px;
                color: #fff;
            }
        }
    }
}