/* Hero Slider Styles */
.hero-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-image {
    width: 100%;
    object-fit: fill;
    object-position: center;
    display: block;
}


/* Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: rgba(0, 102, 204, 0.8);
}

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

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 30px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #1c1c1c;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 200px;
    }
    
    .hero-slide-image {
        height: 200px;
        object-fit: contain;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 200px;
    }
    
    .hero-slide-image {
        height: 200px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-slide-content {
        padding: 15px;
    }
}

/* Animation Effects */
.hero-swiper .swiper-slide-active .hero-title {
    animation: slideInUp 0.8s ease;
}

.hero-swiper .swiper-slide-active .hero-description {
    animation: slideInUp 1s ease;
}

.hero-swiper .swiper-slide-active .hero-button {
    animation: slideInUp 1.2s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}