html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -font-smoothing: antialiased;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}

body {
    font: 'Outfit';
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 26.25px;
    color: #3b3b3b;
    overflow-x: hidden !important;
  background: #fff; 
}





/* Topbar*/
.topbar {
 
        background-color: #008DD2;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    display: flex; 
 }

.topbar .container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
 
    margin: 0 auto; 
    padding: 0 15px; 
}

.topbar-left,
.topbar-right {
   /* display: flex;*/
    align-items: center;
    font-size: 16px;
}


.fa-whatsapp:before {margin-left: 3rem;}


/* header design */
.navigation-wrap {
    position: absolute;
    margin-top: 0;
    left: 0;
    top: 45px;
    width: 100%;
   /* background: transparent;*/
   background-color: white;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 90px;
    border: none;
    transition: 1s;
}
/* Targeting the dropdown only inside the navigation bar */
nav .dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensuring the dropdown menu is hidden by default */
nav .dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    min-width: 160px; /* Optional, to control the width */
}

.dropdown{
    padding-left:1rem;
}



.navigation-wrap .nav-item {

     padding: 0px 2px; 
    transition: all 0.3s linear;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
  /*  color: #fff;*/
  color: black;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
    letter-spacing: 0px;
}

.small-logo {
    width: 9.5rem;
    height: auto;
}


    
  

/* change navbar styling on scroll */
.navigation-wrap.scroll-on {
    position: fixed;
    background-color: white;
    top: 0;
    width: 100%;
    box-shadow: 0 0.125 0.175;
    transition: all 0.15s ease-in-out 0s;
}

.navigation-wrap.scroll-on .nav-link {
    color: black;
}

.navigation-wrap.scroll-on .nav-link:hover,
.navigation-wrap.scroll-on .nav-link:active {
    color: rgb(25, 62, 230);
}


.navbar-nav .nav-item .nav-link.btn.btn-primary:hover {
    color: white; /* Changes text color to white */
    background-color: #007bff; /* Optional: Adjust the background color on hover */
}







/* Initially hide the topbar */
.topbar {
    display: flex;
  /*  transition: all 0.3s ease;*/
}

/* When the scroll event is triggered, show the topbar */
.scroll-show-topbar .topbar {
    display: flex;
    /* or block depending on your layout */
}

/* Add a background color or any other styles for the fixed navbar and topbar */
.scroll-on {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scroll-on .nav-link {
    color: black;
}

.scroll-on .nav-link:hover,
.scroll-on .nav-link:active {
    color: yellow;
}




/* General css */

.text-wrapper {
    font-family: 'Outfit', sans-serif;

    font-size: 1rem;
    font-weight: 300;

}


/* ======= Basics & Typography style ======= */


img {
    width: 100%;
    height: auto;
}

img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #f4f4f4;
}


/* Owl Carousel */
#navbar-carousel .item {
    height: 100vh;
    /* Full viewport height */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.owl-carousel .carousel-text h1 {
    font-size: 2.5rem;
    text-align: center;
    /* Ensure the text is centered */
}

#navbar-carousel .item {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

#navbar-carousel .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: 1; */
    background-color: rgb(0 0 0 / 45%);
    /* Black shadow with 50% opacity */
    z-index: 1;
    /* Ensure the shadow is above the background image */
}

#navbar-carousel .carousel-text {
    position: absolute;
    top: 50%;
    /* Vertically center the text */
    left: 50%;
    /* Horizontally center the text */
    transform: translate(-50%, -125%);
    /* Adjust the text to be exactly centered */
    z-index: 2;
    /* Ensure the text appears above the shadow */
    color: white;
    text-align: center;
    padding: 20px;
    width: 80%;
    /* Control the width so it's not full-width */
    max-width: 800px;
    /* Optional: limit the max width of the text block */
}

/* Styling for h5 text */
.owl-carousel .carousel-text h5 {

    /* Adjust top padding for better spacing */
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}


.owl-carousel .owl-item img {
    display: block;
    width: 137%;
}



