* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
}

html.lenis {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #ffffff;
    padding-left: 180px;
    padding-right: 180px;
}

nav .wrapper {
    position: relative;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.image-width {
    width: 100%;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background-color: rgba(17, 110, 59, 0.85) !important;
    width: 180px;
    line-height: 45px;
    padding-left: 0px;
    top: 76%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.13);
    z-index: 100;
    border-radius: 5px;
}

.nav-links li:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease-in-out;
    top: 60px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.brdr-btms {
    border-bottom: 1px solid #ffffff4d;
}

.hvr-clr {
    transition: all ease-in-out .5s;
}

.hvr-clr:hover {
    background-color: #137a3c;
    border-radius: 5px;
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }
    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }
    /* custom scroll bar */
     ::-webkit-scrollbar {
        width: 10px;
    }
     ::-webkit-scrollbar-track {
        background: #242526;
    }
     ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }
    #menu-btn:checked~.nav-links {
        left: 0%;
    }
    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }
    #close-btn:checked~.btn.menu-btn {
        display: block;
    }
    .nav-links li {
        margin: 15px 10px;
    }
    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }
    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }
    .row .mega-links li {
        margin: 0;
    }
    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

.nav-links {
    margin-bottom: 0px;
}

.icon-color {
    color: #000000;
}

.drp-dwn-clr {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
}


/* Arrow icon style */

.desktop-item .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
}


/* Rotate the arrow on hover of the parent li */

.nav-links li:hover>a .arrow {
    transform: rotate(180deg);
}

#showDrop:checked~label .arrow {
    transform: rotate(180deg);
}

#showDrop:checked+label .arrow {
    transform: rotate(180deg);
}

#showDrop:checked~.drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.arrow {
    margin-left: 50%;
    transition: transform 0.3s ease-in-out;
}

.contact-img {
    display: flex;
    flex-direction: row;
    border: 1px solid #116E3B;
    padding: 8px 15px;
    gap: 10px;
    position: relative;
    cursor: pointer;
    text-decoration: none !important;
}

.contact-btn {
    border-radius: 5px;
    color: #116E3B;
}

.arow-img {
    display: flex;
    margin: auto;
}

.contact-img .arow-img {
    transition: transform 0.4s ease-in-out;
}

.contact-img:hover .arow-img {
    transform: translateX(5px);
}

