body {
    padding: 0px;
    margin: 0px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    background-color: #f8f8f8;
    /* li{
        list-style-type: none; 
    } */
}

.hedline {
    font-family: "Poppins", sans-serif;
    color: #251f19;
    font-size: 44px;
    text-align: center;
    font-weight: 600;
    line-height: 50px;
}

.underline {
    position: relative;
    text-align: center;
    display: inline-block;
    text-decoration: none; /* Removes the default underline */
}

.underline::after {
    content: "";
    position: absolute;
    width: 50%; /* Start with 0 width */
    height: 2px;
    bottom: -5px;
    left: 50%; /* Center it initially */
    transform: translateX(-50%); /* Adjust to center */
    background-color: #f56040;
    transition: width 0.3s ease, left 0.3s ease; /* Transition for both */
}

.underline:hover::after {
    width: 100%; /* Expand to full width */
    left: 50%; /* Keep it centered */
    transform: translateX(-50%); /* Maintain center alignment */
    background-color: #f56040;
}

#animatedElement {
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s; /* Smooth transition */
}

#animatedElementTwo {
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s; /* Smooth transition */
}

.animate__animated {
    opacity: 1; /* Visible during animation */
    transition: opacity 0.5s;
}

/* Slider section */

#slideItem {
    width: 100%;
    height: 100vh;
}

video {
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover; /* Adjust as needed */
}

/* Overlay styling */
.slide-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.7s ease-in-out;
    z-index: 1;
}

/* When the carousel item becomes active, slide in the overlay */
.carousel-item.active .slide-overlay {
    left: 0; /* Move the overlay to be fully visible */
}

/* Positioning for the carousel images */
.carousel-item img {
    position: relative;
    overflow: hidden;
}

.btn_menu {
    width: 117px;
    transition: background-color 0.5s ease; /* Smooth transition */
}

#click_trigger {
    cursor: pointer;
    position: fixed;
    z-index: 7;
    width: 100px;
    height: 100px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    padding-top: 30px;
    transition: background-color 0.5s ease; /* Smooth transition */
}

.box_sticks {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    left: 50%;
    margin-left: -31px;
}
.stick {
    width: 40px;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    margin-top: -17px;
    margin-right: 4px;
    left: 0;
}
#stick1 {
    top: 25px;
    left: 8px;
}
#stick2 {
    top: 34px;
    left: 8px;
    width: 25px;
}
#stick3 {
    top: 43px;
    left: 8px;
    width: 40px;
}

#click_trigger.open:hover #stick1 {
    width: 18px;
    background-color: #f56040;
}
#click_trigger.open:hover #stick2 {
    width: 31px;
    background-color: #f56040;
}
#click_trigger.open:hover #stick3 {
    width: 25px;
    background-color: #f56040;
}
#click_trigger.open:hover .label_stick {
    color: #f56040;
}

.label_stick {
    position: absolute;
    bottom: 1px;
    font-size: 12px;
    font-weight: 700;
    left: 8px;
    text-transform: uppercase;
    line-height: 13px;
    color: #fff;
    letter-spacing: 2px;
}

.menuUnderline {
    position: relative;
    display: inline-block;
    text-decoration: none; /* Removes the default underline */
}

.menuUnderline::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    bottom: -5px; /* Adjust this value to add margin below the text */
    left: 0;
    background-color: #000000;
    transition: width 0.3s ease;
}

.menuUnderline:hover::after {
    width: 50%;
    background-color: #f56040;
}

.menuUnderline.active {
    color: white; /* Change the text color to white */
}

/* Style the overlay (full-screen menu) */
.overlay {
    height: 100%;
    width: 40%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}
/* Menu */
section .closebtn {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
}

section .closebtn:hover {
    transform: rotate(180deg);
}

section:has(.overlay.open) .btn_menu,
section:has(.overlay.open) .btn_menuTwo {
    display: none !important; /* Hide .menu when .overlay-open is present */
}
section:has(.overlay) .btn_menu,
section:has(.overlay) .btn_menuTwo {
    display: block !important; /* Show .menu when .overlay-open is hidden */
}

