* {
    margin: 0;
    padding: 0;
}

.carousel-container {
    position: relative;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

#hotelCarousel {
    height: 100%; /* Full container height */
    overflow: hidden;
}

#hotelCarousel img {
    object-fit: cover; /* Ensure images cover the entire container */
    height: 100%; /* Full container height */
    width: 100%; /* Full container width */
}

.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    width: 80%; /* Adjust the width as needed */
    max-width: 500px; /* Set a maximum width */
    opacity: 95%;
}

.form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.footer {
    background-color: #222;
    color: #ccc;
    padding: 20px 0;
}

.footer p {
    margin: 0;
}

.contact-info a {
    color: black;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

#about-us {
    padding: 40px 0;
}

#about-us p {
    text-align: justify;
}

#contact-us {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }

    .form-container {
        margin-top: 20px;
    }

    #about-us .col-sm-6 {
        margin-bottom: 20px;
    }

    #contact-us .row {
        flex-direction: column;
    }
}

.home {
    height: 80vh;
}

.row {
    padding: 0;
}

.royal {
    color: #FFD700;
    border: solid 1px #FFD700;
    background: red;
    border-radius: 15px;
    cursor: pointer;
}

.royal a {
    color: #FFD700;
    text-decoration: none;
}

.text-decoration-none a {
    color: black;
    text-decoration: none;
}

select {
    width: auto;
}

.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
}

.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2) !important;
}