body {
    background: #fff;
}

/* swiper slider css  */

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Background image zoom animation */
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
    /* Smooth long zoom */
}

.swiper-slide-active .parallax-bg {
    transform: scale(1.1);
    /* Zoom in slightly */
}

/* Fade-up animation for content */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-slide-active h1,
.swiper-slide-active p,
.swiper-slide-active a {
    animation: fadeInUp 1s ease forwards;
}

.swiper-slide h1,
.swiper-slide p,
.swiper-slide a {
    opacity: 0;
}


/* CONTACT PAGE STYLE  */
.home-booking-form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px #d5d1b5 inset !important;
    -webkit-text-fill-color: #000 !important;
}