/* Custom styles for Swiper pagination bullets to match design */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 0.35;
    background: rgba(11, 18, 32, 0.9);
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 999px;
    display: inline-block;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
    background: linear-gradient(90deg, rgba(0, 170, 255, 0.95), rgba(255, 0, 180, 0.95));
}

/* Slide opacity/blur logic */
.swiper-slide {
    transition: filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.55;
    filter: blur(0.5px) saturate(0.95);
}

.swiper-slide-active {
    opacity: 1;
    filter: none;
    z-index: 10;
}