/* loader */
.loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}
.loader img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.pr-3 {
    padding-right: 1rem !important;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}


.blink {
    animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.room-slider img {
    width: 100%;
    height: 100px;
    object-fit: cover; /* or contain, depending on your preference */
}

.thumbnail {
    padding: 15px; /* Adds padding around the gallery */
}

.destination-image-slider {
    margin: 0 -15px; /* Adjust spacing for Bootstrap columns */
}

.destination-image-slider .col-md-3 {
    padding: 0 15px; /* Adds padding to each column */
}

.image-container {
    position: relative; /* Allows for positioning of overlay elements */
    overflow: hidden; /* Ensures any overflow is hidden */
    border-radius: 8px; /* Adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds shadow for depth */
    height: 200px; /* Set a fixed height for the image container */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

.image-container img {
    width: 100%; /* Ensures the image fills the container width */
    height: 100%; /* Ensures the image fills the container height */
    object-fit: cover; /* Covers the container while maintaining aspect ratio */
    display: block; /* Removes bottom space */
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.image-container:hover img {
    transform: scale(1.2); /* Zoom in the image on hover */
    cursor: pointer; /* Change cursor to pointer */
}

.image-container:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}


/* Optional CSS for styling the modal */
.modal-dialog {
    max-width: 80%; /* Adjusts the maximum width of the modal */
}

.modal-body img {
    width: 100%; /* Ensures the image takes full width of the modal */
    height: auto; /* Keeps the image's aspect ratio */
}












