/* Pagination container */
.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0;
    margin-top: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

/* Individual bullets */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #CCCCCC;
    opacity: 0.8;
    margin: 0 6px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active bullet */
.swiper-pagination-bullet-active {
    background: #002F5C;
    opacity: 1;
    transform: scale(1.2);
}

/* Hover effect */
.swiper-pagination-bullet:hover {
    opacity: 1;
    transform: scale(1.1);
}
