/* Container Styling */
.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: auto;
    position: relative;
    padding-bottom: 40px; /* Adds spacing for pagination dots */
}

/* Slide Styling */
.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.swiper-slide h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: #1A2884;
    margin-bottom: 10px;
}

.swiper-slide p {
    font-size: 1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.swiper-slide img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Pagination Styling */
.swiper-pagination {
    position: static;
    margin-top: 10px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #ccc;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #4169E1; /* Blue highlight for active dot */
    opacity: 1;
}

/* Overlay Image Styling */
.static-overlay-image {
    position: absolute;
    bottom: 0;
    right: 350px;
    width: 150px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

/* Adjust for Responsive Screens */
@media (max-width: 768px) {
    .swiper-slide h2 {
        font-size: 1.8rem;
    }
    .static-overlay-image {
        width: 120px;
    }

    .static-overlay-image {
        position: absolute;
        bottom: 0;
        right: 18px;
        width: 100px;
        height: auto;
        z-index: 10;
        pointer-events: none;
    }
}
