/* Container to fill the entire screen */
.swiper {
    width: 100%;
    height: 600px;
    /* border: 1px solid black; */
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 50%;
    height: 50%;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
}

/* Ensure images fill the slide properly */
/* .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */