.swiper {
    width: 65%;
    height: 450px;
    margin: 70px auto 30px auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.swiper-slide {
    text-align: center;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: fill;
    margin: 0 auto;
    display: block;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    --swiper-navigation-size: 22px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

/* Container için stil */
.slider-container {
    padding-top: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 0;
}

/* Mobil cihazlar için duyarlı tasarım */
@media (max-width: 768px) {
    .swiper {
        height: 350px;
        width: 92%;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .swiper {
        height: 280px;
        width: 90%;
        margin-top: 50px;
    }
} 