.dots-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    backdrop-filter: none;
    padding: 10px 20px;
    z-index: 1999;
}

/* Left & Right Arrows */
.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow img {
    width: 20px;
    height: 20px;
}

/* Navigation Dots */
.nav-dots {
    margin: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Default Dot Style */
.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: black; /* Filled by default */
    display: inline-block;
    transition: all 0.3s;
}

/* Active (Selected) Dot */
.nav-dot.active {
    width: 12px;
    height: 12px;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid black;
}
