/********** Template CSS **********/
:root {
    --primary: #1b5d80;
    --secondary: #72d0d0;
    --light: #EDF1FC;
    --dark: #17224D;
}

body{
    padding: 0;
    margin: 0;
}
.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.lightcolor{
    color: var(--dark);
}

        
/*** Navbar ***/
.top-bar {
    height: 130px;
    padding: 0 4rem;
}

.nav-bar {
    position: relative;
    padding: 0 4.75rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.logo-img {
    max-width: 100% !important;
    height: auto;
    margin-top: -30px;
    display: block;
}
/*** Header ***/
.header-section-item .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-section-item .container::before,
.header-section-item .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-section-item .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

   
@media (max-width: 768px) {
    .header-section .header-section-item {
        position: relative;
        min-height: 500px;
    }
    .header-section .header-section-item picture,
    .header-section .header-section-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-section .header-section-item h5,
    .header-section .header-section-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-section .header-section-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-section .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.page-header {
  position: relative;
 
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    image-set(
      url("../images/bg1_large.avif") type("image/avif"),
      url("../images/bg1_large.webp") type("image/webp"),
      url("../images/bg1_large.jpg") type("image/jpg")
    );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .page-header {
    background:
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      image-set(
        url("../images/bg1_medium.avif") type("image/avif"),
        url("../images/bg1_medium.webp") type("image/webp"),
        url("../images/bg1_medium.jpg") type("image/jpg")
      );
       background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  }
}

@media (max-width: 768px) {
  .page-header {
    background:
      linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
      image-set(
        url("../images/bg1_small.avif") type("image/avif"),
        url("../images/bg1_small.webp") type("image/webp"),
        url("../images/bg1_small.jpg") type("image/jpg")
      );
       background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  }
}

/*.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../images/bg1.jpg) center center no-repeat;
    background-size: cover;
}*/

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

 .how-it-works-section {
            position: relative;
           
            padding-bottom: 60px;
            overflow: hidden;
        }
        .how-it-works-bg {
           /* background-color: var(--primary);  bg-primary is a variable in Bootstrap, using the actual color value is more reliable for custom styles 
            color: white;*/
            padding: 100px 0 150px;
            text-align: center;
        }
        .how-it-works-bg h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: bold;
        }
        .how-it-works-bg p {
            font-size: 1.1rem;
            margin-bottom: 40px;
        }
        .card-container {
            position: relative;
            z-index: 1;
            margin-top: -100px;
        }
        .card {
            border: none;
            border-radius: 5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 10px;
            text-align: center;
            height: 100%;
            background-color: #ffffff;
            margin: 0 10px;
        }
        /* Correct way to style your images within the cards */
        .card-icon {
            width: 140px;
            height: 140px;
            object-fit: contain;
            
        }
        .card-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--light);  /*Matching the blue section's color */
            color: var(--primary);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            border: 3px solid var(--primary);
        }
        .card-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #343a40;
            margin-bottom: 15px;
        }
        .card-text {
            color: #6c757d;
            font-size: 0.95rem;
        }
        .card-wrapper {
            position: relative;
            margin-bottom: 30px;
        }
        /* Custom column for 5 cards in a row */
        @media (min-width: 992px) {
            .col-lg-2-4 {
                flex: 0 0 auto;
                width: 20%;
            }
        }

.service-item-top img {
    transition: .5s;
}

.service-item-top:hover img {
    transform: scale(1.1);
}

.service-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.service-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    transition: .5s;
}

.service-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}
/* Container for the service items */
.service-row {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next row */
    align-items: stretch; /* This is the magic for equal height */
}

/* Individual service item wrapper */
.service-item {
    position: relative; /* Essential for positioning the content box */
    display: flex;
    flex-direction: column; /* Stacks image and content vertically */
}

/* Image container with fixed height */
.service-image-box {
    position: relative;
    width: 100%;
    /* To create a consistent aspect ratio for the image, you could use padding-top. */
    /* For simplicity, we'll set a fixed height here. Adjust as needed. */
    height: 250px; 
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the box without distortion */
}

/* The content box that overlaps the image */
.service-content-box {
    background-color: #f8f9fa; /* bg-light */
    padding: 1.5rem;
    position: relative;
    /* Overlapping effect using a negative margin */
    margin-top: -50px; 
    /* Slightly less width using margin-left/right, a calc function, or padding */
    width: 90%; /* For slightly less width */
    left: 50%;
    transform: translateX(-50%); /* Centers the content box */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2; /* Ensures it sits on top of the image */
    
    /* Flexbox to push the "Read More" button to the bottom */
    display: flex;
    flex-direction: column;
}

/* This is the key to pushing the button to the bottom */
.service-content-box p {
    flex-grow: 1;
}

.service-content-box .btn {
    /* Style your button here */
    align-self: flex-end;
}

/*** Booking ***/
/*** Booking ***/
.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-text {
    height: 90px;
    overflow: hidden;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}

.team-item:hover .team-text .bg-light {
    margin-top: -90px;
}

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item .testimonial-text::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    border: 15px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;

}

.testimonial-carousel .owl-item.center .testimonial-text::after {
    border-color: var(--primary) transparent transparent transparent;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    font-size: 30px;
    color: var(--primary);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}


.feature-item img,
.feature-item .icon {
    display: inline-flex;
}

