/* ============================================================
   SWIPER CUSTOM STYLES
   ============================================================ */

.hero-slider {
    height: 500px !important;
    width: 100%;
}

.hero-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
}

.slide-content {
    padding: 40px;
    max-width: 80%;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #007bff;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}
.slide-btn:hover {
    background: #0056b3;
    color: #fff;
}

/* Slide Backgrounds */
.slide-bg-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.slide-bg-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.slide-bg-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    background: rgba(255,255,255,0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #007bff;
    color: #fff;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 12px;
    height: 12px;
}
.swiper-pagination-bullet-active {
    background: #007bff;
    width: 30px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 300px !important; }
    .slide-title { font-size: 1.5rem; }
    .slide-subtitle { font-size: 0.9rem; }
    .slide-btn { padding: 8px 20px; font-size: 0.9rem; }
}