/* Custom Navigation Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.owl-prev,
.owl-next {
    background-color: #333;
    /* Dark background color */
    color: white;
    /* White icon */
    padding: 10px;
    border-radius: 50%;
    /* Makes the button circular */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: #555;
    /* Slightly lighter background color on hover */
}

.owl-prev i,
.owl-next i {
    font-size: 20px;
    /* Adjust size of the icons */
}


/* Optional: Adding some hover effect to the buttons */
.owl-prev:hover,
.owl-next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}


/* Style for the text overlay on each carousel item */
.carousel-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}








/* form css */

/* CSS for Booking Form and Popup */
.bkwrap {
    position: relative;
    z-index: 10;
    /*height: 100vh*/
}
/*
.bkwrap .bkwrap-center {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-110%);
    border-radius: 10px
}*/


.bkwrap .bkwrap-center {
    position: absolute;
    /* top: 50%; */
    top: 22%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-57%);
    border-radius: 10px;
}

/* #booking {
      font-family: 'Raleway', sans-serif
  } */
/*
.booking-form {
    position: relative;
    /*max-width: 100%/
    width: 100%;
    margin: auto;
    padding: 10px;
    overflow: hidden;
    background-size: cover;
    border-radius: 5px;
    z-index: 20
}*/

.booking-form {
    position: relative;
    /* max-width: 100%; */
    width: 100%;
    margin: auto;
    overflow: hidden;
    background-size: cover;
    border-radius: 5px;
    z-index: 20;
    padding: 10px 19px;
}

.booking-form::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: transparent;
    z-index: -1
}
/*
.booking-form .form-header {
    text-align: center;
    position: relative;
    margin-bottom: 30px
}*/

.booking-form .form-header {
    text-align: center;
    position: relative;
    /* margin-bottom: 30px; */
    margin-bottom: 5px;
}

.booking-form .form-header h1 {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 25px;
    margin: 0px;
    color: #161616
}

.booking-form .form-group {
    position: relative;
    /*margin-bottom: 20px*/
}


/*
.booking-form .form-control {
    /*background-color: rgba(48, 46, 46, 0.836);/
	background-color: rgb(255 255 255 / 20%);
    height: 60px;
    padding: 0px 25px;
    border: none;
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.651);
    -webkit-box-shadow: 0px 0px 0px 2px transparent;
    box-shadow: 0px 0px 0px 2px transparent;
    -webkit-transition: 0.2s;
    transition: 0.2s
}*/


.booking-form .form-control {
    background-color: rgb(48 46 46 / 92%);
    height: 45px;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 0px 0px 2px transparent;
    transition: 0.2s;
    color: grey;
}

.booking-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5)
}

.booking-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5)
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5)
}

.booking-form .form-control:focus {
    -webkit-box-shadow: 0px 0px 0px 2px #ff8846;
    box-shadow: 0px 0px 0px 2px #ff8846
}
/*
.booking-form input[type="date"].form-control {
    padding-top: 16px
}*/


.booking-form input[type="date"].form-control {
    padding-top: 2px;
    padding-left: 7rem;
}

.booking-form input[type="date"].form-control:invalid {
    color: rgba(255, 255, 255, 0.5)
}
/*
.booking-form input[type="date"].form-control+.form-label {
    opacity: 1;
    top: 10px
}*/


.booking-form input[type="date"].form-control+.form-label {
    opacity: 1;
    top: 15px;
}

.booking-form select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.booking-form select.form-control:invalid {
    color: rgba(255, 255, 255, 0.5)
}

.booking-form select.form-control+.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    line-height: 32px;
    height: 32px;
    text-align: center;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px
}

