@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nova+Round&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Varela+Round&display=swap');

/* styles.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navigation-section {
    width: 100%;
    height: 80px;
    background-color: transparent;
    
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 15px 20px;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
    transition: box-shadow 0.4s, background 0.4s, top 0.4s;
}

.navbar ul {
    padding-top: 1.2rem;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    font-family: Nova Round;
}

.menu-toggle {
    display: block; /* Change to block for mobile view */
    font-size: 24px;
    background: #007bff;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
    outline: none;
}

.menu-toggle:focus {
    outline: none;
    box-shadow: none;
}

.menu-toggle .bar {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active .bar {
    background: #fff;
    opacity: 1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    box-shadow: none;
    background: none;
    z-index: 1001;
    transition: 0.6s;
    max-height: none;
    opacity: 1;
    overflow: visible;
    flex-direction: row;
    position: static;
    width: auto;
    padding: 0;
    border-radius: 0;
}

.nav-links.show {
    display: flex;
    max-height: 400px;
    opacity: 1;
}

.nav-links li {
    margin: 0;
    margin: 0 0 12px 0;
    text-align: center;
}

.nav-links li:last-child {
    margin-bottom: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-family: poppins;
    font-size: 1.1rem;
    padding: 8px 0;
    display: block;
}

.nav-links a:hover {
    color: #fff;
    text-decoration: none;
}

.nav-links li a button {
    width: 120px;
    height: 35px;
    background-color: #003353;
    color: #fff;
    font-family: inter;
    text-transform: capitalize;
    font-size: 1rem;
    border: none;
    border-radius: 20px;
    margin-left: 2rem;
    outline: none;
    transition: 0.6s;
    cursor: pointer;
}

.nav-links li a button:hover {
    background: transparent;
    border: 1.5px solid #000;

}

@media (max-width: 768px) {
    .navbar {
        width: 100%;
        height: 80px;
        margin: 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #ffffff2f;
        position: absolute;
        top: 50px;
        left: 0px;
        width: 100%;
        padding: 10px;
        border-radius: 5px;
    }

    .nav-links.show {
        display: flex;
    }
}

@media (max-width: 900px) {

    body,
    main {
        background: #fff !important;
    }

    .navbar {
        background: linear-gradient(90deg, #007bff 60%, #0056b3 100%);
        color: #fff;
        z-index: 1002;
        position: relative;
        transition: box-shadow 0.4s, background 0.4s, top 0.4s;
        box-shadow: 0 2px 16px rgba(0, 123, 255, 0.10);
    }

    .logo {
        color: #fff;
        text-shadow: 0 2px 8px rgba(0, 123, 255, 0.18);
    }

    .menu-toggle {
        color: #fff;
        background: #007bff;
        border-radius: 8px;
        padding: 4px 12px;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
        z-index: 1003;
        font-size: 28px;
        display: block;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0;
        width: 100vw;
        padding: 12px 0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: 0.6s;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 0 0 12px 0;
        text-align: center;
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 8px 0;
        display: block;
        color: #007bff;
        font-weight: 600;
        text-shadow: none;
    }

    .nav-links a:hover {
        color: #0056b3;
        background: #e3f0ff;
        border-radius: 6px;
    }
}

main {
    background-color: #e2e0e0;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    padding-bottom: 5%;
    /* padding: 2PX 5PX; */
}

.destinations {
    width: 100%;
    height: auto;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 3%;
}

.destination-section {
    width: 80%;
    margin-right: 10%;
    margin-left: 10%;
    text-align: left;
}

.destination-heading {
    font-family: inter;
    text-transform: capitalize;
    font-weight: 600;
}

.destination-heading h2 {
    font-size: 1.3rem;
}

.destination-heading p {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 0.9rem;
    color: #858585;
}

.places-to-visit {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.place-to-visit {
    display: flex;
    flex-direction: column;
    width: 33%;
    height: auto;
    transition: 1s;
    cursor: pointer;
}

.place-to-visit img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.place-to-visit h3 {
    font-family: varela round;
    font-size: 1.3rem;
    text-align: left;
    height: auto;
    margin-top: -30px;
    color: #fff;
    margin-left: 20px;
}

@media(max-width:986px) {

    .places-to-visit {
        flex-direction: column;
    }

    .place-to-visit {
        width: 100%;
        height: auto;
    }

    .place-to-visit img {
        width: 100%;
        height: auto;
    }
}

.facilities {
    width: 100%;
    height: auto;
    margin-top: 3%;
}

.facility-div {
    width: 80%;
    height: auto;
    padding: 5px;
    background-color: #fff;
    margin-right: 10%;
    margin-left: 10%;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    box-shadow: 0px 0px 20px 0px;
}

.left-fac {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 5%;
    gap: 0.4rem;
}

.fac-heading h3 {
    font-family: poppins;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.fac-content p {
    font-family: inter;
    font-size: 1rem;
    color: #747474;
    font-weight: 400;
}

.fac-button button {
    width: 120px;
    height: 35px;
    background-color: #000;
    color: #fff;
    font-family: varela round;
    border: none;
    border-radius: 30px;
    text-transform: capitalize;
    cursor: pointer;
    transition: 0.6s;
    outline: none;
}

.fac-button button:hover {
    background: transparent;
    color: #000;
    border: 1.32px solid #000;
}

.right-fac {
    display: flex;
    flex-direction: row;
    margin-left: 17%;
    margin-top: 5%;
}

.right-fac-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-left: 3%;
    text-align: center;

}

.right-fac-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-right: 10%;
}

.right-fac i {
    font-size: 1.5rem;
    color: orangered;
    text-align: center;
}

.right-fac p {
    font-family: poppins;
    font-size: 0.9rem;
}

@media(max-width:986px) {
    .facility-div {
        flex-direction: column;
        padding-bottom: 8%;
        text-align: center;
        padding-top: 8%
    }

    .left-fac {
        width: 100%;
        align-items: center;
    }

    .right-fac {
        width: 100%;
        flex-direction: column;
        margin-left: 0;
    }

}

.gallery {
    width: 80%;
    margin: 40px auto 0 auto;
    padding: 0;
}

.gallery .gallery-swiper {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.gallery .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery .swiper-slide img {
    width: 95%;
    height: 90%;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.28), 0 1.5px 8px 0 rgba(0, 0, 0, 0.18);
    background: #fff;
    display: block;
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
    display: none !important;
}

@media (max-width: 900px) {
    .gallery {
        width: 90%;
    }

    .gallery .gallery-swiper {
        height: 220px;
    }
}

.gallery {
    margin-top: 3%;
}

.gallery h2 {
    text-align: center;
    font-family: poppins;
    font-size: 1.5rem;
}

footer {
    width: 100%;
    height: auto;
    /* background-color: #282828; */
    background-color: #af9564;
    display: flex;
    color: #000;
}

.footer {
    display: flex;
    flex-direction: row;
    color: #000;
}

.footer .p-1 {
    display: flex;
    flex-direction: column;
    width: 33.33%;
    gap: 0.6rem;
    margin-left: 3%;
}

.footer .p-1 img {
    width: 250px;
    height: auto;
}

.p-1 .about-info {
    width: 90%;
    height: auto;
    text-align: justify;
    /* color: #fff; */
    color: #000;
    font-family: inter;
    margin-top: -50px;
}

.contact-us {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-left: 0;
}

.contact-us ul {
    list-style: none;
    padding: 0;
}

.contact-us ul li {
    font-family: inter;
    line-height: 30px;
    font-size: 0.9rem;
}

.right-contact {
    margin-left: 20px;
}

.contact-us ul li a {
    /* color: #fff; */
    color: #000;
    text-decoration: none;
    transition: 0.6s;
}

.contact-us ul li a:hover {
    color: crimson;
}

.left-contact ul li i {
    font-size: 1rem;
    color: #000;
    margin-right: 20px;
}

.footer .p-2 {
    margin-top: 5%;
    width: 33.33%;
    justify-content: center;
    align-items: center;
    margin-left: 10%;
}

.footer .p-2 h2 {
    font-family: poppins;
    font-size: 1.4rem;
    color: #000;
}

.footer .p-2 ul {
    list-style-type: none;
    padding: 0;
}

.footer .p-2 ul li {
    padding: 0;
    line-height: 50px;
}

.footer .p-2 ul li a {
    color: #000;
    text-decoration: none;
}

.footer .p-2 ul li i {
    margin-right: 20px;
    color: #000;
}

.footer .p-3 {
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    width: 33.33%;
}

.p-3 h3 {
    font-family: poppins;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
}

.p-3 iframe {
    width: 100%;
    height: 400px;
}

.hr {
    width: 100%;
    height: 1px;
    background-color: #999;
}

.copyright-section {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.copyright-section h3,
.copyright-section p {
    font-size: 0.9rem;
    font-family: poppins;
    text-transform: capitalize;
    margin-top: 1%;
    color: #000;
    /* color: #fff; */
    font-weight: 300;
}

.copyright-section p {
    margin-top: 0.6%;
}

@media(max-width:986px) {
    .footer {
        flex-direction: column;
    }

    .footer .p-2,
    .footer .p-1,
    .footer .p-3 {
        width: 90%;
        margin-left: 5%;
    }
}

.booking-main {
    background: #fff;
}

.booking-nav {
    background-color: #fff;
}

.booking-nav .navbar {
    color: #000;
}

.booking-nav .nav-links a {
    color: #000;
}

.booking-nav .navbar .menu-toggle {
    color: #000;
}

.rate-details {
    width: 100%;
    height: auto;
    /* background-color: rgba(81, 104, 5, 0.667);
     */
    background-color: rgb(1, 88, 105);
    padding: 1rem;
    display: flex;
    flex-direction: row;
}

.sub-rate-details {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.rate-left {
    width: 48%;
    height: auto;
    display: flex;
    flex-direction: column;
    color: #ffffff;

}

.rate-left h2 {
    font-family: poppins;
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: capitalize;
}

.rate-left h4 {
    font-size: 1rem;
    font-family: poppins;
    font-weight: 500;
}

.rate-left .date-details {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    font-size: 0.75rem;
    font-family: poppins;
    font-size: 0.7rem;
}

.rate-right {
    width: 50%;
    height: auto;
}

.rate-right table {
    width: 100%;
    height: auto;
}

.rate-right table tr {
    line-height: 3;
}

.rate-right table tr td {
    width: 100%;
    height: auto;
    font-size: 0.9rem;
    font-family: poppins;
    color: #fff;
}

.rate-right .hl {
    width: 100%;
    height: 1px;
    /* background: rgb(81, 104, 5);
     */
    background-color: rgb(162, 209, 219);
}

.booking-info {
    width: 90%;
    height: auto;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 3%;
    border: 3px solid #999;
    padding: 1%;
    padding-left: 2%;
}

.booking-info h3 {
    font-size: 1.3rem;
    font-family: poppins;
}

.booking-info p {
    font-size: 0.89rem;
    font-family: inter;
}

.booking-form {
    width: 90%;
    height: auto;
    padding: 3%;
    background-color: #99999943;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 5%;
}

.booking-form h2 {
    font-family: poppins;
    text-transform: capitalize;
    font-size: 1.5rem;
    padding: 8px;
    margin-left: 3%;
    margin-top: 2%;
}

.booking-form form {
    display: flex;
    flex-direction: column;
}


.booking-form .input-box-column {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.booking-form .input-box {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin-left: 3%;
    margin-top: 1.5%;
}

.input-box label {
    text-transform: capitalize;
    font-family: poppins;
    font-size: 1rem;
}

.input-box input {
    height: 38px;
    font-family: inter;
    outline: none;
    border: 1.3px solid #999;
}

.booking-form button {
    width: 180px;
    height: 38px;
    color: #fff;
    background: rgb(1, 88, 105);
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 3%;
    margin-left: 50%;
    font-family: poppins;
    font-size: 0.9rem;
}

@media(max-width:986px) {
    .booking-form form {
        flex-direction: column;
    }

    .booking-form .input-box-column {
        flex-direction: column;
        width: 100%;
    }

    .booking-form button {
        width: 100%;
        margin-left: 0;
    }

    .booking-form .input-box {
        width: 90%;
    }

    .input-box input {
        width: 100%;
    }

    .booking-form {
        padding: 3%;
    }

    .rc-anchor {
        width: 80%;
     
    }
    .rate-details{
        display: flex;
        flex-direction: column;
    }
    .sub-rate-details{
        display: flex;
        flex-direction: column;
    }
    .rate-left, .rate-right{
        width: 100%;
    }
}

/* Custom checkbox styles */
.checkbox-label {
    margin-left: 3%;
    margin-top: 3%;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    font-family: poppins, Arial, sans-serif;
    font-size: 0.98rem;
    cursor: pointer;
    user-select: none;
    margin-bottom: 16px;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox .checkmark {
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
    border: 1.5px solid #b0b0b0;
    margin-right: 10px;
    display: inline-block;
    position: relative;
    transition: background 0.2s, border 0.2s;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox a {
    color: #007bff;
    text-decoration: underline;
    margin-left: 4px;
}

.custom-checkbox a:hover {
    color: #0056b3;
}

.g-recaptcha {
    margin-left: 3%;
    margin-top: 3%;
}

/* rooms selection  */
.find-rooms {
    width: 80%;
    margin: 40px auto 0 auto;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.selction-head h4 {
    text-align: center;
    font-size: 2rem;
    color: #000;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.room-selection-div {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.room-card {
    display: flex;
    background: #fff !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    border: 1.5px solid #e3e3e3 !important;
    overflow: hidden;
    transition: box-shadow 0.2s, border 0.2s;
    cursor: pointer;
    margin-bottom: 0;
}

.room-card:hover {
    box-shadow: 0 4px 24px rgba(0, 123, 255, 0.10);
    border: 1.5px solid #007bff;
}

.left-room {
    flex: 0 0 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.left-room img {
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    margin: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.right-room {
    flex: 1;
    padding: 28px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.room-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.room-head h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    color: #222;
    margin: 0;
    letter-spacing: 0.5px;
}

.room-price {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    background: rgb(1, 88, 105);
    padding: 4px 16px;
    border-radius: 8px;
    box-shadow: none;
}

.amenities-toggle {
    background: #fff;
    color: #007bff;
    border: 1.5px solid #007bff;
    border-radius: 8px;
    padding: 7px 18px;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 10px 0 0 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    align-self: flex-start;
}

.amenities-toggle:hover {
    background: #007bff;
    color: #fff;
}

.amenities-list {
    background: #f9fbff;
    border-radius: 8px;
    margin: 10px 0 18px 0;
    padding: 14px 18px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.07);
    font-size: 1rem;
    color: #222;
    font-family: 'Poppins', Arial, sans-serif;
    animation: fadeIn 0.4s;
}

.amenities-list ul {
    margin: 0;
    padding-left: 18px;
}

.amenities-list li {
    margin-bottom: 10px;
    line-height: 1.7;
    list-style: none;
    color: #444;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list li i {
    color: #007bff;
    font-size: 1.1em;
    margin-right: 8px;
    min-width: 22px;
    text-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
}

.select-room-btn {
    align-self: flex-end;
    background: rgb(1, 88, 105) !important;
    color: #fff !important;
    border-radius: 20px !important;
    font-family: poppins, Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    transition: background 0.2s, color 0.2s;
    box-shadow: none;
    padding: 12px 32px;
    margin-top: 10px;
    width: auto;
}

.select-room-btn:hover {
    background: #0056b3 !important;
    color: #fff !important;
}

.room-gallery {
    display: flex;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.room-gallery img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.10);
    border: 2px solid #e3f0ff;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.room-gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.18);
    border-color: #007bff;
}

@media (max-width: 1100px) {
    .find-rooms {
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
}

@media (max-width: 900px) {
    .find-rooms {
        width: 90%;
        margin-left: 5%;
        margin-right: 5%;
    }

    .room-selection-div {
        gap: 24px;
    }

    .room-card {
        flex-direction: column;
        align-items: stretch;
    }

    .left-room {
        flex: unset;
        width: 100%;
        justify-content: center;
    }

    .left-room img {
        width: 100%;
        height: 180px;
        margin: 0;
        border-radius: 0;
    }

    .right-room {
        padding: 18px 12px;
    }

    .select-room-btn,
    .amenities-toggle {
        width: 100%;
        align-self: stretch;
    }

    .room-gallery {
        gap: 8px;
        margin-top: 10px;
    }

    .room-gallery img {
        width: 70px;
        height: 54px;
    }
}

.room-image-slider {
    position: relative;
    width: 220px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    scroll-behavior: smooth;
    gap: 0;
}

.room-image-slider.swiper {
    position: relative;
    width: 220px;
    height: 160px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 0;
}

.room-image-slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.room-image-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.room-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.room-image-slider .swiper-pagination {
    bottom: 8px !important;
}

.room-image-slider .swiper-button-next,
.room-image-slider .swiper-button-prev {
    color: rgb(1, 88, 105) !important;
    background: #fff !important;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.room-image-slider .swiper-button-next:after,
.room-image-slider .swiper-button-prev:after {
    font-size: 1em;
}

@media (max-width: 900px) {
    .room-image-slider.swiper {
        width: 100%;
        height: 180px;
        border-radius: 0;
    }

    .room-image-slider img {
        border-radius: 0;
    }
}

.reviews {
    width: 80%;
    margin: 40px auto 0 auto;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    text-align: center;
}

.reviews h2 {
    color: #111;
    font-family: poppins;
    margin-bottom: 32px;
    letter-spacing: 1px;
    font-size: 1.5rem;
    font-weight: 600;
}

.reviews-swiper {
    width: 100%;
    padding-bottom: 40px;
}

.reviews-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 520px;
    margin: 0 auto;
}

.reviewer-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 3px solid #007bff;
}

.reviewer-info {
    text-align: left;
}

.reviewer-info h4 {
    margin: 0 0 6px 0;
    font-size: 1.2rem;
    color: #222;
    font-family: 'Montserrat', Arial, sans-serif;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.review-text {
    color: #444;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
}

.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    display: none !important;
}

@media (max-width: 900px) {
    .reviews {
        width: 98%;
        margin-left: 1%;
        margin-right: 1%;
    }

    .review-card {
        flex-direction: column;
        gap: 14px;
        padding: 22px 10px;
    }

    .reviewer-info {
        text-align: center;
    }
}

/* --- Fix: Only index page gets light gray background on mobile --- */
@media (max-width: 900px) {
    body.index-page {
        background: #e2e0e0 !important;
    }
}

/* --- Fix: Mobile navbar expansion always has white background --- */
@media (max-width: 900px) {
    .nav-links {
        background: #fff !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
}

/* Place Hero Swiper */
.place-hero {
    position: relative;
    width: 100%;
    min-height: 340px;
    background: #f9fbff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3% 0 32px 0;

}

.place-swiper {
    width: 100vw;
    max-width: 900px;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto 18px auto;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    background: #fff;
}

.place-swiper .swiper-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.place-hero-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.07);
    padding: 28px 32px;
    margin-top: -40px;
    max-width: 700px;
    width: 90vw;
    text-align: center;
    position: relative;
    z-index: 2;
}

.place-hero-content h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.2rem;
    color: #003353;
    margin-bottom: 12px;
    font-weight: 700;
}

.place-hero-content p {
    font-size: 1.15rem;
    color: #444;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
}

/* Place Info Cards */
.place-details {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.place-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}

.place-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.07);
    padding: 24px 22px;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.place-info-card:hover {
    box-shadow: 0 4px 24px rgba(0, 123, 255, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.place-info-card i {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 12px;
}

.place-info-card h3 {
    font-size: 1.15rem;
    color: #003353;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 8px;
    font-weight: 600;
}

.place-info-card p {
    font-size: 1rem;
    color: #444;
    font-family: 'Poppins', Arial, sans-serif;
}

.place-how-reach,
.place-tips {
    background: #f9fbff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.05);
    padding: 22px 24px;
    margin-bottom: 18px;
    width: 90vw;
    max-width: 700px;
}

.place-how-reach h3,
.place-tips h3 {
    font-size: 1.15rem;
    color: #003353;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.place-how-reach p,
.place-tips ul {
    font-size: 1rem;
    color: #444;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
}

.place-tips ul {
    padding-left: 18px;
    margin: 0;
}

.place-tips li {
    margin-bottom: 8px;
    list-style: disc inside;
}

@media (max-width: 900px) {
    .place-swiper {
        height: 180px;
        max-width: 98vw;
    }

    .place-swiper .swiper-slide img {
        height: 180px;
    }

    .place-hero-content {
        padding: 18px 8px;
        margin-top: -20px;
    }

    .place-info-cards {
        gap: 12px;
    }

    .place-info-card {
        min-width: 140px;
        max-width: 98vw;
        padding: 14px 8px;
    }

    .place-how-reach,
    .place-tips {
        padding: 12px 8px;
        width: 98vw;
    }
}

@media (max-width: 600px) {
    .place-hero-content h1 {
        font-size: 1.3rem;
    }

    .place-info-card h3 {
        font-size: 1rem;
    }

    .place-info-card i {
        font-size: 1.3rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    width: 80%;
    margin: 40px auto 0 auto;
    padding: 0;
    font-family: 'Poppins', Arial, sans-serif;
    text-align: center;
}

.faq-section h2 {
    color: #111;
    font-family: poppins;
    margin-bottom: 32px;
    letter-spacing: 1px;
    font-size: 1.5rem;
    font-weight: 600;
}

.faq-swiper {
    width: 100%;
    padding-bottom: 40px;
}

.faq-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    max-width: 520px;
    margin: 0 auto;
}

.faq-question {
    font-size: 1.15rem;
    color: #003353;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    text-align: left;
}

.faq-answer {
    font-size: 1.05rem;
    color: #222;
    font-style: italic;
    font-family: 'Poppins', Arial, sans-serif;
    text-align: left;
}

@media (max-width: 900px) {
    .faq-section {
        width: 98vw;
        padding: 0 2vw;
    }

    .faq-card {
        padding: 18px 8px;
        max-width: 98vw;
        align-items: flex-start;
    }

    .faq-question {
        font-size: 1rem;
        text-align: left;
    }

    .faq-answer {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .faq-section {
        width: 100vw;
        padding: 0 1vw;
    }

    .faq-card {
        padding: 12px 4px;
        max-width: 99vw;
    }

    .faq-question {
        font-size: 0.98rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

.faq-swiper .swiper-button-next,
.faq-swiper .swiper-button-prev {
    display: none !important;
}

.footer .social-icons ul {
    display: flex;
    flex-direction: row;
    justify-content: left;
    list-style: none;
    gap: 3rem;
}

.social-icons ul li {
    display: flex;
    flex-direction: row;
    font-size: 2rem;
}

.social-icons ul li i {
    color: #fff;
    transition: 0.9s ease;
}

.social-icons ul li i:hover {
    background: #fff;
    padding: 0.6rem;
    border-radius: 50%;
}

.social-icons ul li a {
    color: #fff;
    text-decoration: none;

}

.social-icons ul li .fa-whatsapp:hover {
    color: #25D366;
}

.social-icons ul li .fa-facebook:hover {
    color: #3b5998;
}

.social-icons ul li .fa-instagram:hover {
    color: #E1306C;
}

/* Cart Floating Button and Modal Styles Restore */
.cart-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #003353;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    z-index: 2000;
    font-size: 2rem;
    transition: background 0.2s;
}

.cart-fab:hover {
    background: #007bff;
}

#cart-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff3b3b;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.cart-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    min-width: 320px;
    max-width: 90vw;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    position: relative;
    text-align: center;
}

.cart-modal-content .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
}

#cart-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px 0;
    text-align: left;
}

#cart-list li {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.05rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cart-list .remove-cart-item {
    background: none;
    border: none;
    color: #ff3b3b;
    font-size: 1.1rem;
    cursor: pointer;
    margin-left: 10px;
}

.add-cart-btn {
    background: #fff;
    color: #003353;
    border: 1.5px solid #003353;
    border-radius: 20px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 24px;
    margin-top: 10px;
    margin-left: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.add-cart-btn:hover {
    background: #003353;
    color: #fff;
}

@media (max-width: 600px) {
    .cart-fab {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .cart-modal-content {
        padding: 16px 6px;
        min-width: 90vw;
    }
}

.page-heading h3 {
    font-family: poppins;
    font-size: 1.5rem;
    color: #000;
    text-align: center;
    margin-top: 2%;
    margin-bottom: 2%;
}

.restaurant {
    width: 80%;
    height: auto;
    display: grid;
    flex-direction: column;
    margin-top: 3%;
    text-align: center;
    font-family: poppins;
    overflow: hidden;
    margin-left: 10%;
}

.rest-heading h2 {
    font-family: poppins;
    font-size: 1.5rem;
    color: #000;
}
.small-slider
{
    /* min-height: 100vh; */
    display: grid;
    /* place-items: center; */
    /* padding-bottom: -50%; */
}
.slider{
    height: 250px;
    margin-top: 100px;
    position: relative;
    width: 100%;
    display: grid;
    /* place-items: center; */
    overflow: hidden;
}
.slide-track
{
    display: flex;
    width: calc(220px*140);
    /* Make the slider loop infinitely by duplicating the slides for seamless scroll */
    animation: scrolls 150s linear infinite;
    animation-play-state: running;
}
.slide-track:hover{
    animation-play-state: paused;
}   
.slide-clients{
    height: 200px;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}
.slide-clients img
{
  width: 120px;
  height: auto;
}

.slider img
{
    width: 100%;
    transition: transform 1s;
}
.slider img:hover
{
    transform: translateY(-20px);
}

@keyframes scrolls {
    0%{
        transform: translateX(0);
    }   
    100%{
        transform: translateX(-50%);
    }
    
}
.restaurant-images{
    width: 100%;
    height: auto;
    padding: 5px;
    background-color: transparent;
}
.rest-img-track{
    width: 80%;
    height: auto;
    padding: 3px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    animation: slide-rest linear 40s infinite;
}
.rest-img-track img{
    width: 250px;
    height: auto;
    transition: 0.6s;
}
@keyframes slide-rest{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}
.rest-heading{
    text-align: center;
    margin-top: 2%;
    font-size: 1.5rem;
}
.rest-img-track img:hover{
    transform: translateY(-4%);
}
@media(max-width:986px) {
    .rest-heading h2{
        font-size: 1.1rem;
    }
}