section:has(.overlay.open) .btn_menuTwo {
    visibility: hidden !important; /* Hide .menu when .overlay-open is present */
}
section:has(.overlay) .btn_menuTwo {
    visibility: visible !important; /* Show .menu when .overlay-open is hidden */
}

/* Menu content */
.overlay-content {
    position: relative;
    top: 20%;
    width: 100%;
    text-align: center;
    margin-left: 20%;
    z-index: 9999;
}

.overlay-content a {
    padding: 20px 8px 2px 8px;
    text-decoration: none;
    font-size: 15px;
    color: #f56040;
    text-align: left;
    display: block;
    transition: 0.3s;
    margin: auto;
    line-height: 1em;
    text-transform: uppercase;
    font-weight: 600;
}

.overlay-content a:hover {
    color: #f1f1f1;
}

/* Close button */
.closebtn {
    position: absolute;
    top: 1px;
    /* right: 45px; */
    font-size: 60px;
    color: #f56040;
    text-decoration: none;
    z-index: 2;
    background-color: transparent;
    width: 71px;
    left: 2%;
    text-align: center;
}

.closebtn:hover {
    color: #f1f1f1;
}
/* ====== bootstrap carousel === */
.header-section .carousel-item {
    position: relative;
    overflow: hidden;
}

.header-section .carousel-item .slice-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
}

.header-section .slice {
    flex: 1;
    background-size: cover;
    background-position: center;
    transform: translateY(100%);
    transition: transform 1s ease-in-out;
}

.header-section .carousel-item.active .slice {
    transform: translateY(0);
}

/* Home screen */
.booknowHome {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 7;
    width: 100px;
    height: 100px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    padding-top: 25px;
    transition: background-color 0.5s ease;
}

.fixed {
    background-color: #232b37; /* Change this to your desired color */
    z-index: 1000; /* Ensure it stays on top of other elements */
}

/* Open and close effects */
.overlay.open {
    visibility: visible;
    opacity: 1;
    z-index: 9;
}

.logo {
    position: absolute;
    top: 20px;
    left: 45%;
    margin: 0 auto;
    z-index: 3;
}

.headerLogo {
    text-align: center;
}

.headerLogo img {
    padding-top: 20px;
    width: auto;
}

/* .booknow{
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 3;
    width: 100px;
    height: 100px;
    background: #357a3f;
    text-align: center;
    font-size: 18px;
    padding: 5px;
    padding-top: 30px;
    text-decoration: none;
    font-weight: normal;
    color: white;
} */

.booknow {
    font-weight: 500;
    text-transform: capitalize;
    line-height: 13px;
    letter-spacing: 2px;
    font-size: 14px !important;
}
.fa-calendar-days {
    font-size: 25px !important;
}

.booknowHome:hover {
    color: #f56040;
}

.fa-calendar-days:hover {
    color: #f56040;
}

/* Offer section css*/

.vericaltext {
    cursor: pointer;
}