.booking-form select.form-control+.select-arrow:after {
    content: '\279C';
    display: block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.booking-form select.form-control option {
    color: #000
}

.booking-form .form-label {
    position: absolute;
    top: -10px;
    left: 25px;
    opacity: 0;
    color: #ff8846;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    height: 15px;
    line-height: 15px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all
}

.booking-form .form-group.input-not-empty .form-control {
    padding-top: 16px
}

.booking-form .form-group.input-not-empty .form-label {
    opacity: 1;
    top: 10px
}
/*
.booking-form .submit-btn {
    color: #fff;
    background-color: #e35e0a;
    font-weight: 700;
    height: 60px;
    padding: 10px 30px;
    width: 100%;
    border-radius: 40px;
    border: none;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1.3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all
}*/


.booking-form .submit-btn {
    color: #fff;
    background-color: #e35e0a;
    font-weight: 700;
    height: 42px;
    padding: 10px 25px;
    width: 100%;
    border-radius: 40px;
    border: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
    opacity: 0.9
}

/* 
  .row {
    --bs-gutter-x: 2.2rem;
  } */



.booking-form {
    width: 100%;
    /* Full width of the container

    background: rgba(248, 240, 240, 0.7); */
	background: rgb(0 0 0 / 42%);
}


.form-control {
    width: 100%;
    /* Full width of each input/select */
}

/* .row 
      display: flex;
      align-items: center; /* Vertically center items
      gap: 15px; /* Space between fields */
/* } */

.form-header {
    margin-bottom: 20px;
    /* Space below the header */
}

.submit-btn {
    padding: 10px 20px;
    /* Adjust padding for the button */
    text-align: center;
}



/* Popup Styles */
.popup-container {
    position: fixed;
    top: 67px;
    left: 69%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 32px;
    width: 400px;
    z-index: 10000;
    text-align: center;
    display: none;
}

.popup-container.visible {
    display: block;
}

h2 {
    margin: 0 0 24px;
    font-weight: 600;

}

.selection-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

label {
    font-weight: 400;
    color: #555;
}

label1{
    color:#666;
}

.note-text{

    flex-direction: column;
    text-align:justify;
    display: flex;

}

.count-display {
    display: flex;
    align-items: center;
    gap: 12px;
}

.count-display button {
    background-color: #00796b;
    color: white;
    border: none;
    padding: 0px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.count-display button:disabled {
    background-color: #e2e2e2;
    cursor: not-allowed;
}

.popup-footer {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.done-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.done-button:hover {
    background-color: #388e3c;
}


.owl-theme .owl-dots .owl-dot span{
    visibility:hidden !important;
   
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    
    margin-top: -2rem;

}




/* custum scrollbar */


::-webkit-scrollbar {
    width: 0.625rem;
}

::-webkit-scrollbar-track {
    background: white;

}

::-webkit-scrollbar-thumb {
    background-color: #F08143;
}




/* section about */
.pattern_2 {
    background: url(../images/pattern_2.png) top right no-repeat;
    background-size: 45% auto;
    /* Increase the width by 150%, while maintaining aspect ratio */
}


.margin_120_95 {
    padding-top: 120px;
    padding-bottom: 95px;
}

.parallax_wrapper {
    position: relative;
    margin-bottom: 25px;
    margin-left: 7rem;
}

img.rounded-img {
    border-radius: 10px;
}

.title small {
    text-transform: uppercase;
    color: #978667;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-size: 0.75rem;
}

.parallax_wrapper .img_over img {
    border: 4px solid #fff;
    width: 50%;
    height: auto;
    -webkit-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
    box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

.parallax_wrapper img {
    width: 100%;
    max-height: auto;
    display: block;
}

.parallax_wrapper img.img-fluid {
    height: 500px;
    /* Adjust this height as needed */
    object-fit: cover;
    /* Ensures the image covers the container without distortion */
}

.img_over span img {
    height: 500px;
    /* Adjust this height as needed */
    object-fit: cover;
    /* This keeps the image scaled correctly */
}


/* The overlapping image will have absolute positioning */
.parallax_wrapper .img_over {
    position: absolute;
    top: 20%;
    /* Adjust this value to control the vertical position */
    left: -50%;
    /* Move the second image to the left */
    width: 50%;
    /* Adjust the width to control the size of the second image */
    z-index: 1;
    /* Ensure the second image is above the first image */
}

/* Make the overlapping image responsive */
.parallax_wrapper .img_over img {
    width: 180%;
    height: auto;
    border-radius: 10px;
}

/* Introduction */
.Intro-section {

    padding: 8rem 0 0 0;

}

.intro {
    /* align-items: center; */
    text-align: justify;

}

.styled-button {
    background-color: #978667;
    color: white;
    /* Text color */
    border: none;
    /* Remove border */
    padding: 10px 20px;
    /* Padding for better spacing */
    cursor: pointer;
    /* Change cursor to pointer on hover */
    font-size: 16px;
    /* Font size */
    border-radius: 5px;
    /* Rounded corners */
}

.styled-button:hover {
    background-color: #7a6a4d;
    /* Darker shade on hover */
}



/* video section */

/* ======= Promo Video style ======= */

/* Optional Custom Styling for the Hero Section */

.hero {
    position: relative;
    /* Make sure the container is positioned for pseudo-elements */
    background: url(../images/vdbgimg.jpg) no-repeat center center;
    background-size: cover;
    height: 100vh;
    /* Full viewport height */

}

.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #1b1b1b62;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    color: white;
    font-weight: 700;
}

.hero p {
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 20px 0;
    font-size: 24px;
}

.hero::before {
    content: "";
    /* Pseudo-element requires content */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Example: dark overlay */
    z-index: 1;
    /* Make sure it stays below the content */
}

.hero .container {
    position: relative;
    /* Ensure content is above the overlay */
    z-index: 2;
    /* Content should be above the pseudo-element */
}



/* Pulsating Play Button Styling */
.pulsating-play-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: white;
    text-decoration: none;
    animation: pulsate 1.5s ease-in-out infinite;
}

.pulsating-play-btn:hover {
    color: #ff6347;
    /* Hover color */
}

@keyframes pulsate {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}




@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(209, 41, 26, 0.836);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/* room Details */

.room1-section {
    padding: 8rem 0;
    background: #F2F3F4;



}

.sub-title {
    font-family: 'Outfit', sans-serif;
    color: #1b1b1b;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 1.5em;
    font-size: 16px;
    letter-spacing: 3px;
    position: relative;
    padding-left: 15px;

    border-bottom: 1px solid #aa8453;
    padding: 8px 0px 15px 15px;
    margin-bottom: 15px;
}

.sub-title:after {
    content: "";
    position: absolute;
    display: block;
    top: 44%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.sub-title:before {
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #aa8453;
    border-radius: 50%;
}

.section-title {
    font-size: 45px;
    font-family: 'Libre Caslon Display', serif;
    font-weight: 400;
    color: #1b1b1b;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.2em;
}

.section-title span {
    color: #aa8453;
}

.room1-image {
    padding-top: 8rem;



}


.box_item_info {
    background-color: #fff;
    z-index: 9;
    position: relative;
    padding: 40px 40px 20px 40px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);


}

.box_item_info {
    margin: 0 0 0 -100px;

    margin-top: 245px;
}

.box_item_info1 {

    background-color: #fff;
    z-index: 9;
    position: relative;
    padding: 40px 40px 20px 40px;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    margin: 0 -100px 0 0;

    margin-top: 245px;


}

.box_item_info small {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 0.875rem;
    color: #978667
}

.box_item_info h2 {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 20px
}

.box_item_info .facilities ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0
}

.box_item_info .facilities ul li {
    float: left;
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0 25px 10px 0
}

.box_item_info .facilities ul li:last-child {
    margin: 0
}

.box_item_info .facilities ul li i {
    height: 36px;
    font-size: 30px;
    font-size: 1.875rem;
    color: #978667;
    margin-right: 15px
}

.box_item_info .box_item_footer {
    border-top: 2px solid #ededed;
    margin-top: 15px;
    padding: 25px 0 15px 0;
}

.box_item_info .box_item_footer a.animated_link {
    color: #333
}

.row_list_version_1 {
    margin-bottom: 60px
}

.row_list_version_1 .box_item_info {
    max-width: 750px;
    margin: -250px 60px 60px 60px
}

.rm-dtl {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -100;
    clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
}

/* Style for the button container */
.box_item_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

/* Style for the Book Now button */
.btn_4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #978667;
    ;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Style for the circle element in the button */
.btn_4 .circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Style for the arrow icon inside the circle */
.btn_4 .circle .icon.arrow {
    width: 12px;
    height: 12px;
    border-right: 3px solid #978667;
    margin-top: 1rem;
    border-top: 3px solid #978667;
    transform: rotate(45deg);
}

/* Style for the button text */
.btn_4 .button-text {
    font-size: 16px;
    font-weight: 600;
}

/* Hover effect for the button */
.btn_4:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    color: white;
}

