/* ===== UNIFORM IMAGE SIZE (NO CENTER EFFECT) ===== */

.swiper-slide img {
    width: 220px !important;
    height: 210px !important;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

/* REMOVE center image scaling completely */
.swiper-slide-active img {
    width: 210px !important;
    height: 210px !important;
}

/* OPTIONAL: remove any transform scaling */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1) !important;
}

/* Remove any active/center special effect */
.swiper-slide-active {
    transform: scale(1) !important;
}

/* Container */
.circle-center-slider-pro {
    width: 100%;
    padding: 30px 0;
}

/* ❌ REMOVE responsive size changes (IMPORTANT) */
@media(max-width:1024px){
    .swiper-slide img {
        width: 250px !important;
        height: 250px !important;
    }
}

@media(max-width:767px){
    .swiper-slide img {
        width: 250px !important;
        height: 250px !important;
    }
}