.offer {
    position: absolute;
    top: 20%;
    right: 10px;
    z-index: 2;
    color: white;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    line-height: 1.5;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.offer:hover {
    color: #f56040;
}

.offerImg {
    display: none; /* Initially hidden */
    opacity: 0; /* Invisible */
    transition: max-height 0.4s ease, opacity 0.4s ease;
    position: relative;
}

.offerImg.active {
    display: block; /* Show when active */
    max-height: 200px; /* Set this to a value slightly larger than your image height */
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.offerImg img {
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    transform: rotate(180deg); /* Rotate the image if needed */
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.offerButton {
    position: absolute;
    top: -7%;
    left: 40%;
    display: none;
    padding: 20px 2px 20px 2px;
    background-color: #ff572200;
    color: black;
    border: 1px solid black;
    cursor: pointer;
    border-radius: 5px;
    transform: rotate(90deg);
    pointer-events: none;
}

.offerImg:hover .offerButton {
    display: block;
}

/* About section */

.about-car {
    font-size: 60px;
}
.about-heading-first {
    font-family: "Playfair Display", serif;
    opacity: 0.2;
    font-size: 95px;
    letter-spacing: 20px;
    font-weight: 900;
    color: #c5bbbb;
    font-stretch: ultra-expanded;
    margin-top: -40px;
}

.about-heading {
    padding-right: 20px;
    color: #251f19;
    font-size: 44px;
    text-align: left;
    font-weight: 700;
    line-height: 50px;
}

.about-paragrape {
    text-align: justify;
    line-height: 26px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* What makes Sarah different?*/

.desc {
    padding-left: 8%;
}

.desc li {
    list-style: none;
    line-height: 2;
}

#different {
    background-image: url("../images/bg.webp");
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: auto; /* Adjust height as needed */
}

.diffrentIcon {
    color: powderblue;
    padding-right: 10px;
}

.diffrent-icon {
    font-size: 30px;
}

/* comfortable Stay */

#comfortable {
    margin-top: 50px;
    background: #f8f8f8;
    padding-bottom: 40px;
}

.profileImg {
    height: 300px;
}

.boxx {
    height: 530px;
}
.boxx h3 {
    font-weight: 700;
}

.boxx p {
    height: 94px;
}
.btn_de {
    width: 145px;
    margin: 0 auto;
    background-color: #f56040;
    color: white;
    border: none;
}

.btn_de:hover {
    background-color: #232b37;
}

.owl-nav {
    position: absolute;
    top: 50%; /* Center vertically */
    width: 100%; /* Full width of the carousel */
    transform: translateY(-50%); /* Adjust to center */
    display: flex;
    justify-content: space-between;
}

/* Bootstrap Carousel */
.carousel-item {
    position: relative;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.carousel-item img,
.carousel-item video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (max-width: 9935px) {
    .carousel-item img,
    .carousel-item video {
        object-fit: cover;
        width: 100%;
        height: 100vh !important;
    }
}

.carousel-caption {
    position: relative;
    z-index: 2;
}

/* Make the buttons larger and add rounded corners */
.carousel-control-prev,
.carousel-control-next {
    font-size: 1.2rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    top: 50%;
    height: 45px;
}

.carousel-control-prev {
    left: 40px;
}
.carousel-control-next {
    right: 40px;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.3rem;
    color: white;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#comfortable .owl-nav button {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #211f20 !important;
    padding: 10px !important;
    transition: ease-in 0.2s;
}

#comfortable .owl-nav button:hover {
    background: #a2a2a227 !important;
}

.owl-nav button:hover {
    color: #0056b3;
}

.owl-prev {
    left: 30% !important;
}

.owl-next {
    left: 95%;
    font-size: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -35px;
}
.owl-carousel .owl-nav button.owl-prev {
    margin-left: -35px;
}

/* home promotion */
.pro img {
    width: 100%;
    height: 550px;
}

/* Dining page css */

.dinig-img {
    position: relative;
}

.img-featers {
    left: 13%;
    position: absolute;
    top: 149px;
    background-color: white;
    width: 72%;
    padding: 20px 41px 21px 14px;
    box-shadow: 0 4px 8px black;
}

.diningHeading {
    position: relative;
    display: inline-block;
    text-decoration: none; /* Removes the default underline */
}

.diningHeading::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -5px; /* Adjust this value to add margin below the text */
    left: 0;
    background-color: #f56040;
    transition: width 0.3s ease;
}

.diningHeading:hover::after {
    width: 100%;
}

.clubItem {
    line-height: 30px;
    margin-left: 20px;
}

.diningHeading {
    font-size: 40px;
    color: #f56040;
    padding-bottom: 5px;
    margin: 5px;
}

.lightBox {
    position: absolute;
    bottom: 77px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    left: 50px;
    text-align: center;
    font-size: 30px;
    color: #f56040;
}

.threeD {
    position: absolute;
    bottom: 77px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    left: 150px;
    text-align: center;
    font-size: 30px;
    color: #f56040;
}

.diningUnderline {
    width: 50px;
    height: 1px;
    background: orange;
}

.diningUnderline:hover {
    width: 100px;
    height: 1px;
    background: orange;
    transition: 1s;
}

#Speacitial-feature {
    width: 100%;
    height: auto;
    background-color: transparent;
}