/* Hover effect for the circle in the button */
.btn_4:hover .circle {
    transform: scale(1.1);
}

/* Hover effect for the arrow icon inside the circle */
.btn_4:hover .circle .icon.arrow {
    border-color: #0056b3;
}

/* Style for the Details link */
.animated_link {
    text-decoration: none;
    color: #007bff;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Hover effect for the Details link */
.animated_link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* video sction */
/* Full width video */
.video-wrapper {
    width: 100%;
    height: auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* Aspect ratio 16:9 */
    overflow: hidden;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Play button styling */
.vid-butn {
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.vid-butn .icon {
    color: #fff;
    font-size: 40px;
}

/* testimonial */
.testimonial-wrapper {
    padding: 8rem 0;
}


/* contact.css */

/* General Section Styling */
/* Set the background container with a fallback dark color */
.banner-header {
    position: relative;
    background-color: #000;
    /* Initial black color before the image loads */
    background-image: url(../images/1.jpg);
    /* Background image */
    background-size: cover;
    background-position: center;
    height: 75vh;
    overflow: hidden;
}

/* Create the overlay */
.banner-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black overlay */
    z-index: 1;
    opacity: 1;
    transition: opacity 1.5s ease-in-out;
    /* Smooth fade transition */
}

/* Ensure the text appears above the overlay */
.banner-header .container {
    position: relative;
    z-index: 2;
    /* Text will stay on top of the overlay */
}

/* Trigger the background fade-in */
.banner-header.loaded::before {
    opacity: 0;
    /* Remove the overlay */
}


.banner-header .caption {
    position: relative;
     padding-top: 4rem; 
    color: white;
    text-align: center;
}

.contact.section {
    background-color: #f8f9fa;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Card Styling */
.info-item {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgb(213 205 205 / 9%);

}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.contact .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;

}

/* Icon Styling */
.icon {
    font-size: 48px;
    color: rgb(180, 31, 31);
    margin-bottom: 20px;
}

/* Form Styling */
.form-control {
    border-radius: 5px;
}

button {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.loading,
.error-message,
.sent-message {
    display: none;
}

/* Section Title Styling */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #343a40;
}

.section-title p {
    color: #6c757d;
    margin-bottom: 40px;
}

.send-msg {

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 14px;
    padding: 0.5rem 0;
    font-weight: bolder;
}

.text-grey {
    color: rgb(196, 195, 195);
    font-weight: 400;
    padding-left: 1rem;
    padding-top: 1rem;

}

.contactus-form {
    padding-top: 2rem;
}


/* map contact-us */

.contactus-map {
    padding-left: 2rem;

}

.form-section {
    padding: 5rem 0;
}


/* MountainView Room details */




.room-details::before {
    content: '';
    /* Creates overlay */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 71%);
    /* Overlay with 50% opacity */
    z-index: 1;
    /* Ensures overlay is above the background */
}

.room-details .text-mvwrap {
    color: white;
    position: relative;
    /* Ensures text stays on top of overlay */
    z-index: 2;
    /* Higher than overlay */
    padding: 7rem 0 0 0;
    /* Optional, to add some space around the text */

}

[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}

[data-overlay-dark] .container,
[data-overlay-light] .container {
    position: relative;
    z-index: 2;
}

[data-overlay-dark]:before,
[data-overlay-light]:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

[data-overlay-dark]:before {
    background: #000;
}

[data-overlay-light]:before {
    background: #fff;
}

[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span {
    color: #fff;
}

[data-overlay-light] h1,
[data-overlay-light] h2,
[data-overlay-light] h3,
[data-overlay-light] h4,
[data-overlay-light] h5,
[data-overlay-light] h6,
[data-overlay-light] span {
    color: #3b3b3b;
}

[data-overlay-dark] p {
    color: #fff;
}

[data-overlay-light] p {
    color: #3b3b3b;
}

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}


.wrap {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    height: 100%;
    /* Ensure the container fills the full height */
    width: 100%;
    /* Ensure it spans full width */
}

.room-details .wrap-room {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevents image from overflowing */
}

.wrap-room img {
    width: 100%;
    /* Ensures image takes full width */
    height: 100%;
    /* Ensures image takes full height */
    object-fit: cover;
    /* Ensures image fully covers without distortion */
    object-position: start;
    /* Keeps image centered */
    display: block;

    /* Remove any padding from the image */
}

/* Optionally, you can fine-tune the text container styles */
.text-mvwrap h2 {
    margin: 0;
    padding: 0;
    /* Remove default margin/padding */
    font-size: 2.5rem;
    /* Adjust font size as needed */

}

.text-mvwrap p {
    font-size: 1.2rem;
    /* Adjust for better readability */

    margin-top: 1rem;
    /* Add some space between the title and description */
}

.room-details {
    position: relative;
    overflow: hidden;
    /* Ensure overlay doesn't overflow */
}

.room-details::before {
    content: '';
    /* Creates overlay */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 71%);
    /* Overlay with 50% opacity */
    z-index: 1;
    /* Ensures overlay is above the background */
}

