/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    margin: 30px 0 0 0 !important;
    overflow: hidden;
}

.hero-slider-container {
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slider {
    height: 500px;
    background: #f8fafc;
}

.hero-slide {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    overflow: hidden;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 1.5s ease, opacity 0.5s ease;
    opacity: 0.9;
}

.hero-slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide-active .hero-slide-background {
    transform: scale(1);
    opacity: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-slide-content {
    position: absolute;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0 50px;
    color: #fff;
    text-align: left;
    top: 50px;
    left: 50px;
}

.hero-slide-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

.hero-slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

.hero-slide-button {
    display: none;
    padding: 12px 25px;
    background: #7c3aed;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    transition-delay: 0.6s;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    border: 2px solid transparent;
}

.hero-slide-button:hover {
    background: #fff;
    color: #7c3aed;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
    border-color: #7c3aed;
}

.swiper-slide-active .hero-slide-subtitle,
.swiper-slide-active .hero-slide-title,
.swiper-slide-active .hero-slide-button {
    opacity: 1;
    transform: translateY(0);
}

/* Pagination Styles */
.hero-slider-pagination {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: #7c3aed;
    opacity: 1;
    width: 30px;
    border-radius: 6px;
    transform: scale(1.1);
}

/* Navigation Styles */
.hero-slider-button-prev,
.hero-slider-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-slider-button-prev {
    left: 20px;
}

.hero-slider-button-next {
    right: 20px;
}

.hero-slider-button-prev:hover,
.hero-slider-button-next:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-button-prev svg,
.hero-slider-button-next svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-slider-section {
        margin: 25px 0 0 0 !important;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .hero-slide-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        margin: 20px 0 0 0 !important;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .hero-slide-content {
        padding: 0 30px;
        top: 30px;
        left: 30px;
    }
    
    .hero-slide-title {
        font-size: 1.8rem;
    }
    
    .hero-slide-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-slide-button {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider-section {
        margin: 15px 0 0 0 !important;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .hero-slide-content {
        padding: 0 20px;
        top: 20px;
        left: 20px;
    }
    
    .hero-slide-title {
        font-size: 1.5rem;
    }
    
    .hero-slide-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-slide-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .hero-slider-button-prev,
    .hero-slider-button-next {
        width: 40px;
        height: 40px;
    }
} 