.menu_dropdown {
    display: none;
}

.menu-dropdown-content.show {
    max-height: 210px;
    overflow-y: auto;
    scrollbar-width: none;
}

.menu-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 8px;
}

.menu-dropdown-content a {
    font-size: 16px !important;
    padding: 5px 12px !important;
    display: block;
    color: #aaa;
    border-bottom: 0px !important;
}

.menu-dropdown-content a:hover {
    color: #fff;
}


.menu-dropdown-content::-webkit-scrollbar {
    width: 5px;
}

.menu-dropdown-content::-webkit-scrollbar-thumb {
    background-color: #444;
}

.dropdown-toggle::after {
    display: none;
}

.menu-caret {
    cursor: pointer;
    float: right;
    margin-top: 7px;
}

.header_sidebar .dropdown {
    position: relative;
}

.menu_dropdown a {
    border-bottom: 0px !important;
}

.header_sidebar .dropdown-container {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.6s ease;
    padding-left: 8px;
    pointer-events: none;
    scrollbar-width: none;
}

.header_sidebar .dropdown:hover .dropdown-container {
    max-height: 230px;
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
}

.header_sidebar .dropdown-container a {
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 5px 5px;
    font-size: 18px !important;
}

.header_sidebar .dropdown-container::-webkit-scrollbar {
    width: 6px;
}

.header_sidebar .dropdown-container::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
}

.header_sidebar .dropdown-container::-webkit-scrollbar-thumb:hover {
    background: #888;
}

@media screen and (max-width: 575px) {

    .menu_dropdown {
        display: block;
        border-bottom: 1px solid #ffffff45;
    }

    .header_sidebar .dropdown {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .menu-caret {
        margin-right: 20px;
    }

    .menu_dropdown {
        display: block;
    }

    .header_sidebar .dropdown {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .menu-caret {
        margin-right: 20px;
        margin-top: 10px;
    }

    .menu_dropdown {
        display: block;
    }

    .header_sidebar .dropdown {
        display: none;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

    .header_sidebar .dropdown:hover .dropdown-container {
        max-height: 225px;
    }
}

.preloader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /* Ensure it stays on top of everything */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    /* Makes sure the loader does not block interaction with the page */
    opacity: 1;
}

.vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.vertical-centered-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.vertical-centered-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    /* Darker for visibility */
    margin-left: -60px;
    margin-top: -60px;
    animation: rotate 2s linear infinite;
}

.loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
    /* Dark gray */
}

.loader-circle-white {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px #ffffff;
    /* changed to white */
    margin-left: -60px;
    margin-top: -60px;
    animation: rotate 2s linear infinite;
}

