.hero-slider-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 40px;
}

.hero-swiper {
    width: 100%;
    overflow: visible;
}

.hero-slide-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: scale(0.95);
}

.swiper-slide-active .hero-slide-image {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

.hero-swiper .swiper-slide {
    opacity: 0.7;
    transition: all 0.4s ease;
}

.hero-swiper .swiper-slide-active {
    opacity: 1;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    border-radius: 10px;
    transition: all 0.5s ease;
}

.hero-button-next,
.hero-button-prev {
    color: #fff;
    background: rgba(59, 130, 246, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-button-next:hover,
.hero-button-prev:hover {
    background: rgba(59, 130, 246, 1);
    transform: scale(1.1);
}

.hero-button-next:after,
.hero-button-prev:after {
    font-size: 18px;
}

.hero-pagination {
    margin-top: 20px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 5px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #3b82f6;
    transform: scale(1.3);
}

@media (max-width: 767px) {
    .hero-slider-container {
        max-width: 100%;
    }

    .hero-button-next,
    .hero-button-prev {
        width: 36px;
        height: 36px;
    }

    .hero-button-next:after,
    .hero-button-prev:after {
        font-size: 16px;
    }
}