.text-area-sec {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.custom-caption {
    width: 85%;
    position: absolute;
    top: 63%;
    left: 180px;
    transform: translateY(-50%);
    color: #fff;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

.custom-heading {
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    position: relative;
    display: inline-block;
    /* Important for accurate after positioning */
}

.custom-heading::after {
    content: "";
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    left: 55%;
    margin-left: 10px;
    width: 208px;
    height: 1px;
    background-color: #ffffff;
}

.custom-content {
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 60px;
    padding-bottom: 40px;
}


/* Optional: Background overlay for better readability */

.carousel-indicators {
    padding-left: 175px !important;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* dark overlay */
    z-index: 1;
}

.banner-img-arrow {
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.banner-btn-arow {
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.arow-img-banner {
    display: flex;
    margin: auto 0;
}

.banner-img-arrow .arow-img-banner {
    transition: transform 0.4s ease-in-out;
}

.banner-img-arrow:hover .arow-img-banner {
    transform: translateX(5px);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(90px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-caption {
    opacity: 0;
    animation: none;
    transition: opacity 2s ease-out;
}

.custom-caption.animated {
    animation: fadeUp 2s ease-out forwards;
}

.blur-area-sec {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(2.5px);
    margin: auto 0;
    gap: 12px;
}

.img-links {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.banner-blur-arrow {
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: relative;
    cursor: pointer;
    align-items: end;
}

.banner-blur-arow {
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    align-items: end;
}

.arow-blur-banner {
    display: flex;
    margin: 0 auto;
}

.banner-blur-arrow .arow-blur-banner {
    transition: transform 0.4s ease-in-out;
}

.banner-blur-arrow:hover .arow-blur-banner {
    transform: translateX(5px);
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: left !important;
    padding: 0;
    margin-bottom: 2rem !important;
    margin-left: 0px !important;
}


/*----about-us-sectiopn======================================================================================*/

.common-container-arc {
    display: flex;
    position: relative;
    width: 100%;
    flex-direction: row;
    padding-left: 180px;
    padding-right: 180px;
}

.abt-area {
    display: flex;
    flex-direction: row;
    padding-top: 60px;
    padding-bottom: 100px;
    gap: 60px;
    overflow: hidden;
}

.about-one {
    display: flex;
    flex-direction: column;
}

.abt-head {
    color: #116E3B;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.abt-heading {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 24px;
}

.paragraph-mix {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.half-area {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    gap: 20px;
}

.area-one-half {
    color: #565656;
    text-align: justify;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.full-area {
    color: #565656;
    text-align: justify;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 24px;
}

.about-two {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-two-about {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.image-area-counter {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 14px;
}

.zoom-effect {
    overflow: hidden;
    display: inline-block;
}

.zoom-effect img {
    transition: transform 0.5s ease;
    display: block;
}

.zoom-effect:hover img {
    transform: scale(1.1);
    /* Adjust scale for zoom level */
}

.counter-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 90px;
    padding-bottom: 25px;
}

.image-area-counter {
    opacity: 0;
    transform: translateX(180px);
    transition: all 1s ease-in-out;
}

.image-area-counter.animate {
    opacity: 1;
    transform: translateX(0);
}

.number-area {
    display: flex;
    flex-direction: column;
}

.counting-num {
    color: #000;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.details-cont {
    color: #000;
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}

.line-vertical {
    border: 1px solid #898989;
    height: 30px;
    margin-top: 20px;
}

@media (max-width: 575px) {
    .image-area-counter {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* service-section=========================================================================================== */

.service-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-sub-head {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: 20px;
}

.service-img-content {
    display: flex;
    flex-direction: row;
    gap: 130px;
    padding-top: 40px;
    padding-bottom: 100px;
}

.service-image {
    width: 100%;
    position: relative;
    display: flex;
}

.service-text-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-point-head {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}

.service-point-content {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 20px;
    border-bottom: 1px solid #DBDBDB;
}

.service-colum {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}


/* slider-section============================================================== */

.swiper {
    width: 100%;
    padding-left: 15px;
    /* Add space to align left edge of first slide */
    box-sizing: border-box;
}

.swiper-slide {
    background: #fff;
    overflow: hidden;
    width: auto;
}

.swiper-slide img {
    width: 100%;
    display: block;
}

.swiper-pagination-bullet {
    background: white;
}

.swiper-slide {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.opac {
    opacity: 1 !important;
}

.swiper-slide-active {
    opacity: 1 !important;
}

.swiper-nav-buttons {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 11;
    display: flex;
    gap: 20px;
    box-sizing: border-box;
    pointer-events: none;
    justify-content: end;
}

.swiper-nav-buttons button {
    background: rgb(255, 255, 255);
    border: 2px solid #000000 !important;
    color: #000000;
    border: none;
    font-size: 20px;
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s ease;
}

.pad-top-head {
    padding-top: 30px;
    padding-bottom: 100px;
}

.slide-caption {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-top: 10px;
}

.slider-arrow {
    width: 10px !important;
    margin: auto 0;
}

.slide-text {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
}

.slider-arrow {
    transition: transform 0.3s ease-in-out;
}

.head-explore-img:hover .slider-arrow {
    transform: translateX(5px);
}

.swiper-slide:hover .slider-arrow {
    transform: translateX(5px);
}


/* gallery-area------------------------------------------------------------------------------------- */

.gallery-head-sec {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.head-explore-img {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.head-explore {
    color: #000000;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.swiper-slide {
    text-decoration: none !important;
}

.small-head-gallery {
    color: #565656;
    font-family: "Noto Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.work-content-grid {
    display: flex;
    flex-direction: row;
    display: grid;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 90px;
}

.col5_col4lg_col3-grid {
    grid-auto-flow: row;
    gap: 17px;
    grid-template-columns: repeat(4, 1fr);
    .spanItem {
        grid-column: span 2;
    }
    @media (max-width: 1366px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 17px;
    }
    @media (max-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);
        .spanItem {
            grid-column: span 2;
        }
        gap: 17px;
    }
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 850px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 575px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.hover-image {
    overflow: hidden;
    display: inline-block;
}

.hover-image img {
    transition: transform 0.6s ease-in-out;
    transform: scale(1);
}

.hover-image:hover img {
    transform: scale(1.1);
    /* zoom in */
}


/* form-area------------------------------------------------------------------------------------ */

.gap-center {
    gap: 90px;
}

.contact-form {
    font-family: "Noto Sans", sans-serif;
    width: 90%;
}

.contact-form label {
    display: block;
    padding-bottom: 10px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 2px;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #137a3c;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all ease-in-out .5s;
}

.contact-form button:hover {
    background-color: #0e5e2d;
}


/* footer-section========================================================================================= */

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 50px;
    text-decoration: none !important;
}

.ftr-nav-list {
    color: #000000;
    font-family: "Noto Sans", sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    transition: all ease-in-out .5s;
    cursor: pointer;
    text-decoration: none;
}

.ftr-nav-list:hover {
    color: #107340;
}

.ftr-top {
    padding-bottom: 150px;
}

.copy-right-sec {
    color: #565656;
    text-align: right;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: flex;
}

.gl-color {
    color: #137a3c;
    text-decoration: none;
    margin-left: 5px;
}

.social-media {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.social-img {
    display: flex;
    margin: auto;
}

.footer-section {
    gap: 60px;
}

.soc-link {
    display: flex;
    margin: auto 0;
}

.new-zoom {
    overflow: hidden;
    position: relative;
}

.futuristic-zoom-img {
    display: block;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
    transform-origin: center center;
    will-change: transform, filter;
}

.new-zoom:hover .futuristic-zoom-img {
    transform: scale(1.15) rotateZ(1deg);
    filter: brightness(1.1) saturate(1.2) drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.img-fit {
    object-fit: cover;
}

.line-color {
    color: #DBDBDB;
}

@media screen and (max-width: 1700px) {
    .custom-caption {
        top: 50%;
    }
    .abt-heading {
        font-size: 30px;
    }
    .service-img-content {
        gap: 70px;
    }
}

@media screen and (max-width: 1600px) {
    .common-container-arc {
        padding-left: 130px;
        padding-right: 130px;
    }
    .custom-caption {
        left: 130px;
    }
    .carousel-indicators {
        padding-left: 130px !important;
    }
    nav {
        padding-left: 130px;
        padding-right: 130px;
    }
    .about-one {
        width: 45%;
    }
    .about-two {
        width: 55%;
    }
    .about-two-about {
        width: 100%;
    }
}

@media screen and (max-width: 1500px) {
    .service-image {
        width: 50%;
        position: relative;
        display: flex;
    }
    .service-colum {
        width: 50%;
    }
    .service-colum {
        gap: 30px;
    }
    .service-point-head {
        font-size: 20px;
    }
}

@media screen and (max-width: 1400px) {
    .counter-area {
        gap: 60px;
    }
}

@media screen and (max-width: 1300px) {
    .common-container-arc {
        padding-left: 80px;
        padding-right: 80px;
    }
    .custom-caption {
        left: 80px;
    }
    .carousel-indicators {
        padding-left: 80px !important;
    }
    nav {
        padding-left: 80px;
        padding-right: 80px;
    }
    .custom-caption {
        top: 40%;
    }
}

@media screen and (max-width: 1200px) {
    .footer-section {
        gap: 30px;
    }
    .ftr-top {
        padding-bottom: 80px;
    }
    .gap-center {
        gap: 30px;
    }
}

@media screen and (max-width: 1100px) {
    .abt-area {
        flex-direction: column;
    }
    .about-one {
        width: 100%;
    }
    .about-two {
        width: 100%;
    }
    .about-two-about {
        width: 100%;
    }
    .image-area-counter {
        justify-content: space-between;
    }
}

@media screen and (max-width: 1024px) {
    .custom-content {
        font-size: 36px;
        line-height: 43px;
    }
    .service-img-content {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    .service-colum {
        width: 100%;
    }
    .service-image {
        width: 100%;
    }
    .service-img-content {
        padding-bottom: 50px;
    }
    .pad-top-head {
        padding-top: 30px;
        padding-bottom: 70px;
    }
    .work-content-grid {
        padding-bottom: 50px;
    }
    .contact-form {
        font-family: "Noto Sans", sans-serif;
        width: 100%;
    }
    .logo {
        width: 180px;
    }
}

@media screen and (max-width:970px) {
    .nav-links li a {
        color: #ffffff;
    }
    .contact-img {
        margin-left: 200px;
    }
}

@media screen and (max-width:900px) {
    .normal-view {
        display: none;
    }
    .res-view {
        display: flex;
    }
    .custom-heading::after {
        width: 85px;
    }
    .ftr-top {
        padding-bottom: 40px;
    }
}

@media screen and (min-width:900px) {
    .normal-view {
        display: flex;
    }
    .res-view {
        display: none;
    }
}

@media screen and (max-width:850px) {
    .custom-heading::after {
        width: 0px;
    }
    .swiper-nav-buttons button {
        font-size: 15px;
        padding: 2px 10px;
    }
}

@media screen and (max-width:767px) {
    .common-container-arc {
        padding-left: 30px;
        padding-right: 30px;
    }
    .custom-caption {
        left: 30px;
    }
    .carousel-indicators {
        padding-left: 30px !important;
    }
    nav {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width:720px) {
    .custom-caption {
        flex-direction: column;
    }
    .custom-caption {
        top: 45%;
    }
    .blur-area-sec {
        background: rgb(255, 255, 255);
    }
    .custom-heading {
        font-size: 15px;
        padding-bottom: 8px;
    }
    .custom-content {
        font-size: 34px;
        line-height: 38px;
    }
    .custom-content {
        padding-bottom: 20px;
    }
    .blur-area-sec {
        padding: 20px 0px;
    }
    .carousel-indicators {
        margin-bottom: .5rem !important;
    }
    .original-area {
        display: none;
    }
    .res-area-blur {
        display: flex;
    }
    .blur-area-sec {
        flex-direction: row;
        padding: 30px;
        gap: 12px;
        justify-content: space-between;
    }
    .img-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .arow-blur-banner {
        display: flex;
        margin: auto 0;
    }
    .banner-blur-arow {
        color: #000000;
    }
    .abt-area {
        padding-top: 20px;
    }
    .half-area {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }
    .full-area {
        padding-top: 0px;
    }
    .abt-heading {
        font-size: 25px;
    }
    .abt-heading {
        padding-bottom: 10px;
    }
    .service-sub-head {
        font-size: 25px;
    }
}

@media screen and (min-width:720px) {
    .original-area {
        display: flex;
    }
    .res-area-blur {
        display: none;
    }
}

@media screen and (max-width:700px) {
    .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width:650px) {
    .contact-img {
        margin-left: 100px;
    }
}

@media screen and (max-width:575px) {
    .common-container-arc {
        padding-left: 15px;
        padding-right: 15px;
    }
    .common-container-arc {
        padding-left: 15px;
        padding-right: 15px;
    }
    .custom-caption {
        left: 15px;
    }
    .carousel-indicators {
        padding-left: 15px !important;
    }
    nav {
        padding-left: 15px;
        padding-right: 15px;
    }
    .custom-caption {
        top: 40%;
    }
    .res-view {
        padding-top: 80px !important;
    }
    .banner-btn-arow {
        font-size: 14px;
    }
    .blur-area-sec {
        padding: 20px 15px !important;
    }
    .counter-area {
        gap: 25px;
    }
    .counter-area {
        justify-content: flex-start;
    }
    .abt-area {
        gap: 20px;
    }
    .contact-btn {
        font-size: 14px;
    }
    .contact-img {
        padding: 6px 8px;
    }
    .logo {
        width: 180px;
    }
    .nav-links {
        z-index: 10;
    }
    .abt-area {
        padding-bottom: 40px;
    }
    .service-img-content {
        padding-top: 20px;
    }
    .image-area-counter {
        flex-direction: column;
    }
    .img-fit {
        width: 100%;
    }
}

@media screen and (max-width:530px) {
    .img-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .blur-area-sec {
        flex-direction: row;
        padding: 30px;
        gap: 15px;
        justify-content: flex-start;
    }
    .banner-blur-arow {
        font-size: 14px;
    }
}

@media screen and (max-width:480px) {
    .contact-img {
        margin-left: 50px;
    }
}

@media screen and (max-width:450px) {
    .custom-content {
        font-size: 29px;
        line-height: 36px;
    }
    .contact-img {
        margin-left: 0px;
    }
}

@media screen and (max-width:390px) {
    .contact-btn {
        font-size: 12px;
    }
    .contact-img {
        padding: 4px 5px;
    }
}

@media screen and (max-width:370px) {
    .counter-area {
        gap: 15px;
    }
}

.ftr-links {
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    transition: all ease-in-out .5s;
}

.ftr-links:hover {
    text-decoration: none;
    color: #137a3c;
}


/* about-us-section--------------------------------------------------------------------------------------------------------------------- */

.extra-banner-header {
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    text-transform: uppercase;
    position: absolute;
    padding-left: 180px;
    bottom: 70px;
}

.abt-gap {
    gap: 60px;
}

.padd-b-110 {
    padding-bottom: 110px;
}

.work-content-taem {
    display: flex;
    flex-direction: row;
    display: grid;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
}

.col5_col4lg_col3-team {
    grid-auto-flow: row;
    gap: 100px;
    grid-template-columns: repeat(4, 1fr);
    .spanItem {
        grid-column: span 2;
    }
    @media (max-width: 1700px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    @media (max-width: 1366px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
    @media (max-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);
        .spanItem {
            grid-column: span 2;
        }
        gap: 50px;
    }
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    @media (max-width: 850px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    @media (max-width: 575px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.positions-team {
    color: #116E3B;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    padding-top: 10px;
}


/* --------------------------- */

.team-section {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
}

.img-director {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
}

.img-director img {
    width: 100%;
    filter: grayscale(100%);
    transition: filter .5s ease-in-out, transform .5s ease-in-out;
}

.team-section:hover .img-director img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-name {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 0%));
    color: #fff;
    font-family: 'Noto Sans', sans-serif;
    padding: 15px;
    transition: bottom .9s ease-in-out;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.team-section:hover .team-name {
    bottom: 0;
}

.team-person {
    color: #FFF;
    font-family: 'Noto Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
}

.team-arow {
    display: flex;
    margin: auto 0;
    width: 15px !important;
}


/* -------------------------------------------------- */

.timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 0px;
    margin: auto;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-top: 1px solid #107340;
    padding: 30px 20px;
    position: relative;
}

.timeline-dot {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #107340;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 40px;
    position: absolute;
    top: -20px;
    left: 0;
}

.timeline-content {
    padding-left: 60px;
}


/* Responsive Grid */

@media (min-width: 768px) {
    .timeline {
        grid-template-columns: 1fr 1fr;
    }
    .timeline-item {
        border-top: 1px solid #107340;
    }
    .timeline-dot {
        left: -15px;
    }
    .timeline-content {
        padding-left: 40px;
    }
}

.time-full-area {
    color: #565656;
    text-align: justify;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.time-heading {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 10px;
}

.time-content {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.timeline {
    position: relative;
    /* Needed for the pseudo-element to position absolutely */
}

.timeline::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 150px;
    width: 1.1px;
    background: #107340;
    left: 50.4%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-dot {
    z-index: 1;
    /* Make sure dot is above the center line */
}

.proffesional-area {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testi-content {
    color: #000;
    font-family: "Noto Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-right: 1px solid #DBDBDB;
    padding-right: 60px;
    margin-bottom: auto;
}

.testi-name {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.testi-country {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.qoute-img {
    width: 17.5px !important;
}


/* residential-area------------------------------------------------------------------- */

.work-content-residential {
    display: flex;
    flex-direction: row;
    display: grid;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
}

.col5_col4lg_col3-residential {
    grid-auto-flow: row;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    .spanItem {
        grid-column: span 2;
    }
    @media (max-width: 1700px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    @media (max-width: 1366px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    @media (max-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);
        .spanItem {
            grid-column: span 2;
        }
        gap: 30px;
    }
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    @media (max-width: 850px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    @media (max-width: 575px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 10px;
    }
}

.project-name {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.res-icon-img {
    margin: auto 0;
}

.zoom-res {
    overflow: hidden;
}

.zoom-res img {
    transition: transform 0.6s ease-in-out;
    transform-origin: center center;
}

.mains:hover .zoom-res img {
    transform: scale(1.1);
    /* You can adjust the scale value as needed */
}


/* services-------------------------------------------------------------------------------------------------------------- */

.service-small-head {
    color: #000000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 9px;
}

.service-small-content {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.point-interior {
    color: #000000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
}

.service-gap {
    gap: 40px;
}

.pad-rights-point {
    padding-right: 280px;
}

.hr-pad {
    padding-bottom: 40px;
}

.des-cons {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.des-cons-content {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.zooming-service {
    overflow: hidden;
}

.zooming-service img {
    transition: transform 0.5s ease-in-out;
}

.zooming-service:hover img {
    transform: scale(1.1);
}


/* project-detail----------------------------------------------------------------------------- */

.detail-place {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.project-gap {
    gap: 100px;
}

.abt-prjct {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.detail-head {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    padding-bottom: 10px;
}

.deatailss {
    color: #565656;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
}

.br-btm {
    border-bottom: 1px solid #DBDBDB;
}

.gap-24 {
    gap: 24px;
}

.gap-10 {
    gap: 10px;
}

.img-half {
    width: calc(50% - 8px);
}

.img-half-three {
    width: calc(33.33% - 10px);
}

.gap-16 {
    gap: 16px;
}


/* admin-section------------------------------------------------ */

.admin-section {
    padding-left: 360px;
    padding-right: 360px;
}

.admin-para {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gap-120 {
    gap: 120px;
}

.lines-shade {
    height: 250px;
    color: #DBDBDB;
    border: 1px !important;
}

.admin-names {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.admin-position {
    color: #116E3B;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}


/* contact-us------------------------------------------------------------------------ */

.contact-head {
    color: #000;
    font-family: "Noto Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.hr-wrapper {
    position: relative;
    height: 10px;
    margin: 40px 0;
}

.custom-hr {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border: none;
    border-top: 2px solid red;
    /* Change color as needed */
    transform: translateY(-50%);
}

.dot {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: green;
    border-radius: 50%;
    transform: translateY(-50%);
}


/* Positioning the dots with different classes */

.dot-one {
    left: 10%;
}

.dot-two {
    left: 50%;
}

.dot-three {
    right: 10%;
}

.absolute-line {
    position: absolute;
    width: 100%;
    border: 1px solid #DBDBDB;
    top: 50px;
}

.absolute-line {
    position: absolute;
    width: 100%;
    border: 1px solid #DBDBDB;
    top: 50px;
    left: 0;
}

.dot-one,
.dot-two,
.dot-three {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: green;
    border-radius: 50%;
    top: -5px;
    /* So it's centered over the line */
}


/* Position the dots along the line */

.dot-one {
    left: 3.5%;
}

.dot-two {
    left: 52%
}

.dot-three {
    left: 94%;
}


/* gallery---------------------------------------------------------------------------------------------------------- */

.work-content-gallery {
    display: flex;
    flex-direction: row;
    display: grid;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    padding-bottom: 90px;
}

.col5_col4lg_col3-gallery {
    grid-auto-flow: row;
    gap: 17px;
    grid-template-columns: repeat(4, 1fr);
    .spanItem {
        grid-column: span 2;
    }
    @media (max-width: 1366px) {
        grid-template-columns: repeat(4, 1fr);
        gap: 17px;
    }
    @media (max-width: 1200px) {
        grid-template-columns: repeat(4, 1fr);
        .spanItem {
            grid-column: span 2;
        }
        gap: 17px;
    }
    @media (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 850px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media (max-width: 575px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.gallery-zoom {
    overflow: hidden;
    position: relative;
}

.gallery-zoom img {
    transition: transform 0.5s ease;
    transform: scale(1);
}

.gallery-zoom:hover img {
    transform: scale(1.1);
    /* You can adjust scale value as needed */
}


/* whatsapp-icon------------------------------------------------------------- */

.wasp-icon {
    position: fixed;
    bottom: 135px;
    right: 40px;
    z-index: 9999;
    width: 40px;
    height: 40px;
    cursor: pointer;
}


/* Back to Top Button Style */

#backToTopBtn {
    position: fixed;
    bottom: 40px;
    right: 23px;
    z-index: 99;
    background-color: #116E3B;
    border: 1px solid #116E3B !important;
    color: white;
    border: none;
    outline: none;
    padding: 15px 22px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#backToTopBtn:hover {
    position: fixed;
    bottom: 40px;
    right: 23Spx;
    z-index: 99;
    border: 1px solid #116E3B !important;
    background-color: #ffffff;
    color: #116E3B;
    border: none;
    outline: none;
    padding: 15px 22px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.main-banner-sec {
    width: 100%;
}

.res-banner-sec {
    width: 100%;
}

@media screen and (max-width:1800px) {
    .admin-section {
        padding-left: 180px;
        padding-right: 180px;
    }
}

@media screen and (max-width:1700px) {
    .pad-rights-point {
        padding-right: 170px;
    }
}

@media screen and (max-width:1600px) {
    .extra-banner-header {
        font-size: 40px;
        padding-left: 130px;
    }
    .admin-section {
        padding-left: 130px;
        padding-right: 130px;
    }
}

@media screen and (max-width:1550px) {
    .gap-120 {
        gap: 70px;
    }
    .hr-pad {
        padding-bottom: 20px;
    }
    .point-interior {
        font-size: 15px;
        ;
    }
}

@media screen and (max-width:1500px) {
    .testi-content {
        padding-right: 25px;
    }
}

@media screen and (max-width:1400px) {
    .team-person {
        font-size: 26px;
    }
}

@media screen and (max-width:1300px) {
    .extra-banner-header {
        padding-left: 80px;
    }
    .gap-120 {
        gap: 30px;
    }
    .admin-section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media screen and (max-width:1200px) {
    .pad-rights-point {
        padding-right: 30px;
    }
    .service-gap {
        gap: 20px;
    }
}

@media (max-width: 1050px) {
    .pad-rights-point {
        padding-right: 15px;
    }
    .point-interior {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    hr.responsive-hide {
        display: none;
    }
    .project-gap {
        gap: 50px;
    }
}

@media (max-width:991px) {
    .project-gap {
        gap: 25px;
    }
}

@media screen and (max-width:767px) {
    .timeline::after {
        width: 0px;
    }
    .timeline-content {
        padding-left: 25px;
    }
    .timeline-item {
        padding: 20px 20px;
        position: relative;
    }
    .team-person {
        font-size: 22px;
    }
    .time-heading {
        font-size: 20px;
    }
    .extra-banner-header {
        padding-left: 30px;
    }
    .testi-content {
        border-right: 0px solid #DBDBDB;
    }
    .admin-section {
        padding-left: 30px;
        padding-right: 30px;
    }
    .work-content-gallery {
        padding-bottom: 40px;
    }
}

@media screen and (max-width:575px) {
    .abt-gap {
        gap: 20px;
    }
    .main-banner-sec {
        display: none;
    }
    .res-banner-sec {
        display: flex;
    }
    .extra-banner-header {
        padding-left: 15px;
    }
    .admin-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .res-img-width {
        width: 100%;
    }
    .project-name {
        font-size: 14px;
    }
    .gap-16 {
        gap: 5px;
    }
    .img-half {
        width: calc(50% - 3px);
    }
    .img-half-three {
        width: calc(33.33% - 3px);
    }
    .hr-pad {
        padding-bottom: 5px;
    }
    .service-gap {
        gap: 20px;
    }
    .wasp-icon {
        right: 15px;
    }
    #backToTopBtn {
        position: fixed;
        bottom: 75px;
        right: 13px;
        z-index: 99;
        background-color: #116E3B;
        border: 1px solid #116E3B !important;
        color: white;
        border: none;
        /* outline: none; */
        padding: 7px 14px;
        border-radius: 50%;
        font-size: 18px;
        cursor: pointer;
        display: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    .contact-img {
        display: none;
    }
}

@media screen and (max-width:767px) {
    .main-banner-sec {
        display: none;
    }
    .res-banner-sec {
        display: flex;
    }
    .org-pro {
        display: none;
    }
    .res-pro {
        display: flex;
    }
    .pad-top-head {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .extra-banner-header {
        font-size: 26px;
        bottom: 10px;
    }
    .absolute-line {
        position: absolute;
        width: 0%;
        height: 100%;
        border-left: 1px solid #DBDBDB !important;
        top: 0px;
        left: 0;
    }
    .dot-one {
        left: -5px;
        top: 38px;
    }
    .dot-two {
        left: -5px;
        top: 240px;
    }
    .dot-three {
        left: -5px;
        top: 378px;
    }
    .padd-b-110 {
        padding-bottom: 50px;
    }
}

@media screen and (min-width:767px) {
    .main-banner-sec {
        display: flex;
    }
    .res-banner-sec {
        display: none;
    }
    .org-pro {
        display: flex;
    }
    .res-pro {
        display: none;
    }
}

.mobile-butns {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: fixed;
    bottom: 0%;
    text-decoration: none !important;
    z-index: 100;
}

.call-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    background-color: #116E3B;
    color: #ffffff !important;
    text-decoration: none !important;
}

.mob-btn {
    font-size: 18px;
    font-family: Poppins;
    color: #ffffff;
    font-weight: 500;
}

.gap-res-10 {
    gap: 10px;
}

.active-clr {
    color: #0e5e2d !important;
}

@media screen and (max-width:575px) {
    .mobile-butns {
        display: flex;
    }
}

@media screen and (min-width:575px) {
    .mobile-butns {
        display: none;
    }
}

@media screen and (max-width:430px) {
    .copy-right-sec {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .gl-color {
        color: #137a3c;
        text-decoration: none;
        margin-left: 0px;
    }
}

@media screen and (max-width:970px) {
    .nav-links .drop-menu {
        background-color: rgba(0, 0, 0, 0) !important;
    }
    .brdr-btms {
        border-bottom: 1px solid #ffffff00;
    }
    .footer-nav {
        gap: 25px;
    }
}

@media screen and (max-width:575px) {
    .contact-form label {
        display: block;
        padding-bottom: 5px;
    }
}

.enw-btn {
    color: #ffffff;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 20px !important;
    height: 4px !important;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
    border-radius: 30px !important;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-image {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.nav-btn {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transform: translateY(-50%);
}

.left-btn {
    left: 30px;
}

.right-btn {
    right: 30px;
}

.zoom-res {
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
}