<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  font-family: var(--font-family);
}
body {
  background-color: var(--background-color);
}
:root {
  --primary-color: ;
  --background-color: #fffaf1;
  --font-family: "Didact Gothic", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 600;
  --font-weight-boldness: 800;
  --text-transform: uppercase;
  --primary-color: #8f6d3f;
  --white-color: #fff;
  --secondry-color: #99a98c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: var(--text-transform);
}
a {
  text-decoration: none;
  color: var(--white-color);
}
i {
  font-size: 18px;
  color: var(--white-color);
}

/*loader css start*/
/* Page Loader styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white-color); /* Slightly transparent background */
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-logo {
  width: 100%;
  height: auto;
  animation: fade-in 2s ease-in-out;
}



@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@keyframes fade-in {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/*Loader css end*/

/*header section css start*/

.slider_image-height {
  height: 100vh;
}
.slider_image-height img {
  object-fit: cover;
  height: 100vh;
  object-position: center;
}
/* Initial navbar styling */

.navbar {
  background-color: transparent;
  transition: background-color 0.7s ease; /* Smooth transition */
}

/* Background color when scrolled */
.navbar.scrolled {
  background-color: var(--primary-color);
}

.navbar-nav {
  gap: 20px;
}
.navbar-nav .nav-item {
  margin-right: 30px;
  font-weight: var(--font-weight-regular);
  font-size: 15px;
  text-transform: var(--text-transform);
}

.navbar-nav .nav-item:last-child {
  margin-right: 0; /* To remove margin from the last item */
}
.nav-link {
  position: relative;
  border-bottom: 2px solid transparent; /* Prevent shaking by maintaining space */
  padding-bottom: 3px; /* Adjust based on design to balance spacing */
  transition: border-bottom 0.3s ease; /* Smooth transition */
}
.nav-link:hover {
  border-bottom-color: var(--white-color); /* Border color on hover */
}
/*Header section css end*/
/*Footer section start*/
.footer_section {
  background-color: var(--primary-color);
}
.footer .social-icons a i {
  font-size: 25px;
  margin-right: 20px;
}
.footer_section {
  overflow-x: hidden; /* Prevents overflow in case of unintended scrolling */
}

/*footer section end*/

/*Home sections starts here*/
.bg_section_img_1 {
  background-image: url("../img/body-bg%20(1).png");
  background-size: cover; /* Ensures the background covers the entire container */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents repeating the background image */
}
.bg_section_img_2 {
  background-image: url("../img/body-bg.png");
  background-size: cover; /* Ensures the background covers the entire container */
  background-position: center; /* Centers the background image */
  background-repeat: no-repeat; /* Prevents repeating the background image */
}
/*reservation form calander section css*/
#bookingForm {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.date-input {
  position: relative;
  margin-right: 20px;
}

.label_reserve {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: var(--font-weight-bold);
  text-align: left;
}

.date-input input[type="date"] {
  padding: 10px;
  width: 200px;/*before 300px*/
  border: 1px solid var(--secondry-color);
  background: none;
  border-radius: 10px;
  text-align: left;
  color: #404040;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  color: var(
    --primary-color
  ); /* Change the icon color (limited browser support) */
  font-size: 20px; /* Increase icon size */
}