.caption-icons {
    line-height: 3rem;
}

.room-info {
    list-style-type: none;
    /* Removes default list styling */
    padding: 0;
    margin: 0;
}

.caption-icons {
    display: flex;
    /* Enable Flexbox */
    align-items: center;
    /* Vertically align text with icon */
    margin-bottom: 10px;
    /* Optional: Adds space between list items */
}

.caption-icons .material-icons {
    margin-right: 8px;
    /* Optional: Adds space between icon and text */
}


.room-details .container {
    position: relative;
    /* Ensures text is on top of the overlay */
    z-index: 2;
    /* Ensures container content is above the overlay */
}

.room-details .text-mvwrap {
    color: white;
    position: relative;
    /* Ensures text stays on top of overlay */
    z-index: 3;
    /* Higher than overlay */
    padding: 7rem 0 0 0;
    /* Optional, to add some space around the text */
}

.room-details .wrap-room {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Prevents image from overflowing */
}

.room-details .wrap-room img {
    width: 100%;
    /* Ensures image takes full width */
    height: 100%;
    /* Ensures image takes full height */
    object-fit: cover;
    /* Ensures image fully covers without distortion */
    object-position: center;
    /* Keeps image centered */
    display: block;
    padding-bottom: 9rem;
    /* Remove any padding from the image */
}
.bg-img{
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
background-blend-mode: overlay;
height: auto;
width: 100%;
}

