body {
    margin: 0;
}
.swiper-container {
    position: relative;
	height: 100vh;
	overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease; /* Adjusts fade timing */
}

/* Swiper applies .swiper-slide-active to the visible slide */
.swiper-slide-active {
    opacity: 1;
}