.borderLine {
    border: 1px solid gray;
    height: 70px;
    position: absolute;
    top: 20%;
}

.zoom-out {
    transition: transform 1.3s ease;
}

.zoom-out:hover {
    transform: scale(0.9); /* Shrinks the image */
}

.zoom-in {
    transition: transform 1.3s ease;
}

.zoom-in:hover {
    transform: scale(0.9); /* Shrinks the image */
}
.back {
    padding-right: 50px;
    background-color: #f6f6f4;
    height: 497px;
    padding-left: 50px;
}
.back p {
    line-break: auto;
    line-height: 1.5;
    font-size: 16px;
}
.back li {
    list-style: none;
}
.top-image {
    margin-top: 32px;
}

/* Recreation page */

.reaction {
    width: 100%;
    height: 120px;
    background: #f1f1f1;
}

.lightBoxReaction {
    position: absolute;
    bottom: 100px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    left: 50px;
    text-align: center;
    font-size: 30px;
    color: #f56040;
    padding-top: 15px;
}

.reactionThreeD {
    position: absolute;
    bottom: 100px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    left: 150px;
    text-align: center;
    font-size: 30px;
    color: #f56040;
    padding-top: 15px;
}

.reaction {
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    padding-top: 20px;
    color: #6ec1e4;
}

.rec_img {
    width: 100%;
    height: 450px;
}

.reactionPhoto {
    margin-top: 50px;
}

.reactionItem {
    margin-bottom: 20px;
}

/* Initial styles for the reaction item and image container */
.reactionItem {
    position: relative;
    overflow: hidden; /* This will hide any overflow, including the rotated image */
}

.image-container {
    position: relative;
    overflow: hidden; /* Ensure any overflow due to rotation is hidden */
}

.image-container img {
    display: block;
    width: 100%;
    transition: transform 0.5s ease-in-out, border 0.4s ease-in-out; /* Added transform for smooth rotation */
}

/* Overlay styling */
.reaction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    opacity: 1;
    transition: opacity 0.4s ease-in-out;
}

/* Hover effect: remove the overlay */
.image-container:hover .reaction-overlay {
    opacity: 0; /* Makes the overlay disappear */
}

/* Border and rotation animation on hover */
.image-container:hover img {
    transform: rotate(8deg); /* Rotate the image by 10 degrees */
}

/* Virtual tour */

.image-container {
    position: relative;
    overflow: hidden;
}

.virtual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Optional background color */
    opacity: 1;
    transition: opacity 0.3s ease;
}

.image-container:hover .virtual-overlay {
    opacity: 0; /* Hide the overlay on hover */
}

/*Photo gallery*/

.PhotoImage-container {
    position: relative;
    overflow: hidden; /* Ensures the overlay is contained within the image */
}

.PhotoImage-container img {
    display: block; /* Removes any gap under the image */
    width: 100%;
    transition: transform 0.3s ease; /* Optional: adds a smooth scaling effect */
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white; /* Text color for the icon */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease; /* Smooth transition */
}

.PhotoImage-container:hover .photo-overlay {
    opacity: 1; /* Show overlay on hover */
    font-size: 30px;
    font-weight: 500;
}

.PhotoImage-container:hover img {
    transform: scale(2.05); /* Optional: slightly scale the image on hover */
}

/* contact section css*/

.contactIcon {
    font-size: 40px;
    color: #ccc;
    font-weight: 400;
}

.contactHeading {
    font-size: large;
    font-weight: 400;
    color: #f56040;
}
.contactDescription {
    font-size: medium;
    font-weight: 400;
    color: #f56040;
}

.formHeading {
    font-size: 26px;
    font-weight: 400;
}

.formField {
    height: 45px;
    padding: 0px 10px;
    margin-top: 5px;
    text-align: left;
}

.reservation_formField.formField::placeholder {
    font-size: 15px;
}

.formBtn {
    height: 60px;
    font-size: 30px;
    font-weight: 500;
    color: #333;
}

/* Accommodation */