.reserve_button {
  padding: 10px 20px;
  border: none;
  background-color: var(--primary-color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 18px;
}

.reserve_button:hover {
  background-color: var(--secondry-color);
}
/*reservation form css end*/
/*gateway section css starts*/
.gateway-section {
  background-color: var(--white-color);
  border-radius: 20px;
  margin-bottom: 50px;
}
.section-title {
  font-size: 32px;
  color: var(--primary-color);
  text-transform: var(--text-transform);
  letter-spacing: 2px;
  font-weight: var(--font-weight-regular);
  margin-bottom: 15px;
}
.section-text {
  font-size: 15px;
  line-height: 24px;
}
.vr {
  min-height: 18em;
  color: #000;
  background-color: lightgrey;
  width: 2.5px;
  opacity: 1;
}
/*gateway section ends here*/
/*reach bhartapur section css start*/
.collapse_btn_reach {
  color: var(--primary-color);
  font-size: 24px;
  text-transform: var(--text-transform);
}
/*reach bhartapur section ends here*/

/*stay section css starts here*/
.royal-suite {
  background-image: url("../img/royal-suite.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px; /* Set a minimum height for the card */
  color: #fff; /* Default text color to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
  border-radius: 15px;
}
.classic-suite {
  background-image: url("../img/classic-suit.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px; /* Set a minimum height for the card */
  color: #fff; /* Default text color to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
  border-radius: 15px;
}

.text-gradient {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1.7),
    rgba(0, 0, 0, -0.3) 100%
  );
  padding: 16px;
  border-radius: 15px;
}

.white-text {
  text-align: center;
  background-color: transparent; /* Make background transparent */
}

/*stay section css end here*/
/*quote section*/
.brown {
  color: var(--primary-color);
  font-size: 35px;
}

.discover-y h4:before {
  position: relative;
  content: url(../img/left.png);
  left: -32%;
  right: 0px;
  top: 25px;
}
.discover-y h4:after {
  position: relative;
  content: url(../img/right.png);
  left: 32%;
  top: -10px;
}
/*quote section*/
/*Experiance section css starts*/
.recreation {
  background-image: url("../img/recreation.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px; /* Set a minimum height for the card */
  color: #fff; /* Default text color to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
}
.culinary {
  background-image: url("../img/culinary.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 500px; /* Set a minimum height for the card */
  color: #fff; /* Default text color to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
}
.dining {
  background-image: url("../img/dinig.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  justify-content: flex-end;
  min-height: 500px; /* Set a minimum height for the card */
  color: #fff; /* Default text color to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
}
.celebration {
  background-image: url("../img/celebration.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  justify-content: flex-end;
  min-height: 500px; /* Set a minimum height for the card */
  color: #fff; /* Default text color to white */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional: Add a shadow effect */
}
.text-gradient-exp {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1.9),
    rgba(0, 0, 0, -0.9) 100%
  );
  padding: 16px;
  border-radius: 15px;
}

/*Experiance section ends here*/
/*offer section css satrt*/
.slides-indicator-bullet [data-bs-target] {
  width: 10px;
  border-radius: 50%;
  height: 10px;
  background-color: var(--primary-color);
}
.slides-indicator-bullet {
  bottom: -50px;
  left: 80%;
  margin-right: 0%;
  margin-left: 0%;
}
.card-title {
  font-size: 20px;
  color: var(--primary-color);
  text-transform: var(--text-transform);
  letter-spacing: 2px;
  font-weight: var(--font-weight-regular);
  margin-bottom: 15px;
}
.card-text {
  font-size: 13px;
}
.card-offer {
  border: none;
  padding: 25px;
  min-height: 300px;
  border-radius: 15px;
}

.offer_button {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
}
.offer-text-link {
  letter-spacing: 5px;
  text-transform: var(--text-transform);
  background-color: transparent;
  flex: 0 auto;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s;
  display: block;
}
.offer-arrow {
  width: 40px;
  margin-left: 20px;
  transform: translate3d(10px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg)
    rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}
.offer_table td{
  padding: 0px;
  border: none;
}
.tableoffer_heading{
  font-size: 15px;
  letter-spacing: 2px;
}
.collapse_btn_offer{
  font-size: 18px;
  color: var(--primary-color);
}
/*offer section css end*/
/*video sectuon css start*/
.video-custom {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 15px;
}

.map-img img {
  max-width: 100%;
}
.video_text {
  width: 75%;
}

/*video section end*/
/*Exploration section css starts here*/
.custom-list {
  list-style-type: disc; /* Default bullet style */
  padding-left: 20px; /* Add some left padding for better indentation */
}

.custom-list li {
  color: #795757; /* Text color, adjust if needed */
  font-size: 22px; /* Adjust size of list text */
  line-height: 1.5; /* Better readability */
  margin-bottom: 10px; /* Space between list items */
  position: relative;
}

/* Gold bullet styling */
.custom-list li::marker {
  color: var(--primary-color); /* Set bullet color to gold */
}

.phone-text {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: bold;
}


/*Exploration section ends here*/
/*instagram section css starts here*/
.instagram_section_custom{
    background-color: var(--white-color);
    border-radius: 15px;
}
.insta_handle .p12{
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: #000;
}
/*instagram sections end here*/
/*reservation section css start*/
.reservation_title{
    letter-spacing: 10px;
    font-size: 24px;
}
.contact_details a {
    color: var(--primary-color);
    font-size: 20px;
}
.newsletter {
    grid-column-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.text-field {
    background-color: #0000;
    border: 0 solid #000;
    border-bottom: 1px solid var(--primary-color);
}
.text-field:focus {
    border-color: var(--primary-color);
    outline: none; /* Ensure no outline on focus */
  }

.w-input, .w-select {
    width: 100%;
    height: 38px;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
}
/*reservation section end here*/

/*whatsapp icon fixed section css start*/
.whatsapp_float {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  background-color: var(--primary-color); /* Gold background */
  color: var(--white-color);
  border-radius: 50%; /* Makes the button round */
  width: 60px; /* Size of the button */
  height: 60px;
  z-index: 1000; /* Make sure it stays on top */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow effect */
}

.whatsapp_float:hover {
  background-color: var(--primary-color); /* Hover effect (darker gold) */
}

.whatsapp-icon {
  font-size: 38px; /* Adjust the icon size */
  color: var(--white-color);
  position: relative;
  top: 10px;
  left: 13px;
}
/*whatsapp section end css*/

/*homes sections ends here*/



@media only screen and (max-width: 1195px) {
  .discover-y h4:before {
    left: -38%;
    top: 30px;
  }
  .discover-y h4:after {
    left: 38%;
    top: -20px;
  }
  /*navbar and header css */
  .navbar-nav .nav-item {
    margin-right: 18px;
    font-size: 14px;
}
.slider_image-height img {
  height: 40vh;
}
.slider_image-height {
  height: 40vh;
}
  /*navbar and header css end*/
  .section-title {
    font-size: 25px;
}
.insta_handle .p12 {
  font-size: 16px;
}
}



@media only screen and (max-width: 1000px){

  /*navbar css mobile */
  .slider_image-height img {
    height: 60vh;
  }
  .slider_image-height {
    height: 60vh;
  }
  .navbar-toggler {
    border: none; /* Removes the default button border */
    outline: none;
    box-shadow: none;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler-icon {
    color: var(--white-color) !important;
    font-size: medium;
  }
  .btn-close {
    filter: invert(1); /* Invert colors to make the close button white */
  }
  .navbar-nav .nav-item {
    font-size: 20px;
    display: inline-block;
  }

  .mobile_menu_offcanvas {
    background-color: var(--primary-color);
  }
  
  /*reservation form css starts*/
  #bookingForm {
    flex-direction: column;
    gap: 20px;
  }
  .date-input {
    margin-right: 0px;
  }
  /*reservation css ends */
  /*gateway section start here*/
  .content_gateway {
    text-align: center;
  }
  .gateway-section {
    border-radius: 0px;
  }
  /*gateway section ends here*/

  /*quote section starts */
  .brown {
    font-size: 25px;
  }
  .discover-y h4:before {
    position: relative;
    content: url(../img/mobile-left.png);
    left: -40%;
    top: 10px;
  }
  .discover-y h4:after {
    position: relative;
    content: url(../img/mobile-right.png);
    left: 40%;
  }
  /*quote section end*/
  /*video section css*/
  .video-custom {
    max-height: 650px;
  }
  .map-img {
    text-align: center;
  }

  .video_text {
    width: 100%;
  }
  /*video section css ned*/
  /*exploration section css start*/
  .exploration-mobile-center{
    display: contents;
  }
  /*exploration section end */
  
  /*experiance section css start*/
  .recreation, .culinary, .dining, .celebration {
    min-height: 560px;
}
  /*experience section ends*/
  /*offer section starts css*/
  .card-offer {
    padding: 0px;
}
.collapse_btn_offer{
  font-size: 18px;
  color: var(--primary-color);
}
  /*offer section css end*/
  .section-title {
    font-size: 22px;
}
.collapse_btn_reach {
  font-size: 20px;
}
.reservation_title {
  letter-spacing: 6px;
}

}



@media only screen and (max-width: 767px) {
  /*navbar css mobile */
  .navbar-toggler {
    border: none; /* Removes the default button border */
    outline: none;
    box-shadow: none;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler-icon {
    color: var(--white-color) !important;
    font-size: medium;
  }
  .btn-close {
    filter: invert(1); /* Invert colors to make the close button white */
  }
  .navbar-nav .nav-item {
    font-size: 20px;
    display: inline-block;
  }

  .mobile_menu_offcanvas {
    background-color: var(--primary-color);
  }

  /*reservation form css starts*/
  #bookingForm {
    flex-direction: column;
    gap: 20px;
  }
  .date-input {
    margin-right: 0px;
  }
  /*reservation css ends */
  /*gateway section start here*/
  .content_gateway {
    text-align: center;
  }
  .gateway-section {
    border-radius: 0px;
  }
  /*gateway section ends here*/

  /*quote section starts */
  .brown {
    font-size: 17px;
  }
  .discover-y h4:before {
    position: relative;
    content: url(../img/mobile-left.png);
    left: -44%;
    top: 10px;
  }
  .discover-y h4:after {
    position: relative;
    content: url(../img/mobile-right.png);
    left: 45%;
  }
  /*quote section end*/
  /*video section css*/
  .video-custom {
    max-height: 650px;
  }
  .map-img {
    text-align: center;
  }

  .video_text {
    width: 100%;
  }
  /*video section css ned*/
  /*exploration section css start*/
  .exploration-mobile-center{
    display: contents;
  }
  /*exploration section end */
  /*all css*/
  .heading-mobile-center{
    text-align: center;
    padding-top: 15px;
  }
  /*whatsapp icon*/
  .whatsapp_float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    font-size: 28px;
  }
  /*Whatsapp icon css end*/

}

@media only screen and (max-width: 500px){
  /*navbar css mobile */
  .slider_image-height img {
    height: 50vh;
  }
  .slider_image-height {
    height: 50vh;
  }
  .date-input input[type="date"] {
    width: 200px;
}
.Newsletter-column-box{
  text-align: center;
}
}
</pre></body></html>