/**
 * Sektörler Swiper - Mevcut custom.css ile uyumlu
 * Orijinal service-item stilini kullanır
 */

.sektorler-swiper-container {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
}

.sektorler-swiper {
    width: 100%;
    overflow: hidden;
}

/* Swiper içindeki service-item için küçük uyarlamalar */
.sektorler-swiper .service-item {
    height: 100%;
}

/* Swiper Settings */
.sektorler-swiper .swiper-slide {
    height: auto;
}

/* Navigation Buttons */
.sektorler-prev,
.sektorler-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sektorler-prev:hover,
.sektorler-next:hover {
    background: var(--accent-color);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.sektorler-prev::after,
.sektorler-next::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.sektorler-prev:hover::after,
.sektorler-next:hover::after {
    color:var(--secondary-color);
}

/* Pagination */
.sektorler-pagination {
    bottom: 20px !important;
}

.sektorler-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary-color-dark);
    opacity: 1;
    transition: all 0.3s ease;
}

.sektorler-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 575px) {
    .sektorler-prev,
    .sektorler-next {
        width: 35px;
        height: 35px;
    }
    
    .sektorler-prev::after,
    .sektorler-next::after {
        font-size: 14px;
    }
}