.section-padding {
    padding: 160px 0 0 0;
}




.room-info {
    list-style: none;
    padding-left: 0;
    color: white;
    font-size: 1.1rem;
    margin-top: 2rem;
}



/* Scoped styles for the room-details section */
.room-details .material-icons {
    display: inline-block;
    text-align: center;
    line-height: 30px;
    /* Ensure the icons are vertically centered */
    width: 30px;
    /* Set a fixed width */
    height: 30px;
    /* Set a fixed height */
    border-radius: 50%;
    /* Make the background circular */
    background-color: white;
    /* Set background to white */
    color: rgb(68, 67, 67);
    /* Set icon color to black */
    font-size: 24px;
    /* Adjust font size for proper scaling */
    border: 2px solid rgb(253, 248, 248);
    /* Optional: border around the circle */
    margin-right: 10px;
}

.mv-room-text {
    padding: 5rem 0;
}

/* Amenities */
.page-list li {
    display: flex;
    /* align-items: center; */
    /* Vertically centers both icon and text */
}

.page-list-text {
    display: inline-block;
    /* Ensures text aligns with the icon */
}

.page-list-icon {
    margin-right: 10px;
    /* Space between icon and text */
    margin-bottom: 1rem;
}

/* carousel css */

.carouselimg-sec {
    padding-bottom: 7rem;
}