.loader-line-mask-white .loader-line-white {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px #ffffff;
    /* changed to white */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Reduced loader image size */
.content img {
    width: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



img.object-fit-center {
    object-fit: cover;
    object-position: center center;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

.hero img.active {
    opacity: 1;
}


.banner_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


.header_sidebar {
    position: absolute;
    top: 20px;
    left: 30px;
    z-index: 0;
    padding: 10px;
}

.header_sidebar span img {
    width: 100px;
    margin-left: 17px;
    cursor: pointer;
}

.header_sidebar .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    background-color: rgb(17 17 17);
    overflow-x: hidden;
    transition: 0.3s;
    padding: 26px 0px 50px 0px;
}

.side_nav_close_logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 35px;
    cursor: pointer;
}

.side_nav_logo img {
    width: 90px;
    filter: grayscale(100%) brightness(1) sepia(100%) hue-rotate(180deg) saturate(400%) brightness(0.5);
    transition: filter 0.3s ease;
}

.header_sidebar .sidenav a {
    text-decoration: none;
    font-size: 37px;
    color: #818181;
    display: block;
    transition: 0.3s;
    font-weight: 700;
}

.side_nav_menu {
    padding: 4px 8px 4px 37px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.header_sidebar .sidenav a:hover {
    color: #f1f1f1a8;
}

.header_sidebar .sidenav .closebtn {
    /* position: absolute;
    top: 0;
    right: 25px; */
    font-size: 36px;
    /* margin-left: 50px; */
    margin-top: -15px;
}

.header_sidebar .sidenav .closebtn i {
    color: #ffffff40;
}

.header_sidebar span {
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    display: flex;
}


.header_sidebar .bi-list::before {
    content: "\f479";
    margin-top: 15px;
    color: #074b4e;
}

.header_index .bi-list::before {
    content: "\f479";
    margin-top: 15px;
    color: white;
}

.header_sidebar .bi-x-lg::before {
    content: "\f659";
    font-size: 25px;
    font-weight: 600 !important;
}



@media screen and (max-height: 450px) {
    .header_sidebar .sidenav {
        padding-top: 15px;
    }

    .header_sidebar .sidenav a {
        font-size: 18px;
    }
}

.submenu-container {
    position: relative;
    display: none;
}

.drop-menu {
    text-decoration: none;
    color: #333;
    font-size: 16px;
}

.submenu {
    display: none;
    position: relative;
}


.submenu a {
    padding: 5px 16px;
    font-size: 21px !important;
}

.submenu a:hover {
    color: #f1f1f1;
}

.submenu-container.active .submenu {
    display: block;
}

.submenu-container i {
    cursor: pointer;
    margin-left: 20px;
    font-size: 25px;
    color: #818181;
    margin-top: 3px;
}

.submenu_flex {
    display: flex;
    align-items: center;
}

.menu-wrapper {
    position: relative;
}

.submenus-container {
    position: relative;
    display: inline-block;
}

.submenus {
    width: 300px;
    position: absolute;
    top: 100%;
    left: 25px;
    right: 0;
    /* background: white; */
    /* display: flex
; */
    /* flex-direction: column; */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0.5s;
    /* padding: 10px; */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.submenus-container:hover .submenus {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Move other links down when hovering */
.submenus-container:hover~.other-links {
    transform: translateY(200px);
    transition: transform 0.5s ease-in-out;
}

.other-links {
    transition: transform 0.5s ease-in-out;
}


.submenus a {
    /* padding: 8px; */
    /* background: #f4f4f4; */
    margin: 2px 0;
    font-size: 20px !important;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.arrow_icon i {
    color: white;
}


/* about us */

.about_us_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.about_grid {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.about_grid_left {
    padding-top: 20%;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
}

.head_section h2 {
    font-size: 38px;
    font-weight: 700;
    position: relative;
}

.head_section h2:after {
    background-color: black;
    content: '';
    display: block;
    height: 4px;
    margin: 15px 0px;
    width: 80px;
}

.about_grid_left p {
    margin-top: 0px;
    font-size: 17px;
    line-height: 29px;
    text-align: justify;
    margin-bottom: 5px;
}

.about_grid_right img {
    width: 100%;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    transform-origin: center;
}

.about_grid_right {
    position: relative;
    overflow: hidden;
}

/* .about_grid_right img:hover {
    transform: scale(1.3) translateZ(0);
} */

/* service */

.service_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.service_all_details {
    padding-top: 8%;
    padding-right: 30px;
    padding-left: 30px;
}



/* .service_image h1 {
    font-size: 25px;
    font-weight: 700;
}

.service_head {
    position: absolute;
    background: #074b4e;
    padding: 5px 23px 2px;
    z-index: 2;
}

.service_image h1 {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

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

.service_img_1 {
    overflow: hidden;
    position: relative;
}

.service_img img {
    width: 100%;
    height: 230px;
    border-radius: 5px;
    object-fit: cover;
    transition: 0.5s;
}

.service_img_1:hover img {
    transform: scale(1.1);
    z-index: -1;
} */

/* service inner page */

.service1_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.inner_service_img img {
    height: 100dvh;
    overflow: hidden;
    position: relative;
    object-fit: cover;
}


.prev_btn {
    position: absolute;
    bottom: 15px;
}

.next_btn {
    position: absolute;
    bottom: 15px;
    right: 0px;
}

.prev_nxt_button i {
    font-size: 30px;

}

.prev_nxt_button {
    display: flex;
    /* justify-content: space-between; */
    position: absolute;
    bottom: 0px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    /* position: relative; */
}

.prev_nxt_button a {
    color: #000000c2;
    transition: 0.5s;
    text-decoration: none;
}

.service1_section .about_grid_left {
    position: relative;
    height: 100dvh;
}

.prev_btn a:hover {
    /* margin-left: -5px; */
    color: #000000b8;
}

.next_btn a:hover {
    /* margin-right: -3px; */
    color: #000000b8;
}

/* projects */

.project_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


.project_all_details {
    padding-top: 8%;
    padding-right: 30px;
    padding-left: 30px;
}

.project_all_details .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #074b4e;
    background-color: white;
    border-radius: 0px;
    font-weight: 700;
    border-bottom: 3px solid #074b4e;
}

.project_all_details .nav-pills .nav-link {
    border: 0;
    border-radius: 30px;
}

.project_all_details .nav-link {
    font-size: 16px;
    display: block;
    padding: 8px 8px;
    color: #074b4e;
    font-weight: 600;
    border-bottom: 2px solid #ffffff;
}

.project_all_details li.nav-item {
    margin-right: 4px;
}

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

.project_all_details_tab {
    margin-top: 15px;
}

.tab_main_head {
    position: fixed;
    top: 50%;
    left: 23px;
    transform: translateY(-50%) rotate(179deg);
    writing-mode: vertical-rl;
    color: #012c2d;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 26px;
    border-radius: 0 5px 5px 0;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-style: oblique;
}

.tab_main_head h2 {
    font-weight: 700;
    color: #012c2d;
    font-size: 26px;
}

.tab_main_head1 {
    position: fixed;
    left: -42px;
}

.tab_main_head1 h2 {
    rotate: 270deg;
    font-weight: 700;
    color: #012c2d;
    font-size: 26px;
    font-style: oblique;
    margin-top: 80px;
}

.tab_main_head2 {
    position: fixed;
    left: 44px;
}

.tab_main_head2 h2 {
    rotate: 270deg;
    font-weight: 700;
    color: #012c2d;
    font-size: 26px;
    font-style: oblique;
    margin-top: 80px;
}

.tab_main_head3 {
    position: fixed;
    left: -68px;
}

.tab_main_head3 h2 {
    rotate: 270deg;
    font-weight: 700;
    color: #012c2d;
    font-size: 22px;
    font-style: oblique;
    margin-top: 120px;
}

.project_tab_side_image {
    position: relative;
}

.img_project_1 {
    width: 550px;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

.project_tab_side_image:after {
    position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 120px 120px 0px 0px;
    border-color: rgb(7 75 78) transparent transparent;
}

/* .project_content_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 35px;
    gap: 10px;
} */

.project_tab_side_content p {
    font-size: 17px;
    text-align: justify;
}

.project_tab_side_content {
    margin-top: 40px;
}

.image_project {
    display: block;
    width: 100%;
    height: 418px;
    object-fit: cover;
    transition: 0.5s;
}

.project_container a {
    color: black;
    text-decoration: none;
    overflow: hidden;
    transform: scale(1.2);
}

.project_container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* .project_container:hover img {
    transform: scale(1.2);
} */

.overlay_project {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background-color: rgb(7, 75, 78);
    color: #ffffffc7;
    padding: 20px 0px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
    border-radius: 0px 0px 5px 5px;
    font-size: 18px;
    font-weight: 700;
}

.project_container:hover .overlay_project {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.project_all_details_tab button.owl-prev span,
.project_all_details_tab button.owl-next span {
    background: #ffffff;
    font-size: 29px !important;
    padding: 3px 22px 11px;
    color: #00474a;
    font-size: 33px;
    border-radius: 50%;
    font-weight: 700;
    box-shadow: rgba(100, 100, 111, 0.2)
}

.project_all_details_tab button.owl-prev {
    position: absolute;
    left: -33px;
    top: 39%;

}

.project_all_details_tab button.owl-next {
    position: absolute;
    right: -33px;
    top: 39%;
}


.project_all_details_tab .owl-theme .owl-nav [class*=owl-]:hover {
    background: none !important;
}

.project_content__inner_grid {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; */
    margin-top: 30px;
}

.project_ongoing_details_tab .nav {
    justify-content: flex-start !important;
}

div.scroll-container {
    /* background-color: #074b4e; */
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
}

/* Styling the scrollbar */
.scroll-container::-webkit-scrollbar {
    width: 6px;
    /* Slim scrollbar width */
    height: 6px;
    /* Slim horizontal scrollbar height */
}

.scroll-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    /* Darker thumb */
    border-radius: 10px;
    /* Rounded edges */
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.8);
    /* Darker thumb on hover */
}

/* Styling the scrollbar track */
.scroll-container::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
    /* Light track */
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-track-piece {
    background-color: rgba(255, 255, 255, 0.2);
    /* Background for track */
}


div.scroll-container img {
    padding: 10px;
    width: 402px;
    height: 350px;
    object-fit: cover;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: 70px auto auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.object_img img {
    object-fit: inherit;
}


/* Caption text */
#caption {
    margin: 20px auto;
    text-align: center;
    font-size: 20px;
    color: white;
}


.project_all_details_tab .nav {
    justify-content: center;
    gap: 15px;
}


.project_inner_icon img {
    position: absolute;
    bottom: 40px;
    z-index: 1;
    width: 25px;
    right: 30px;
}

.service_inner_slider {
    position: relative;
}

.arrow-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    display: block;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.arrow-button i {
    font-size: 30px;
}

.expanded-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    display: none;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expanded-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.nxt_btn a {
    font-size: 17px;
    text-decoration: none;
    color: #000000c7;
}

.nxt_btn i {
    font-size: 17px;
    margin-left: 8px;
}

.pre_btn a {
    font-size: 17px;
    text-decoration: none;
    color: #000000c7;
}

.pre_btn {
    position: absolute;
    bottom: 15px;
}

.pre_btn i {
    font-size: 17px;
    margin-right: 8px;
}


/* contact */

.contact_section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.contact_form h2 {
    font-size: 27px;
    font-weight: 700;
}

.contact_form {
    background-color: #f5f6f6;
    padding: 30px;
}

.contact_form input.form-control,
textarea.form-control {
    padding: 12px 20px 15px;
}

.contact_form .form-group {
    margin-bottom: 10px;
}

.contact_form form {
    margin-top: 20px;
}

button.site-button {
    height: 50px;
    width: 100%;
    background: #074b4e;
    color: white;
    font-size: 19px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.5s;
    border: 2px solid #074b4e;
}

button.site-button:hover {
    background: white;
    border: 2px solid #074b4e;
    color: #074b4e;
}

.contact-area p {
    color: gray;
    font-size: 16px;
}

.contact-area {
    border: 1px solid #00000026;
    padding: 30px 35px 30px 20px;
}

.contact-area h2 {
    font-size: 27px;
    font-weight: 700;
}

.contact-area ul {
    margin-top: 30px;
    padding: 0px;
}

.contact-area ul li {
    display: flex;
    gap: 11px;
    margin-bottom: 20px;
}

.icon-contact a i {
    width: 31px;
    height: 31px;
    line-height: 28px;
    background: #074b4e;
    color: white;
    display: flex;
    justify-content: center;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.5s;
    border: 2px solid #074b4e;
}

.icon-contact i:hover {
    background: white;
    border: 2px solid #074b4e;
    color: #074b4e;
}

.icon-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: #074b4e;
}

.contact_section_padding {
    padding-top: 7%;
}

/* Modal styles */
.modals {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modals-content {
    background-color: #fff;
    margin: 30px auto;
    ;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
}

.closes-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    float: right;
}

.closes-btn:hover,
.closes-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.icon-content a {
    text-decoration: none;
    color: gray;
}

.contact_section .head_section h2 {
    text-align: center;
}

.contact_section .head_section h2:after {
    margin: 15px auto;
}

.service-container {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 20px;
    overflow: hidden;
    border-radius: 10px;
}

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

.overlay_service {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: gray;
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.service_container:hover .overlay_service {
    background: #074b4e;
}

.service_container {
    position: relative;
}

/* .service-container:hover .overlay_service {
    background: rgba(0, 0, 0, 0.8);
} */


/* project new change */

.project_content_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

section.Project_main_section {
    padding-bottom: 30px;
}


.top-btn {
    height: 45px;
    width: 45px;
    text-align: center;
    background: none;
    position: fixed;
    right: 40px;
    bottom: -95px;
    z-index: 9999;
    outline: none;
    -webkit-transition: all linear 0.4s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
    transition: all linear 0.4s;
    cursor: pointer;
    border: none;
}

.top-btn i {
    line-height: 45px;
    font-size: 30px;
    color: black;
}

/*   
  .top-btn:hover {
    background: var(--deep-blue);
  } */

.top-btn.show {
    bottom: 40px;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffffff;
    color: black;
    padding: 5px 9px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    font-size: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .close-button:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: rotate(90deg) scale(1.1);
} */

.go-back-wrapper {
    animation: fadeInText 1s ease-out;
    left: 245px;
    position: absolute;
    bottom: 15px;
    /* display: flex
; */
}

.go-back-text-link {
    font-size: 16px;
    font-weight: 600;
    color: #000000c2;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

a.go-back-text-link:hover {
    color: black;
}

/* .go-back-text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #074b4e;
    transition: width 0.3s ease;
}

.go-back-text-link:hover {
    color: #074b4e;
}

.go-back-text-link:hover::after {
    width: 100%;
} */

.social_media_icons h2 {
    font-size: 17px;
    font-weight: 600;
    color: #818181;
    margin-bottom: 3px;
}

.social_media_icons {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.scoial_icons {
    text-align: center;
    display: flex;
    gap: 3px;
}

.scoial_icons i {
    margin-right: 5px;
}

.scoial_icons a {
    font-size: 20px !important;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.service_img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
    transition: 0.5s;
}

.service_container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

section.service_listing_page {
    padding-bottom: 50px;
}

.social_media_icons_home a {
    font-size: 30px;
    color: #ffffff80;
}

.social_media_icons_home {
    position: absolute;
    bottom: 15px;
    right: 20px;
}

.social_media_icons_home i {
    margin-left: 10px;
}

.fixed-side-label {
    position: fixed;
    top: 50%;
    left: 38px;
    transform: translateY(-50%) rotate(-180deg);
    writing-mode: vertical-rl;
    /* background: #000; */
    color: #012c2d;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 26px;
    border-radius: 0 5px 5px 0;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-style: oblique;
}

.resp_head {
    display: none;
}

.prev_nxt_btn_resp {
    display: none;
}

.service_prev_nxt_button i {
    font-size: 25px;
    color: #000000b0;
}

@media screen and (max-width: 575px) {

    .project_details_page .owl-carousel {
        z-index: 0;
    }

    .nxt_btn,
    .pre_btn {
        position: unset;
    }

    .prev_nxt_button {
        display: none;
        position: unset;
    }

    .prev_nxt_btn_resp {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
    }

    .go-back-wrapper {
        position: unset;
        margin-top: 0;
        animation: none;
    }

    .resp_head h2 {
        margin-bottom: -24px;
        margin-top: 15px;
        font-weight: 700;
        font-size: 24px;
    }

    .resp_head {
        display: block;
    }

    .fixed-side-label {
        display: none;
    }

    .submenu a {
        font-size: 18px !important;
        padding: 5px 10px !important;
    }


    .project_inner_icon img {
        z-index: 0;
    }

    .owl-dots {
        display: none;
    }

    .side_nav_close_logo {
        padding: 0px 15px;
    }

    .side_nav_logo a {
        border-bottom: 0px !important;
        padding: 0px !important;
    }

    .hero img {
        object-fit: cover;
    }

    .about_grid {
        display: grid;
        grid-template-columns: repeat(1, 100%);
    }

    .about_us_section {
        overflow: auto;
        height: auto;
        padding-bottom: 30px;
    }

    .head_section h2 {
        font-size: 30px;
        text-align: center;
    }

    .head_section h2:after {
        margin: 15px auto;
    }

    .about_grid_left {
        padding-top: 30%;
        padding-left: 5px;
        padding-right: 5px;
    }

    .prev_nxt_button i {
        font-size: 14px;
    }

    .about_grid_right img {
        object-fit: cover;
        height: auto;
    }

    .service_img {
        grid-template-columns: repeat(1, 1fr);
    }

    .service_all_details {
        padding-top: 25%;
        padding-right: 5px;
        padding-left: 5px;
    }

    .service_section {
        height: auto;
        overflow: auto;
        padding-bottom: 20px;
    }

    .service1_section {
        height: auto;
        overflow: visible;
        padding-bottom: 25px;
    }

    .inner_service_img img {
        height: 388px;
        width: 100%;
        margin-bottom: 0px;
    }

    .service_prev_nxt_button i {
        font-size: 20px;
    }

    .service1_section .about_grid_left {
        position: unset;
        height: auto;
    }

    .about_grid_left {
        width: 100%;
    }

    .project_details_page .next_btn {
        bottom: 15px;
    }

    .project_details_page .prev_btn {
        bottom: 15px;
    }

    .next_btn {
        bottom: -15px;
        right: 10px;
    }

    .prev_btn {
        bottom: -15px;
    }

    .project_section,
    .contact_section {
        height: auto;
        overflow: auto;
    }

    .project_all_details {
        padding-top: 30%;
        padding-right: 5px;
        padding-left: 5px;
    }

    .project_all_details_tab button.owl-prev span,
    .project_all_details_tab button.owl-next span {
        padding: 0px 19px 8px;
    }

    .project_all_details_tab button.owl-next {
        right: -7px;
    }

    .project_all_details_tab button.owl-prev {
        left: -5px;
    }

    .tab_main_head,
    .tab_main_head1,
    .tab_main_head2,
    .tab_main_head3 {
        display: none;
    }

    .inner_project_img {
        height: 350px !important;
        margin-top: 30px;
        object-fit: none;
    }



    .contact_section_padding {
        padding-top: 26%;
    }

    .header_sidebar {
        left: 10px;
    }

    .arrow-button {
        top: unset;
        z-index: 0;
    }

    .prev-arrow1,
    .next-arrow1 {
        bottom: 42% !important;
    }

    .next-arrow1 {
        right: 20px !important;
    }

    .prev-arrow1 {
        left: 20px !important;
    }

    .expanded-image {
        max-height: 50%;
        object-fit: cover;
    }

    .prev-arrow {
        left: 5px;
        bottom: 37%;
    }

    .next-arrow {
        right: 5px;
        bottom: 37%;
    }

    .image_project {
        height: 355px;
    }

    .project_all_details_tab button.owl-prev,
    .project_all_details_tab button.owl-next {
        top: 43%;
    }

    .project_ongoing_details_tab .nav {
        gap: 0px !important;
    }

    .submenus-container {
        display: none;
    }

    .submenu-container {
        display: inline-block;
        border-bottom: 1px solid #ffffff45;
    }

    div#dropdown1 a,
    div#dropdown2 a {
        border-bottom: none;
    }

    .side_nav_menu {
        padding: 4px 25px 4px 20px;
        margin-top: 15px;
    }

    .submenu {
        padding-bottom: 10px;
    }

    .project_content_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .header_sidebar .sidenav a {
        border-bottom: 1px solid #ffffff45;
        font-size: 22px;
        padding: 10px 10px;
    }

    .social_media_icons h2 {
        font-size: 16px;
    }

    .submenu_flex {
        justify-content: space-between;
    }

    .social_media_icons {
        bottom: 10px;
    }

    .contact_form {
        padding: 30px 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .prev_nxt_button {
        position: unset;
    }

    .pre_btn {
        left: 0;
    }

    .project_all_details .head_section h2 {
        text-align: center;
    }

    .project_all_details .head_section h2:after {
        margin: 15px auto;
    }

    .fixed-side-label {
        left: 15px;
    }

    .responsive_width {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
    }

    .responsive_width .image_project {
        height: 270px;
    }

    .go-back-wrapper {
        bottom: 15px;
        left: 335px;
    }

    .hero img {
        object-fit: cover;
    }

    .service_img {
        grid-template-columns: repeat(2, 1fr);
    }

    .project_content_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .head_section h2 {
        font-size: 37px;
    }

    .contact_section .head_section h2:after {
        margin: 10px auto 20px;
    }

    .contact_section {
        height: auto;
        overflow: auto;
        padding-bottom: 20px;
    }

    .about_grid {
        grid-template-columns: repeat(1, 100%);
        position: relative;
        padding-bottom: 50px;
    }

    .about_grid_left {
        padding-top: 15%;
    }

    .service1_section {
        height: auto;
        overflow: auto;
        padding-bottom: 50px;
    }

    .inner_project_img {
        height: 508px !important;
        width: 100%;
        margin-top: 30px;
    }

    .service1_section .about_grid_left {
        position: unset;
        height: auto;
    }

    .prev_btn,
    .next_btn {
        bottom: -15px;
    }

    .project_details_page .next_btn {
        bottom: 15px;
    }

    .project_details_page .prev_btn {
        bottom: 15px;
    }

    .next_btn {
        right: 17px;
    }

    .prev_btn {
        left: 22px;
    }

    .project_all_details {
        padding-top: 12%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .tab_main_head,
    .tab_main_head1,
    .tab_main_head2,
    .tab_main_head3 {
        display: none;
    }

    .project_content__inner_grid {
        margin-top: 20px;
    }

    .service_all_details {
        padding-top: 14%;
        padding-right: 0px;
        padding-left: 0px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .prev_nxt_button {
        display: none;
    }

    .prev_nxt_btn_resp {
        display: flex;
        justify-content: space-between;
        width: 42%;
        margin-left: 27px;
        margin-bottom: 20px;
    }


    .go-back-wrapper {
        position: unset;
    }

    .social_media_icons h2 {
        font-size: 13px;
    }

    .side_nav_menu {
        padding: 4px 8px 4px 15px;
        margin-top: 30px;
    }

    .header_sidebar .sidenav a {
        font-size: 28px;
    }

    .project_details_page .next_btn {
        position: unset;
    }

    .project_details_page .pre_btn {
        position: unset;
    }

    .responsive_width {
        width: 85%;
        margin-right: auto;
        margin-left: auto;
    }

    .hero img {
        object-fit: cover;
    }

    .contact_section .head_section h2:after {
        margin: 2px auto 17px;
    }

    .head_section h2:after {
        margin: 10px auto 0px;
    }

    .head_section h2 {
        font-size: 37px;
        text-align: center;
    }

    .service_img {
        margin-top: 28px;
    }

    .contact_section {
        height: auto;
        overflow: auto;
        padding-bottom: 20px;
    }

    .contact-area ul {
        padding: 0;
    }

    .contact-area {
        padding: 30px 25px 30px 14px;
    }

    .next_btn {
        right: 25px;
        bottom: -130px;
    }

    .prev_btn {
        left: 25px;
        bottom: -130px;
    }

    .tab_main_head,
    .tab_main_head1,
    .tab_main_head2,
    .tab_main_head3 {
        display: none;
    }

    .project_all_details {
        padding-top: 11%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .project_all_details_tab {
        margin-top: 25px;
    }

    .project_content_grid {
        margin-top: 42px;
    }

    .service1_section {
        height: auto;
        overflow: auto;
    }

    .inner_project_img {
        height: 762px !important;
        width: 100%;
        object-fit: cover;
    }

    /* .about_grid {
        padding-bottom: 20px;
    } */

    .about_grid_left p {
        margin-top: 10px;
        font-size: 16px;
    }

    .service_img img {
        height: 200px;
    }

    .prev_nxt_button i {
        font-size: 14px;
    }

    .about_grid_left {
        padding-top: 25%;
        width: 85%;
        padding-right: 20px;
        padding-left: 20px;
    }

    .about_grid_right img {
        height: 750px;
    }

    .about_us_section {
        overflow: auto;
    }

    .service1_section .owl-dots {
        display: none;
    }

    .image_project {
        height: 275px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    /* .next_btn {
        right: 25px;
    } */

    /* .prev_btn {
        left: 25px;
    } */

    .tab_main_head {
        left: 11px;
    }


    .project_inner_img img {
        height: 100dvh !important;
        width: 100%;
    }

    .tab_main_head2 {
        left: 25px;
    }

    .submenus-container:hover~.other-links {
        transform: translateY(250px);
        transition: transform 0.5s ease-in-out;
    }

    .about_grid_left {
        width: 75%;
    }

    .go-back-wrapper {
        left: 200px;
    }

    .project_details_page .prev_nxt_button {
        display: flex;
        justify-content: space-between;
        position: absolute;
        bottom: 21px;
        width: 100%;
    }

    .project_details_page .pre_btn {
        position: unset;
    }

    .go-back-wrapper {
        position: unset;
    }

    .project_details_page .next_btn {
        position: unset;
    }

    .project_details_page .prev_nxt_btn_resp {
        display: none !important;
    }
}

@media only screen and (min-width: 1400px) and (max-width: 1450px) {
    .submenus-container:hover~.other-links {
        transform: translateY(250px);
        transition: transform 0.5s ease-in-out;
    }
}


.sortable-ghost {
    opacity: 0.4;
    background: #c8ebfb;
}

/* Optional: Add a grab cursor to indicate draggability */
.card-img-top {
    cursor: grab;
}

.card-img-top:active {
    cursor: grabbing;
}