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

/* Style for each slide */
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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