.m-auto {
    margin: 0 auto;
}
.m-auto p {
    font-size: 18px;
    line-height: 2;
    font-family: "Poppins", sans-serif;
}

.itemAccummo {
    transition: transform 0.3s ease-in-out;
}

.itemAccummo:hover {
    transform: scale(1.02);
}

.zoom-out {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.zoom-out:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.accommodationCard {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
    overflow: hidden !important;
}

.accommodationCard:hover {
    overflow: hidden !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.accommodationCard h3 {
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-arrow-right {
    color: #3498db;
    transition: transform 0.3s ease-in-out;
}

.accommodationCard h3:hover .fa-arrow-right {
    transform: translateX(5px);
}

.accomodation-img-box {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.acomo img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

.itemAccummo {
    margin-bottom: 150px;
    position: relative;
}

.accommodationCard {
    width: 60%;
    height: 135px;
    background: #ffffff;
    position: absolute;
    top: 90%;
    left: 20%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
    font-family: system-ui;
}

.accommodationCard h3 {
    color: #6ec1e4;
    padding-bottom: 10px;
}

.accommodationCard p {
    color: black;
}

.accommodationCard:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Darker shadow on hover */
}

.accommodationBody {
    margin-bottom: 150px;
}

.roomBody {
    margin-bottom: 150px;
}

.facility {
    width: 100%;
    height: auto;
    background: #f1f1f1;
    margin-top: -110px;
}

.accumutionItme li {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    line-height: 35px;
    list-style: none;
}

.facilityIcon {
    font-size: 18px;
    font-weight: 400;
    color: #6ec1e4;
    line-height: 35px;
    padding-right: 5px;
}

.facilityBody {
    padding-bottom: 40px;
    padding-left: 20px;
}

.terms-condition {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    line-height: 12px;
}

.conditonItem {
    color: #6ec1e4;
    margin-left: 10px;
    margin-right: 7px;
}

.terms-condition p:hover .conditonItem {
    color: #333;
}

/*Room details slide */

/* Transition effect for fading and zooming in */
.carousel-fade .carousel-item {
    opacity: 0.8;
    transition: opacity 2.5s ease, transform 9.5s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    transform: scale(1.2); /* Zoom in effect */
}

.zoom-img {
    transition: transform 9.5s ease; /* Smooth zoom transition */
}

.carousel-item.active .zoom-img {
    transform: scale(1.2); /* Zoom in slightly */
    height: 90vh !important;
    object-fit: cover;
    overflow: hidden;
}

.roomdetails {
    color: #f56040;
    font-size: 20px;
}

.roomService {
    position: relative;
    display: inline-block;
    text-decoration: none; /* Removes the default underline */
}

.roomService::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 1px;
    bottom: -5px; /* Adjust this value to add margin below the text */
    left: 50%; /* Start at the horizontal center */
    transform: translateX(-50%); /* Center the line */
    background-color: #f56040;
    transition: width 0.3s ease;
}

.roomService:hover::after {
    width: 70%;
}

.roomServiceItem {
    display: flex;
    justify-content: center; /* Center all items horizontally */
    gap: 20px; /* Optional: add space between items */
    color: #f56040;
    font-size: 16px;
    font-weight: normal;
}

.itme1 {
    flex-direction: column; /* Ensure items are stacked vertically inside each box */
    align-items: center; /* Center icon and text inside each box */
}

.roomServiceItemIcon {
    font-size: 30px;
    font-weight: 500;
    color: #333;
}

/* bookNowText */

.bookNowText {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.loyaltyServiceHeading {
    font-size: 20px;
    font-weight: 500;
    color: #6ec1e4;
    line-height: 20px;
}

.loyaltyItem li {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 30px;
    margin-left: 20px;
}

/*footer section css*/

#footer {
    width: 100%;
    background: #211f20;
    font-family: monospace;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
}

.ssl {
    width: 70%;
    margin: 0 auto;
    margin-top: 10px;
}

.text-white h3 {
    display: block;
    text-align: left;
    font-size: 17px;
    padding: 20px 0px 10px 0px;
    color: #f56040;
}

.text-white p {
    display: block;
    text-align: left;
    font-size: 14px;
    padding-bottom: 7px;
    color: #f56040;
}

.pagelink h3 {
    padding-bottom: 8px;
}

.pagelink a {
    display: block;
    text-align: left;
    font-size: 17px;
    text-decoration: none;
    color: white;
    padding-bottom: 2px;
}

.footerItem a {
    /* padding-top: 33px; */
    color: white;
    font-weight: 400;
    font-size: 25px;
    padding-left: 16px;
    text-decoration: none;
}

.footerItem a:hover {
    color: gray;
}

.numberUnderline {
    position: relative;
    text-decoration: none;
    margin-top: 19px;
    font-size: 18px;
    color: #f56040;
}

.numberUnderline::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    top: -5px; /* Adjust this value to add margin below the text */
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.pagelinkunderline {
    position: relative;
    display: inline-block;
    text-decoration: none; /* Removes the default underline */
}

.pagelinkunderline::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 2px;
    bottom: -5px; /* Adjust this value to add margin below the text */
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.pagelinkunderline:hover::after {
    width: 50%;
    background-color: white;
}
.foot {
    color: white;
    font-weight: 400;
    font-size: 16px;
    padding-left: 16px;
    text-decoration: none;
}
.foot a {
    text-decoration: none;
    color: white;
    font-weight: 400;
    font-size: 16px;
    padding-left: 16px;
}

@media screen and (max-width: 932px) {
    .logo {
        top: 18px !important;
        /* left: 45% !important; */
    }
    /* Show the responsive menu and hide the desktop menu */

    /* Global */
    .diningHeading {
        font-size: 24px;
    }

    /* Slider  */
    #slideItem {
        width: 100%;
        height: 50vh;
    }

    video {
        width: 100% !important;
        height: 50vh !important;
        object-fit: cover; /* Adjust as needed */
    }

    /* book now */
    .booknowHomeTwo,
    .booknowHome {
        width: 46px;
        height: 48px;
        padding: 4px;
        font-size: 9px !important;
    }

    .booknowHomeTwo span,
    .booknowHome span {
        font-size: 10px !important;
    }

    .booknowHomeTwo .fa-calendar-days,
    .booknowHome .fa-calendar-days {
        font-size: 14px !important;
    }

    .booknowHomeTwo span,
    .booknowHomeTwo span {
        font-size: 10px !important;
    }

    .booknowHomeTwo .fa-calendar-days,
    .booknowHomeTwo .fa-calendar-days {
        font-size: 14px !important;
    }

    /* menu */
    #click_trigger {
        width: 46px;
        height: 48px;
    }
    .box_sticks {
        top: 68%;
        left: 69%;
    }
    .stick {
        width: 20px;
    }

    #stick2 {
        width: 15px;
    }
    #stick3 {
        width: 20px;
    }
    .label_stick {
        font-size: 7px;
        line-height: 24px;
    }

    /* menu Two */
    #click_fixed {
        width: 46px;
        height: 48px;
    }

    /* menu over lay */
    .overlay {
        height: 100%;
        width: 100%;
    }

    .overlay-content a {
        line-height: 2em;
    }

    /* logo */
    .logo {
        position: absolute;
        top: -39px;
        left: 30%;
        z-index: 3;
    }
    .logo img {
        width: 70%;
    }
    .headerLogo img {
        width: 38%;
    }

    /* special offer */
    .offer {
        display: none;
    }

    /* about us */
    .about-heading-first {
        font-size: 51px;
        margin-top: -33px;
        text-align: center;
    }
    .about-heading {
        font-size: 34px;
        text-align: center;
    }

    /* what make us different */
    .desc {
        padding-left: 22%;
        margin-top: 20px;
        padding-bottom: 20px;
    }
    /* promotion*/
    .pro img {
        width: 100%;
        height: 338px;
    }

    /* Accomodetion*/
    .terms-condition {
        line-height: 25px;
    }

    /* Dinning*/
    .lightBox {
        bottom: 20px;
        left: 27px;
    }
    .threeD {
        bottom: 20px;
        left: 94px;
    }
    .back {
        height: 716px;
    }
}