/* FAQs */

.faq-wrapper {
    padding-bottom: 5rem;

}


/* CTA css */

.cta-sec {
  /*  background-color: #F6F1F0;
    
    height: 200px;*/
     background-color: #fafafa;
    height: 112px;
       margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;

}

.lead {
    font-size: 18px;
}

.cta-sec .lead-head {
    color: #000;
}

/* About US page css */
.aboutus-wrapper {
    background: #F6F1F0;
    padding-bottom: 7rem;
}

.video-wrapper {
    min-height: 500px;
    background-size: cover;
    /* Ensure the background image covers the entire section */
    background-position: center center;
    /* Center the background image */
    background-repeat: no-repeat;
    /* Prevent repeating the background */
}

.video-wrapper .vid {
    position: relative;
    z-index: 8;
}

.video-wrapper .vid .vid-butn:hover .icon {
    color: #fff;
}

.video-wrapper .vid .vid-butn:hover .icon:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.video-wrapper .vid .vid-butn .icon {
    color: #fff;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    font-size: 40px;
    position: relative;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.video-wrapper .vid .vid-butn .icon:after {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    border: 1px solid transparent;
    border-radius: 50%;
    z-index: -1;
}

.video-wrapper .vid .vid-butn .icon:before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    right: 5px;
    left: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: -1;
    -webkit-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
    -o-transition: all 0.5s cubic-bezier(1, 0, 0, 1);
    transition: all 0.5s cubic-bezier(1, 0, 0, 1);
}

/* Styling for the play button */
.vid-butn {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark background */
    border-radius: 50%;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Play icon inside the button */
.vid-butn .icon i {
    color: #fff;
    font-size: 40px;
    /* Adjust size */
}

/* Hover effect for the play button */
.vid-butn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    /* Darker on hover */
    transform: scale(1.1);
    /* Slightly enlarge the button */
}

/* Optional: You can also add a hover effect to the icon itself */
.vid-butn:hover .icon i {
    color: #f39c12;
    /* Change color to gold on hover */
}

.custom-list {
    list-style-type: none;
    /* Remove default list-style */
    padding-left: 20px;
    /* Add some padding for the circle */
}

.custom-list li::before {
    content: "\2022";
    /* Unicode for a bullet */
    color: black;
    /* Circle color */
    font-size: 30px;
    /* Bullet size */
    padding-right: 10px;
    /* Space between bullet and text */
}

.second-caption {
    padding: 10rem 0;
}

/* Activity page */
.sub-content {
    font-weight: 300;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3px;


}
.activity-text{
text-align: justify;

}



.activity-second {

    padding: 5rem 0;

}


/* Add the background lines to the container */


/* Optionally, you can make the text container stand out more */
.text-activity {
    position: relative;
    z-index: 1;
    /* Ensure text appears above background */
    color: #333;
    /* Make sure the text has good contrast */
  
}

.image-border {
    border: 10px solid rgba(212, 210, 210, 0.685);
    border-radius: 20px;

}

.text-activity {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 3rem;
}



  
/* one day trip */

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
   

    border: 2px solid #141414;
  
    border-radius: 10px;
    
    padding: 20px;
  
    /* margin-top: 6rem ; */
    margin-bottom: 80px;
    margin-top: 5rem;
   
 



}
/* usage policy */
.usage-policy-text{
padding: 1rem 0;

}
.usage-policy-text h5{
color: #F08143;
padding-bottom: 1rem;
}

/* footer Css */
.footer-sec {
    position: relative;

    background-color: rgb(56 56 56);

    padding: 2rem 0;


}

.designer-link {
    text-decoration: none;

    color: #3391f5;

    font-weight: bold;

}

.designer-link:hover {
    color: #0056b3;

    text-decoration: underline;

}




.list-inline-item a i {
    transition: color 0.3s ease, transform 0.3s ease;
}


.list-inline-item a:hover i {
    color: #FFD700;

    transform: scale(1.1);

}

