.owl-carousel .owl-dots {
    text-align: center;
    margin-bottom: 40px;/* Adjust as needed */
}

/* Style for individual dot */
.owl-carousel .owl-dot {
    display: inline-block;
    width: 72px;
    height: 8px;
    background-color: #FFF;
    border: 2px solid #B6975D !important; /* Border color */
    border-radius: 8px;
    outline: none !important;
    margin: 0 5px; /* Adjust as needed */
}

/* Style for active dot */
.owl-carousel .owl-dot.active {
    background-color: #B6975D; /* Active dot color */
}

/* Style for navigation arrows */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100% !important;
    z-index: 10;
}

/* Style for navigation arrow icons */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    font-size: 40px !important;
    position: absolute !important;
    color: #000 !important; /* Arrow color */
    background-color: #E4E0DB !important;
    border-radius: 50% !important;
    border: none !important;
    outline: none !important;
    width: 60px !important;
    height: 60px !important;
    text-align: center;
}

/* Style for navigation arrow hover (optional) */
.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    color: #ccc; /* Hover color */
}

/* Style for navigation arrow position */
.owl-carousel .owl-nav .owl-prev {
    left: 0 !important; /* Adjust as needed */
}

.owl-carousel .owl-nav .owl-next {
    right: 0 !important; /* Adjust as needed */
}

/* Style for the image inside the dot */
.owl-dot img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
}