body {
  background-image: url('/assets/image/Backgroud_Image.png'); /* update path as needed */
  background-repeat: repeat;
  background-size: auto;
  background-position: top center;
  background-attachment: scroll;
}


body, html {
    overflow-x: hidden; /* Prevents horizontal scroll */
}

.swiper-container {
    width: 100%;
    height: 100vh; /* Adjust height as needed */
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: transform 1s ease-in-out; /* Smooth sliding transition */
}

.swiper-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Light fade effect */
    z-index: 2;
    transition: opacity 1s ease-in-out; /* Smooth overlay transition */
}

.swiper-slide-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 20px;
    opacity: 0; /* Initially hidden */
    transition: opacity 1s ease-in-out; /* Smooth fade-in effect */
}

.swiper-slide-active .swiper-slide-content {
    opacity: 1; /* Fade in the content when the slide becomes active */
}

.swiper-pagination-bullet {
    background: #fff;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
}

.italic {
    font-style: italic;
}

.quote {
    font-size: 2rem;
    font-weight: bold;
}