.cont-info .material-icons {
    font-size: 20px;

    color: white;

    vertical-align: middle;

    margin-right: 8px;

}



  .reservation-container {
            max-width: 700px;
            margin: 50px auto;
            padding: 30px;
            border-radius: 10px;
          
            background-color: #ffffff;
          
        }
        .thank-you-header {
            color: #007bff;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        .message-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #343a40;
            margin-bottom: 25px;
            text-align: center;
        }
        .contact-info {
            font-size: 1.2rem;
            font-weight: bold;
           color:#141414;
            margin-bottom: 30px;
            text-align: center;
        }
        .call-to-action {
            font-size: 1.3rem;
            font-weight: bold;
            color: #6c757d;
            text-align: center;
        }



/* Gallery Section Styling (Simplified) */

.gallery-section {
   
  
  padding-top: 2.5rem;
    margin-left: 15px; 
    width: 25%; 
    box-sizing: border-box;
}

.gallery-title {
    color: #ffc107;
    text-transform: uppercase; 
    font-weight: bold; 
    margin-bottom: 8px;
    font-size: 16px;
     margin-top: 0rem;
}

.gallery-row {
    display: flex; 
    flex-wrap: wrap; 
    margin-left: -5px; 
    margin-right: -5px; 
}

.gallery-image-col {
  
    width: 33.33%; 
    padding: 5px; 
    margin-bottom: 15px; 
    box-sizing: border-box; 
}

.gallery-image {
    width: 100%; 
    height: auto; 
    display: block; 
}





/* --- Footer Base Styles --- */
.main-footer {
     background-color: rgb(88, 87, 87);
    color: #f8f9fa; 
    padding-bottom: 1.5rem; 
    padding-left: 0; 
    padding-right: 0; 
}


.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem;
  
}
/*
.footer-col {
   
    flex: 0 0 auto;
    padding-right: 15px; 
    padding-left: 15px; 
    margin-top: 1rem; 
    margin-left: 1rem; 
}*/


.company-info-col {
    flex: 0 0 25%; 
    /*max-width: 25%;*/
    padding-top: 2rem;
}




.useful-links-col {
   padding-top: 2rem;
}


.contact-info-col {
    padding-top: 2rem;
   
}



.footer-heading {
    text-transform: uppercase; 
   /* margin-bottom: 1.5rem; */
    font-weight: 700; 
}

.footer-heading-warning {
   color: #ffc107;
    font-size: 16px;
    margin-top: 1rem;

}

.company-logo {
    width: 200px;
    height: auto;
    max-width: 100%; 
    display: block;
}

.footer-link {
    color: #f8f9fa; 
    text-decoration: none; 
    transition: color 0.3s ease; 
}

.footer-link:hover {
    color: #ffc107; 
}

.contact-item {
    display: flex; 
    align-items: center;
    margin-bottom: 0.5rem; 
}

.contact-item .material-icons {
    margin-right: 8px; 
    font-size: 1.25rem; 
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; 
    align-items: center;
    text-align: center; 
}
/*
.copyright-info,
.social-media-col,
.designer-info {
    flex: 1;
    padding: 0 15px; 
}*/

.copyright-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-link:hover {
    color: #ffc107;
}

.copyright-brand {
    color: #ffc107; 
    font-weight: bold; 
}

.social-icons-wrapper {
    text-align: center; 
}

.social-links-list {
    list-style: none; 
    padding: 0;
    margin: 0;
    display: inline-flex; 
}

.social-list-item {
    display: inline-block; 
    margin: 0 8px; 
}

.social-icon-link {
    color: #f8f9fa; 
    font-size: 23px; 
    transition: color 0.3s ease;
}

.social-icon-link:hover {
    color: #ffc107; 
}

.designer-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.designer-link:hover {
    color: #ffc107;
}





    .modal-body {
      position: relative;

      height: 100%;
    }

    .modal-content{       
      height: 125px;
    border-radius: 16px;
    background: transparent;
	border:0px !important;
    }


    .modal-header{
        border-bottom: none;
    }

    .btn-close{
    background-color:#0d6efd;
    opacity: 100%;
    padding-top: 1rem;
    
}

.btn-close:hover{
    background-color:#fff;
    
}
    
