/* Container */
.owl-carousel {
    position: relative;
    padding-bottom: 50px; /* space for dots */
        overflow: visible; /* ensure nav is not clipped */


}

/* Nav Arrows */
.owl-carousel .owl-nav {
    position: absolute;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
    pointer-events: auto;
    background-color: #0000007d !important;
    color: #fff !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
    transform: scale(1.1);
}

/* Position arrows outside */
/* .owl-carousel .owl-prev {
    position: absolute;
    left: 0;
}

.owl-carousel .owl-next {
    position: absolute;
    right: 0;
} */

/* Dots */
.owl-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.owl-stage-outer{
    padding: 0;
}