/* Swiper Slider Styles */
.swiper-container {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--light-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
}

.swiper-pagination-bullet {
    background: var(--dark-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Hero Slider */
.hero-slider .swiper-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slider .hero-content {
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 1;
}

.hero-slider .hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider .hero-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-slider .hero-content .btn {
    box-shadow: 0 4px 12px rgba(255, 107, 139, 0.4);
}

/* Services Slider */
.services-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.services-slider .service-card {
    width: 100%;
    max-width: 300px;
}

/* Testimonials Slider */
.testimonials-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonials-slider .testimonial {
    width: 100%;
    max-width: 300px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slider .hero-content h2 {
        font-size: 2rem;
    }

    .hero-slider .hero-content p {
        font-size: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}