  /* For the navbar button, with a sliding effect */
  #btn {
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    /* Adjust the duration as needed */
}

/* Styling for black button */
.black-button {
    background-color: black;
    color: white;
}

.modal-backdrop.fade {
    z-index: 1;
}

.formBox {
    width: auto !important;
}

/* Mobile responsive search form */
@media screen and (min-width: 350px) and (max-width: 520px) {
    .serach {
        margin-left: 30px;
    }

    .formBox {
        width: 100% !important;
    }
}

 /* Make video iframe responsive with 16:9 aspect ratio */
 .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Optional: Add margin for smaller screens */
@media (max-width: 768px) {
    .video-container {
        padding-bottom: 56.25%;
        /* 16:9 ratio */
    }
}


.swiper-container {
    padding: 20px 30px;
    position: relative;
    margin-top: 30px;
}

.swiper-slide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}



.card-img-top {
    transition: transform 0.3s ease;
}

.card-img-top:hover {
    transform: scale(1);
}

.card-title {
    font-size: 1rem;
}

.text-muted {
    font-size: 0.9rem;
}

.card-text {
    font-size: 0.95rem;
}

.btn-dark,
.btn-outline-dark {
    transition: background-color 0.3s, color 0.3s;
}

.btn-dark:hover,
.btn-outline-dark:hover {
    background-color: #343a40;
    color: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    border-radius: 50%;
    padding: 5px;
    font-size: 18px;
    background: #eff0f1;
    height: 40px;
    width: 40px;
    display: flex;
    text-align: center;
    color: white
}

.swiper-button-next {
    right: 12px;
}

.swiper-button-prev {
    left: 12px;
}

.details,
.review {
    border: 1px solid #f8b807c7;
    color: rgb(19, 12, 12);
}

.details:hover,
.review:hover {
    background: #f8b807c7;
    border: 1px solid #f8b807c7;
    color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px !important;
}