.kurumlar-slider-wrapper {
    padding: 40px 0;
    width: 100%;
}

.kurumlarSwiper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 30px !important;
}

/* Linear transition kaldırıldı, standart ease efekti kullanılacak */

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.kurum-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.kurum-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.kurum-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.kurum-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.kurumlarSwiper .swiper-pagination {
    bottom: 5px !important;
}

.kurumlarSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.kurumlarSwiper .swiper-pagination-bullet-active {
    background-color: #333 !important;
    width: 25px;
    border-radius: 5px;
}