/* Default Pagination Bullets */
.dots-into-slide .swiper-pagination span {
    width: 30px; /* Adjust dash width */
    height: 5px;  /* Adjust dash height */
    border-radius: 10px; /* Makes it rounded */
    background: black; /* Default color */
    opacity: 0.5; /* Adjust transparency */
    margin: 0 5px; /* Spacing between dashes */
    transition: all 0.3s ease-in-out;
    bottom: auto;
    transform: translateY(15px); /* Moves it up */
    position: relative;
    overflow: hidden;
}

/* Active Pagination Bullet with Progress Effect */
.dots-into-slide .swiper-pagination .swiper-pagination-bullet-active {
    width: 45px; /* Adjust dash width */
    height: 5px;  /* Adjust dash height */
    border-radius: 10px; /* Makes it rounded */
    background: #3274C4; /* Active bullet color */
    opacity: 1;
    bottom: auto;
    transform: translateY(15px); /* Moves it up */
}

/* Progress Bar Effect */
.dots-into-slide .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #007bff; /* Blue progress fill */
}