/* Slider Styles */
.hero-slider {
    width: 100%;
    margin: 4rem auto;
    padding: 0;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Navigation Arrows */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--text-color);
    background-color: rgba(0, 0, 0, 0.5);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background-color: rgba(12, 166, 250, 0.8);
    transform: scale(1.1);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

/* Pagination Dots */
.hero-slider .swiper-pagination {
    bottom: 20px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .hero-slider {
        min-height: 200px;
    }
    
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .hero-slider .swiper-pagination {
        bottom: 10px;
    }
    
    .hero-slider .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-slider {
        min-height: 150px;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-slider {
        min-height: 200px;
    }
}