.feature-item.image {
    max-width: 250px;
    margin-top: 35px;
}

.feature-item h4 {
    font-size: 1.5rem;
}

.feature-item .icon {
    z-index: 1;
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--secondary);
    vertical-align: top;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.feature-item .text h3 {
    width: 100%;
}

.image.mobile-apps>img {
    opacity: 0;
}

.image.mobile-apps.active>img {
    opacity: 1;
}
.app-image {
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.app-image>img{
    max-width: 280px;
    margin: 0 auto;
    display: inline-block;
    pointer-events: none;
    position: inherit;
    z-index: 100;
}



.counter-section {
            position: relative;
            background: url('../images/section-bg.webp') no-repeat center center/cover;
            /*height: 400px;  Adjust height as needed */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 40px 0px;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #1b5d80; /* Your desired overlay color */
            opacity: 0.8; /* Adjust opacity as needed */
        }

        .counter-content {
            position: relative;
            z-index: 1; /* Puts content on top of the overlay */
        }


  .promise-section {
            background-color: var(--primary);
            position: relative;
            min-height: 600px; /* Increased height to create more space */
            color: white !important;
            overflow: hidden;
            display: flex;
        }

        .promise-content {
            padding: 60px 40px;
            width: 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
            color: white !important;
        }

        .promise-content h6 {
            font-size: 1rem;
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .promise-content h2 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .promise-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .promise-image-wrapper {
            position: absolute;
            top: 0;
            right: 0;
            width: 45%;
            height: 480px; /* Decreased image height relative to the section */
            z-index: 1;
        }

        .promise-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .promise-section {
                flex-direction: column;
                min-height: auto;
            }
            .promise-content {
                width: 100%;
                padding: 40px 20px;
            }
            .promise-image-wrapper {
                position: relative;
                width: 100%;
                left: 0;
                height: 300px;
            }
             .promise-content h2 {
                font-size: 2.2rem;
            }
        }






/* Remove Bootstrap default accordion arrow */
.accordion-button::after {
  content: none !important;
  background-image: none !important;
  display: none !important;
}
.accordion-item {
  margin-bottom: 1rem; /* adjust value as needed */
  border: 1px solid #ddd; /* optional: light border for separation */
  border-radius: 0.5rem;  /* optional: rounded corners */
}
.service-img {
  width: 100%;
  height: 300px;   /* fix the height, adjust as needed */
  object-fit: cover; /* ensures image fills box without distortion */
  
  
}

/* Style the sub dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .submenu {
  display: none;           /* hidden by default */
  position: absolute;
  top: 0;
  left: 100%;              /* align at right edge */
  margin-top: -0.25rem;    /* small adjustment */
  margin-left: 0;
}

/* Show submenu only when hovering Service Details */
.dropdown-submenu:hover > .submenu {
  display: block;
}


  .section-container {
            padding: 2rem 0;
        }
        /* Make columns fill the height */
        .image-card, .sale-ad, .ad-link {
            height: 100%;
            margin-bottom: 0; /* Remove margin from individual cards inside the flex container */
        }
        .image-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            cursor: pointer;
        }
        .image-card:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image fills the space */
            display: block;
        }

        /* Styles for the "Rent" ad overlay */
        .ad-overlay {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 120px;
            height: 120px;
            background-color: #e54d62;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            text-transform: uppercase;
            text-align: center;
            font-family: sans-serif;
            padding: 10px;
            line-height: 1.2;
        }
        .ad-overlay .intro-text {
            font-size: 10px;
        }
        .ad-overlay .main-text {
            font-size: 1.5rem;
            margin: 0;
            line-height: 1;
        }

        /* Styles for the "Sign Cleans" and "Mega Clean" ad links */
        .ad-link {
            display: block;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            text-decoration: none;
        }
        .ad-link:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .ad-link img { 
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 8px;
        }

        /* Specific styles for ads with content overlays (like Sign Cleans) */
        .ad-with-overlay {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            height: 100%;
            overflow: hidden;
            color: white;
        }

        .ad-background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .ad-content-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.6), transparent);
            color: white;
            padding: 1.5rem 1rem;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        /* ... (other ad-content-overlay styles remain the same) ... */

        .arrow-button {
            background-color: white;
            color: #2c3e50;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
        }

        .ad-with-overlay:hover .arrow-button {
            background-color: #f39c12;
            color: white;
        }

        /* Styles for the "Sale" ad on the right */
        .sale-ad {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            border-radius: 8px;
            padding: 3rem 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            height: 100%;
        }




         .image-carousel-section {
      margin: 0;
      padding: 0;
      width: 100%;
    }

    .image-carousel-section .owl-carousel .item {
      width: 100%;
      height: 400px; /* fixed height */
      position: relative;
      overflow: hidden;
    }

    .image-carousel-section .owl-carousel .item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      display: block;
    }

    /* 🔵 Light overlay */
    .image-carousel-section .owl-carousel .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 🔥 black overlay */
  pointer-events: none; /* so it doesn’t block clicks */
}

   

    /* Hide dots & arrows only for this section */
    .image-carousel-section .owl-dots,
    .image-carousel-section .owl-nav {
      display: none !important;
    }

    /* .glightbox-container .gslide-image {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.glightbox-container .gslide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}*/