/* Ad Banners Section Styles */
.ad-banners-swiper {
    padding: 20px 0 50px;
    position: relative;
}

.ad-banner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ad-banner:hover {
    transform: translateY(-5px);
}

.ad-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ad-banner:hover img {
    transform: scale(1.03);
}

.ad-banners-swiper .swiper-pagination {
    bottom: 0;
}

.ad-banners-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.ad-banners-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.ad-banners-swiper .swiper-button-next,
.ad-banners-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ad-banners-swiper .swiper-button-next:hover,
.ad-banners-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.ad-banners-swiper .swiper-button-next:after,
.ad-banners-swiper .swiper-button-prev:after {
    font-size: 18px;
}

@media (max-width: 768px) {
    .ad-banners-swiper {
        padding: 20px 0 40px;
    }
}
