.v-testimonial-slider .swiper-pagination {
    right: 10px;
    /* Position on the right */
    top: 50%;
    transform: translateY(-50%);
    /* Vertically center */
    display: flex;
    flex-direction: column;
    /* Stack dots vertically */
    gap: 8px;
    /* Spacing between dots */
    justify-content: center;
    left: auto;
    /* Ensure no conflict with left: 0px */
}


.swiper-pagination-bullet-custom {
    width: 8px;
    /* Default size */
    height: 8px;
    background: #000;
    /* Default color */
    opacity: 0.2;
    /* Inactive opacity */
    border-radius: 50%;
    transition: background 0.3s, opacity 0.3s;
    /* Smooth transitions */
}

.swiper-pagination-bullet-custom.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-theme-color, #007aff);
    /* Active color */
}

/* Hide pagination on small screens */
@media (max-width: 991px) {
    .v-testimonial-slider .swiper-pagination {
        display: none !important;
    }
}