/* Custom styles for Swiper slider */
.mySwiper {
    width: 100%;
    /* height: 420px; */
}

.slider-content {
    /* width: 80%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px; */
}

.slider-title {
    color: #155724;
    font-weight: 700;
    font-size: 2.5rem;
}

.slider-subtitle {
    color: #155724;
    font-weight: 600;
    font-size: 1.5rem;
}

.slider-description {
    color: #333;
    font-size: 1.1rem;
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #28a745 !important;
    background-color: rgba(255, 255, 255, 0.6);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
}

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

/* Pagination bullets */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: #28a745;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-content {
        width: 90%;
        padding: 1.5rem;
    }

    .slider-title {
        font-size: 1.8rem;
    }

    .slider-subtitle {
        font-size: 1.3rem;
    }

    .slider-description {
        font-size: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .slider-content {
        width: 95%;
        padding: 1rem;
    }

    .slider-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem !important;
    }

    .slider-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem !important;
    }

    .slider-description {
        font-size: 0.9rem;
        margin-bottom: 1rem !important;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}
