* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  overflow-x: hidden;
}
body {
  padding: 0;
}

.Navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(6, 6, 19);
  padding: 15px 20px;
  height: 10vh;
  font-weight: 600;
  /* color: white; */
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.search-container {
  position: relative;
}

.nav-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.sidebar {
  display: none;
  position: fixed;
  top: 0;
  left: -250px;
  width: 60%;
  height: 100%;
  background-color: rgb(23, 24, 24);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 20px;
}

.sidebar li {
  margin: 15px 0;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.sidebar a:hover {
  color: #a1c7ec;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

.Navbar ul {
  display: flex;
  list-style: none;
}

.Navbar li {
  margin: 0 15px;
}

.Navbar a {
  text-decoration: none;
  color: white;
  padding: 10px 25px;
  transition: background-color 0.3s;
}

.Navbar a:hover {
  background-color: #a1c7ec;
  border-radius: 20px;
  color: black;
}

.search-container {
  position: relative;
}

.nav-input {
  width: 300px;
  padding: 10px 40px 10px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
}

.logo {
  width: 60px;
  height: 60px;
}

.Home {
  width: 100%;
  height: 90vh;
  background: url(images/img2.jpg) center/cover no-repeat;
  filter: brightness(80%);
  /* background-color: #063970; */
}

.home-img {
  width: 100%;
  height: auto;
  display: block;
}

.Home-details {
  width: 42%;
  /* padding: 10px; */
  margin-left: 20px;
  color: rgb(237, 85, 85);
  border-radius: 20px;
}

.Home-details h1 {
  font-size: 45px;
  color: gold;
  text-shadow: 2px 2px 8px gray;

  font-family: "Lobster", sans-serif;
  /* font-family: "Special Gothic Condensed One", sans-serif; */

  font-weight: 800;
  font-style: normal;
  letter-spacing: 4px;
  backdrop-filter: blur(10px);
}

.Home-details h1 span {
  color: black;
  font-size: 30px;
  text-shadow: 2px 2px 8px white;
  font-family: "Exo 2", sans-serif;
}

.Home-details p {
  color: black;
  width: 80%;
  font-size: 20px;
  word-spacing: 4px;
  /* letter-spacing: 2px; */
  text-shadow: 2px 2px 8px white;
  margin-left: 40px;
  font-family: "Lobster", sans-serif;
}

.Home-btn {
  padding: 10px;
  font-size: 20px;
  font-family: monospace;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgb(239, 145, 111),
    orangered,
    rgb(240, 5, 5)
  );
  color: white;
  border: none;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.Home-btn:hover {
  background: black;
  color: orangered;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-size: 24px;
  transition: background-color 0.3s;
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

.Rooms {
  margin-top: -20px;
  width: 100%;
  height: auto;
  background: #215163;
  background: linear-gradient(
    178deg,
    rgba(33, 81, 99, 1) 0%,
    rgba(102, 52, 97, 1) 50%,
    rgba(237, 121, 97, 1) 100%
  );
  padding: 20px;
}

.Rooms h1 {
  color: white;
  margin-bottom: 20px;
  font-size: 40px;
  font-family: "Lobster", sans-serif;
  letter-spacing: 5px;
}

/*  changes done on 20-04-2025*/

.container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: auto;
  background: gainsboro;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.container:hover {
  transform: scale(1.02);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}

.grid-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

.grid-image:hover {
  transform: scale(1.05);
}
.grid-image.large {
  grid-column: span 3;
  height: 200px;
  width: 420px;
}

.grid-image.small {
  height: 100px;
  width: 130px;
}

.toggle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.toggle-button:hover {
  background-color: rgba(255, 255, 255, 1);
}

.details {
  display: flex;
  flex-direction: column;
  background: #f3f1f1;
}

.details h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
  flex: 1;
}

.details p {
  margin: 5px 0;
  color: #666;
  font-size: 16px;
  text-align: left;
}

.rating {
  color: gold;
}

.price {
  font-size: 18px;
  color: black;
}

.dollar-sign {
  color: green;
  font-size: 24px;
  vertical-align: middle;
}

.buttons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.more-details-button,
.more-details-button2 {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.more-details-button {
  background-color: #007bff;
  color: white;
}

.more-details-button:hover {
  background-color: #0056b3;
}

.more-details-button2 {
  background-color: #ff0088;
  color: white;
}

.more-details-button2:hover {
  background-color: white;
  color: #ff0088;
  border: 1px solid #ff0088;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  margin: 15% auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.modal-content img {
  width: 300px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s;
}

.modal-content img:hover {
  transform: scale(1.05);
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

.room-section {
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.room-listing-title,
.room-listing-title1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #ff0088;
  text-transform: uppercase;
  font-family: "Audiowide", sans-serif;
  letter-spacing: 4px;

  text-shadow: 1px 1px 2px rgba(247, 241, 241, 0.9);
}
.room-listing-title1 {
  color: #0056b3;
}

.room-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scroll-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.scroll-btn:hover {
  color: #007bff;
}



.container:hover {
  transform: scale(1.02);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
}

.grid-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

.grid-image:hover {
  transform: scale(1.05);
}

.grid-image.large {
  grid-column: span 3;
  height: 200px;
}

.grid-image.small {
  height: 100px;
}

.toggle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.toggle-button:hover {
  background-color: rgba(255, 255, 255, 1);
}

.details {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.details h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
}

.details p {
  margin: 5px 0;
  color: #666;
  font-size: 16px;
}

.rating {
  color: gold;
}

.price {
  font-size: 18px;
  color: black;
}

.dollar-sign {
  color: green;
  font-size: 24px;
  vertical-align: middle;
}

.buttons {
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.more-details-button,
.more-details-button2 {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
}

.more-details-button {
  background-color: #007bff;
  color: white;
}

.more-details-button:hover {
  background-color: #0056b3;
}

.more-details-button2 {
  background-color: #ff0088;
  color: white;
}

.more-details-button2:hover {
  background-color: white;
  color: #ff0088;
  border: 1px solid #ff0088;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal-content {
  margin: 15% auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.modal-content img {
  width: 500px;
  height: auto;
  border-radius: 5px;
  transition: transform 0.3s;
}

.modal-content img:hover {
  transform: scale(1.05);
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

/* .room-listing {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 60vh;
    text-align: center;
    background: rgb(11, 19, 45);
  } */
/* /* .room-listing {
    display: flex;
    overflow-x: auto; 
    scroll-behavior: smooth;
    gap: 30px; 
    padding: 10px; 
    white-space: nowrap; 
    width: 100%; 
    margin: 0 auto;
    scrollbar-width: thin; 
    -ms-overflow-style: none; 
  }
  
  .room-listing::-webkit-scrollbar {
    display: none; 
  }
  
  .room-item {
    border: 1px solid #323131;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 2px 10px rgba(227, 225, 225, 0.1);
    transition: transform 0.3s;
    padding: 5px;
  }
  
  .room-container {
    padding: 0px 20px;
  }
  
  .room-item:hover {
    transform: scale(1.05);
  }
  
  .room-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .view-details {
    display: block;
    background-color: #0a5827;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    transition: background-color 0.3s;
    font-weight: 700;
  }
  
  #locationFilter,
  #priceFilter {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    margin-left: 200px;
  }
  
  .Hotel {
    padding: 20px;
    text-align: center;
  }
  
  .gallery {
    margin: 20px 0;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  .hotel-details {
    text-align: left;
    margin: 20px 0;
  }
  
  .hotel-details h2 {
    margin-top: 20px;
  }
  
  .hotel-details p {
    margin: 10px 0;
  }
  
  .hotel-details ul {
    list-style: none;
    padding: 0;
  }
  
  .hotel-details ul li {
    margin: 5px 0;
  }
   */

.room-listing {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 20px;
  white-space: nowrap;
  scrollbar-width: thin;
  -ms-overflow-style: none;
}

.room-listing::-webkit-scrollbar {
  display: none;
}

.room-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  width: 320px;
  min-width: 1000px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: row;
  
}

.room-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.room-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.room-info h2 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.room-info .location {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.room-info .price {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.view-details {
  display: inline-block;
  background-color: #0a5827;
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 10px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-details:hover {
  background-color: #08451f;
}
#locationFilter,
#priceFilter {
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  margin-left: 200px;
}

/* Responsive */
/* @media (max-width: 768px) {
    .room-item {
      width: 90%;
      min-width: unset;
      margin: 0 auto;
    }
  } */

.calendar {
  margin: 20px 0;
  text-align: left;
}

.calendar label {
  display: block;
  margin: 10px 0 5px;
}

.calendar input[type="date"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: calc(50% - 12px);
  margin-right: 10px;
}

.check-availability {
  background-color: #25d366;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.check-availability:hover {
  background-color: #128c7e;
}

#Contact {
  width: 100%;
  color: white;
  height: 100vh;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* background: linear-gradient(160deg,#323131,rgb(11, 11, 31), rgb(12, 12, 28)); */
  background: url(images/contact-bg.jpg) center/cover no-repeat;
}

#Contact h1 {
  font-size: 40px;
  margin-left: 600px;
  color: white;
}

.contact-form {
  display: grid;
  width: 40%;
  padding: 20px;
  margin: 20px 0 10px 40px;
  /* background: rgba(57, 56, 56, 0.1); */
  background: linear-gradient(black);
  border: 1px solid black;
  border-radius: 90px 20px;
  margin-left: 600px;
  box-shadow: inset 0 -3em 3em rgba(244, 245, 244, 0.3), 0 0 0 2px white,
    0.3em 0.3em 1em rgba(247, 244, 244, 0.4);
}

.contact-form input,
.contact-form label,
.contact-form textarea {
  padding: 10px;
  margin: 10px 40px 0 0;
  border-radius: 10px;
  border: none;
  height: 5vh;
}
.contact-form textarea {
  height: 10vh;
}

.contact-form button {
  width: 50%;
  margin: 20px auto 0;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, orangered, #ed7961);
  color: black;
  cursor: pointer;
  border: none;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

#About {
  width: 100%;
  height: auto;
  background: rgb(41, 41, 41);
  color: white;
}

.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 50px;
  background: rgb(23, 24, 24);
  color: white;
  text-align: center;
  height: auto;
}

.footer div {
  flex: 1;
  padding: 10px;
  min-width: 200px;
}

.footer h2 {
  color: #aaa;
  margin-bottom: 10px;
}

.footer ul {
  list-style-type: none;
  padding: 10px;
}

.footer li {
  margin: 8px 0;
  padding: 5px;
}

.footer a,
.footer h4 {
  text-decoration: none;
  color: white;
  font-size: 16px;
  transition: color 0.3s;
  cursor: pointer;
}

.footer a:hover,
.footer h4:hover {
  color: #0e7ceb;
}

.copy {
  text-align: center;
  padding: 20px;
  background: rgb(10, 14, 25);
  color: #ccc;
}

.room-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.room-listing {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px;
  white-space: nowrap;
  width: 83%;
  margin-left: 100px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.room-listing::-webkit-scrollbar {
  display: none;
}

.room-item {
  flex: 0 0 auto;
  width: 300px;
  /* border: 1px solid #fd1010; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: white;
  /* text-align: center; */
}
.room-item p {
  font-size: 10px;
  text-align: right;
}
.room-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(21, 0, 0, 0.2);
  color: rgb(25, 1, 1);
  border: none;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.scroll-left,.scroll-left1 {
  left: 90px;
}

.scroll-right,.scroll-right1 {
  right: 90px;
}

.scroll-btn:hover {
  background: rgba(255, 255, 255, 0.7);
  color: black;
}

.gallery {
  text-align: center;
  position: relative;
  max-width: 500px;
  margin: 20px auto;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
}

.gallery button {
  position: absolute;
  top: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.hotel-info {
  text-align: center;
  font-size: 18px;
}

.booking-form {
  text-align: center;
}

.booking-form input {
  display: block;
  margin: 10px auto;
  padding: 10px;
  width: 200px;
}

.search-results {
  position: absolute;
  background: white;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.search-results div {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.search-results div:hover {
  background: #f0f0f0;
}

/* faq */

.faq-container {
  max-width: 800px;
  margin: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin-bottom: 20px;
}

.faq-header {
  text-align: center;
  width: 100%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.faq-header h1 {
  font-size: 50px;
}

.faq-header p {
  padding: 20px;
  color: rgb(99, 96, 96);
}

h1 {
  text-align: center;
  color: #333;
}

.faq-item {
  padding: 10px;
}

.faq-question {
  background-color: #05468c;
  color: white;
  border: none;
  padding: 15px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #0056b3;
}

.faq-answer {
  display: none;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
  background-color: rgb(207, 204, 204);
}

/*hotel design css*/
header {
  text-align: center;
  margin-bottom: 20px;
}

.hotel-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 20px;
}

.map-container {
  width: 50%;
  height: 300px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin-top: 60px;
}

.gallery {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s;
}

#gallery-img {
  height: 400px;
  width: 500px;
}
.prev,
.next {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 10px;
}

.hotel-info {
  text-align: center;
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #91dbd4;
  background: linear-gradient(
    0deg,
    rgb(44, 68, 65) 0%,
    rgba(175, 132, 189, 1) 50%,
    rgba(176, 130, 121, 1) 100%
  );
  padding: 40px;
  border-radius: 40px;
}

.booking-container {
  padding: 20px;

  text-align: center;
  display: inline;
  justify-content: center;
}

.booking-form label {
  display: block;
  margin: 10px 0;
}

.booking-form input {
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#book-whatsapp {
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#book-whatsapp:hover {
  background-color: #128c7e;
}

.bill-container {
  display: none;
  border: 2px solid #000;
  padding: 20px;
  width: 350px;
  margin-top: 20px;
  background: #f9f9f9;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.bill-container h2 {
  text-align: center;
}

.bill-container p {
  margin: 5px 0;
  font-size: 16px;
}

#confirm-booking {
  background-color: green;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-top: 10px;
  border-radius: 20px;
}
#email {
  background-color: #a7dad4;
  color: black;
  padding: 10px;
  border: none;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-top: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  width: 400px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

#generate-bill {
  padding: 10px;
  border-radius: 10px;
  background-color: orange;
  border: none;
}

#generate-bill:hover {
  background-color: orangered;
  color: white;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
.features {
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  background: rgb(255, 253, 253);
}

.features h2 {
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
}

.feature-item {
  background: rgb(163, 162, 162);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 150px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 20px;
}
.feature-item i {
  margin-right: 10px;
  font-size: 1.5em;
  color: #007bff;
}
.feature-item:hover {
  color: white;
  background: #6a8aac;
}

.reviews {
  margin-top: 40px;
  text-align: center;
  height: 50vh;
}

.review-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.review {
  background: #aeabab;
  border-radius: 8px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 22%;
  height: 200px;
  max-width: 400px;
  text-align: left;
  transition: transform 0.3s ease;
}

.review:hover {
  transform: scale(1.05);
  z-index: 1;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-country {
  font-size: 0.9em;
  color: #777;
}

.review-time {
  font-size: 0.8em;
  color: #aaa;
  margin-left: 10px;
}

/* mobile resonsiveness */

@media (max-width: 600px) {
  /* html,body {
      font-family: Arial, Helvetica, sans-serif;
      width: 100%;
      overflow-x: hidden;
    } */

  .Navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    display: none;
  }

  .menu-toggle {
    margin-top: -90px;

    /* margin-top: 10px; */
    display: block;
  }
  .sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background-color: rgb(63, 62, 62);
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1001;
  }

  .sidebar.open {
    left: 0;
  }

  .overlay {
    display: none;
  }

  .overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .Navbar ul {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .Navbar li {
    margin: 10px 0;
  }

  .Home-details {
    width: 100%;
    margin-left: 0;
    padding: 10px;
    color: black;
  }

  .Home-details h1 {
    font-size: 40px;
    color: orangered;
    margin-top: 60px;
  }

  .Home-details p {
    width: 80%;
    color: black;
  }

  .Home-btn {
    width: 50%;
    font-size: 30px;
  }

  #locationFilter {
    width: 40%;
  }
  .room-container {
    /* display: flex;
      justify-content: center;
      align-items: center; */
    flex-direction: column;
    margin-left: -60px;
  }
  .room-listing {
    align-items: center;
  }
  .scroll-right {
    background: red;
  }

  /* .room-item {
      width: 100%;
      margin: 10px 0;
    } */
  .room-item {
    width: 100%;
    min-width: unset;
    margin: 0 auto;
  }
  #searchInput {
    width: 75%;
    margin-left: 100px;
    margin-top: -20px;
  }
  .logo {
    margin-top: 10px;
    /* display: none; */
  }

  .contact-form {
    width: 90%;
    margin: 20px auto;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    margin: 10px 0;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }

  .footer div {
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer h2 {
    font-size: 20px;
  }

  .footer a,
  .footer h4 {
    font-size: 14px;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* .scroll-btn {
      width: 40px;
      height: 40px;
      font-size: 18px; 
      background: rgba(0, 0, 0, 0.5);
      color: white; 
      border: none;  
      border-radius: 50%;  
      cursor: pointer; 
      display: flex;
      align-items: center; 
      justify-content: center; 
      z-index: 10; 
      transition: background 0.3s; 
  } */
  .scroll-btn,
  .scroll-right,
  .scroll-left {
    /* left: 20; */
    padding: 10px;
    /* margin-left: 90px; */
  }
  .scroll-left,.scroll-left1 {
    left: 10px;
    margin-right: 0;
  }
  .scroll-right, .scroll-right1 {
    right: -80px;
    margin-left: 0;
  }

  .gallery {
    max-width: 100%;
  }

  .gallery img {
    height: auto;
  }

  .search-container {
    width: 100%;
  }

  .nav-input {
    width: 100%;
    padding: 10px;
  }

  .calendar input[type="date"] {
    width: 100%;
    margin-right: 0;
  }
  .faq-header h1 {
    font-size: 28px;
  }

  .faq-header p {
    font-size: 16px;
  }

  .faq-container {
    padding: 15px;
  }

  .faq-question {
    font-size: 14px;
  }

  #gallery-img {
    height: 300px;
    width: 300px;
  }
  .hotel-img {
    flex-direction: column;
    align-items: center;
  }

  .map-container {
    width: 100%;
    height: 200px;
  }

  .gallery {
    width: 100%;
  }

  .gallery img {
    height: 30vh;
  }

  .booking-form {
    flex-direction: column;
    padding: 20px;
  }

  .booking-form input {
    width: 100%;
    margin: 10px 0;
  }

  .bill-container {
    width: 90%;
    margin: 20px auto;
  }

  .gallery img {
    height: 30vh;
  }

  .review-container {
    flex-direction: column;
    align-items: center;
  }

  .review {
    width: 90%;
    margin: 10px 0;
  }

  .features {
    padding: 20px;
  }

  .feature-list {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    width: 80%;
  }
}

@media (max-width: 376px) {
  /* .nav-input{
      margin-top: -80px;
    } */
  .Home-details h1 {
    font-size: 24px;
  }

  .Home-details p {
    font-size: 14px;
  }

  .Home-btn {
    font-size: 16px;
  }

  .Rooms h1 {
    font-size: 28px;
  }

  .room-item {
    width: 100%;
  }
  
  .view-details{
      width: 100%;
  }

  .contact-form {
    width: 90%;
  }

  .footer h2 {
    font-size: 18px;
  }

  .footer a,
  .footer h4 {
    font-size: 12px;
  }
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: auto;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.title h1 {
  font-weight: 600;
  color: #a363aa;
  font-size: 40px;
}

.title hr {
  border-radius: 10px;
  background-color: #a363aa;
  border: none;
  width: 200px;
  height: 5px;
}
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.form-group label {
  font-family: sans-serif;
  font-style: oblique;
  flex: 1;
  font-size: 20px;
  font-weight: 900;
}

.contact-left input,
.contact-left textarea {
  flex: 2;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  color: #666;
  padding-left: 25px;
  font-weight: 500;
  border: none;
  outline: none;
}
.contact-left input:focus {
  border: 2px solid black;
}
.contact-left textarea:focus {
  border: 2px solid black;
}

.contact-left textarea {
  height: 100px;
  border-radius: 10px;
  padding-top: 15px;
}
.contact-left button {
  width: 120px;
  text-align: center;
  padding: 10px;
  border-radius: 20px;
  border: 2px solid red;
  margin-left: 300px;
  background: linear-gradient(170deg, orangered, orange);
  color: white;
  font-weight: 500;
  font-size: 20px;
}
