@font-face {
  font-family: "Playfair Display";
  src: url("../Fonts/PlayfairDisplay-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  src: url("../Fonts/Lato-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display SC";
  src: url("../Fonts/PlayfairDisplaySC-Black.ttf") format("truetype");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 0.5s;
}
body {
  overflow-x: hidden;
}



header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  background-color: white;
  /* Optional */
  position: relative;
}
.navbar {
  padding-inline: 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  width: 100px;
  height: 95%;
  margin-block: 10px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin: 0 0px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  font-family: "Lato";
  color: black;
  font-size: 16px;
  padding: 5px 10px;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}

.navbar ul li a::before,
.navbar ul li a::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #d64942;
  /* color: #D64942; */
  width: 0;
  bottom: 0;
  transition: width 0.5s ease;
}

.navbar ul li a::before {
  left: 5;
}

.navbar ul li a::after {
  right: 0;
}

.navbar ul li a:hover::before {
  width: 80%;
}

.navbar ul li a.active {
  color: #d64942;
  /* Change color to highlight active link */
  font-weight: bold;
  /* Optional: Make it bold */
}

.navbar ul li a.active::before {
  width: 70%;
  /* Ensure underline is visible */
}

.whatsapp img {
  width: 30px;
  /* Adjust width as needed */
  height: 30px;
  /* Set a fixed height if needed */
  object-fit: cover;
  /* Options: cover, contain, fill, none, scale-down */
  border-radius: 5px;
  /* Optional: Add rounded corners */
}

.login {
  width: 27%;
  justify-content: space-evenly;
  align-items: center;
  display: flex;
  font-size: 1rem;
  cursor: pointer;
}

.login button {
  background-color: #d64942;
  width: 120px;
  color: white;
  border: none;
  height: 40px;
  border-radius: 5px;
  transition: background 0.3s;
}
button:hover {
  cursor: pointer;
}
.login button:hover {
  background-color: #b53732;
}

a {
  color: white;
  font-family: Lato;
  text-decoration: none;
  font-size: 16px;
}
.login .what {
  color: #d64942;
  font-size: 16px;
  font-family: Lato;
}

.toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.toggle span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 4px 0;
}

@media (max-width: 768px) {
  header {
    padding: 0 0.5rem;
    height: 4rem;
  }

  .logo {
    width: 70px;
    height: 85%;
    margin-right: 0;
  }

  .navbar {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    z-index: 1000;
  }

  .navbar ul li a::before,
  .navbar ul li a::after {
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar nav {
    width: 100%;
  }
  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar ul li {
    margin: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li:last-child {
    border-bottom: none;
  }

  .navbar ul li a {
    padding: 8px 0;
    display: block;
    font-size: 14px;
    font-family: Lato;
  }

  .login {
    width: auto;
    display: flex;
    gap: 10px;
  }

  .login button {
    width: 90px;
    height: 40px;
    font-size: 16px;
  }

  .whatsapp img {
    /* display: none; */
    width: 24px;
    height: 24px;
  }

  .toggle {
    display: block;
    margin-left: 10px;
  }

  .toggle i {
    font-size: 20px;
    color: #d64942;
    padding-right: 10px;
  }
  #register {
    display: none;
  }
}
@media (max-width: 480px) {
  #register {
    display: none;
  }
  header {
    padding: 0 0.5rem;
    height: 4rem;
  }

  .logo {
    width: 70px;
    height: 85%;
    margin-right: 0;
  }

  .navbar {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    z-index: 1000;
  }
  .login .what {
    display: none;

    font-size: 14px;
    text-align: center;
  }
  button {
    border-radius: 5px;
    transition: background 0.3s;
  }

  .navbar ul li a::before,
  .navbar ul li a::after {
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar nav {
    width: 100%;
  }
  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar ul li {
    margin: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li:last-child {
    border-bottom: none;
  }

  .navbar ul li a {
    padding: 8px 0;
    display: block;
    font-size: 14px;
  }

  .login {
    width: auto;
    display: flex;
    gap: 5px;
    margin-left: 120px;
  }

  .login button {
    width: 90px;
    /* margin-right: 2px; */
    height: 40px;
    margin-left: 10px;
    font-size: 12px;
  }

  .whatsapp img {
    width: 30px;
    height: 30px;
  }

  .login img:nth-child(2) {
    display: none;
    /* Hiding the "Book a room via WhatsApp" text image */
  }

  .toggle {
    display: block;
    margin-left: 10px;
  }

  .toggle i {
    font-size: 30px;
    color: #d64942;
  }
}
@media (max-width: 375px) {
  #register {
    display: none;
  }
  header {
    padding: 0 0.5rem;
    height: 4rem;
  }

  .logo {
    width: 70px;
    height: 85%;
    margin-right: 0;
  }

  .navbar {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 100%;
    background: white;
    display: none;
    z-index: 1000;
  }
  .login .what {
    display: none;
    font-size: 14px;
    text-align: center;
  }
  button {
    border-radius: 5px;
    transition: background 0.3s;
  }

  .navbar ul li a::before,
  .navbar ul li a::after {
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar nav {
    width: 100%;
  }
  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar ul li {
    margin: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .navbar ul li:last-child {
    border-bottom: none;
  }

  .navbar ul li a {
    padding: 8px 0;
    display: block;
    font-size: 14px;
  }

  .login {
    margin-left: 40px;
    gap: 6px;
  }

  .login button {
    width: 90px;
    /* margin-right: 2px; */
    height: 40px;
    margin-left: 10px;
    font-size: 12px;
  }

  .whatsapp img {
    width: 30px;
    height: 30px;
  }

  .login img:nth-child(2) {
    display: none;
    /* Hiding the "Book a room via WhatsApp" text image */
  }

  .toggle {
    display: block;
    margin-left: 10px;
  }

  .toggle i {
    font-size: 30px;
    color: #d64942;
  }
}

.navbar.active {
  display: flex;
}

.room-booking-section {
  position: relative;
  width: 100%;
  height: 578px;
}

.room-booking-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #d9d9d9 0%, #d9d9d9 100%);
}

.room-booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

.room-booking-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
}

.room-booking-title {
  font-size: 2.5rem;
  font-family: "Playfair Display";
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  max-width: 90%;
}

.room-booking-description {
  font-size: 1rem;
  font-family: "Playfair Display";
  font-weight: 200;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 60%;
}

.room-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: #d64942;
  color: white;
  font-size: 1rem;
  font-family: "Lato";
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.room-booking-btn:hover {
  background-color: #b53732;
}

/* Base Styles */

/*  */
.ideal-room-section {
  position: relative;
  width: 100%;
  height: auto;
  /* Set height to auto for responsiveness */
  min-height: 600px;
  /* Add a min-height to ensure the section has some height even on smaller screens */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Background Image */
.ideal-room-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Dark Overlay */
.ideal-room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Content Box */
.ideal-room-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
  max-width: 800px;
  /* Keeps content width manageable */
  margin: 0 auto;
}

/* Title */
.ideal-room-title {
  font-size: 80px;
  font-family: "Playfair Display", serif;
  line-height: 80px;
  margin: 0;
  text-transform: uppercase;
}

/* Description */
.ideal-room-description {
  font-size: 20px;
  font-family: "Lato", sans-serif;
  /* font-weight:200; */
  padding-top: 2%;

  line-height: 1.5;
  margin: 20px 0;
  max-width: 600px;
  padding-right: 22px;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* Booking Options (Dropdowns) */
.booking-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin-top: 20px;
}

.dropdown-text {
  font-family: "Lato", sans-serif;
  color: white;
  font-size: 16px;
}

.dropdown-content {
  font-family: "Lato", sans-serif;
  display: none;
  position: absolute;
  top: 90%;
  left: 0;
  background: black;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  padding: 5px;
  cursor: pointer;
}

.divider {
  width: 2px;
  height: 30px;
  background: white;
}

/* Book Now Button */
.book-now-btn {
  background: #ff6600;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.book-now-btn:hover {
  background: #e65c00;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  #register {
    display: none;
  }
  .book-now-btn {
    width: 120px;}
  .ideal-room-title {
    font-size: 4rem;
    /* Adjust font size for tablet */
  }

  .ideal-room-description {
    font-size: 14px;
  }

  .booking-options {
    flex-wrap: nowrap;
  }

  .dropdown {
    width: 100%;
    color: black;
    text-align: left;
  }

  .book-now-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ideal-room-title {
    font-size: 3rem;
    line-height: 50px;
    padding-bottom: 10px;
    /* Smaller font for mobile */
  }

  .ideal-room-description {
    font-size: 14px;
    padding: 0 10px;
    padding-bottom: 10px;
  }

  .booking-options {
    flex-direction: column;
    gap: 10px;
    width: 90%;
  }
  .divider {
    display: none;
  }
  .dropdown {
    width: 100%;
    padding: 12px 15px;
  }

  .book-now-btn {
    width: 100%;
    padding: 12px;
  }

  .ideal-room-section {
    padding: 20px 0;
    height: 500px;
    /* Adjusted for mobile */
  }
}

@media (max-width: 320px) {
  .ideal-room-title {
    font-size: 1.8rem;
    line-height: 32px;
  }

  .ideal-room-description {
    font-size: 14px;
    padding: 0 10px;
  }

  .booking-options {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .dropdown {
    width: 100%;
    padding: 12px 15px;
  }

  .book-now-btn {
    width: 100%;
    padding: 12px;
  }

  .ideal-room-section {
    padding: 30px 0;
    height: 400px;
    /* Adjusted for mobile */
  }
}

/* Section Styling */
.amenities {
  width: 100%;
  padding: 50px 20px;
  background: #fff;
}

.amenities-title {
  font-size: 32px;
  font-weight: 700;
  margin-left: 60px;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
}

/* Grid Container */
.amenities-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}

/* Amenity Box */
.amenity-box {
  padding: 20px;
  width: 15%;
  height: 90px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.amenity-box p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  font-family: "Lato";
}

.amenity-box:hover {
  transform: scale(1.1);
}

/* Icons */
.amenity-box img {
  object-fit: cover;
  width: 63px;
  height: 63px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .amenities-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: center;
  }

  .amenity-box {
    width: 100%;
    text-align: center;
  }

  .amenity-box img {
    width: 50px;
    height: 50px;
  }
}

/* Small Screens - 3 Rows, 2 Columns */
@media (max-width: 480px) {
  .amenities-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-content: center;
  }

  .amenities-title {
    text-align: left;
    margin-left: 20px;
  }

  .amenity-box {
    width: 100%;
    padding: 15px;
  }

  .amenity-box img {
    width: 45px;
    height: 45px;
  }
  .amenities {
    width: 100%;
    padding: 50px 10px;
    background: #fff;
  }
}

/* Booking Options Container */

.ideal-room-section {
  background: url("Images/Group_37.jpg") no-repeat center center;
  background-size: cover;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  transition: transform 0.5s ease; /* Smooth transition */
}
.booking-options {
  display: flex;
  margin: auto;
  align-items: center;
  /* background: white; */
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Dropdown Styling */
.dropdown {
  position: relative;
  padding: 10px 20px;
  border-radius: 5px;
  margin: auto;
  cursor: pointer;
  color: white;
  user-select: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dropdown Icon */
.dropdown-icon {
  font-size: 14px;
  color: #333;
}

/* Dropdown Content */
.dropdown-content {
  font-family: "Lato", sans-serif;
  position: absolute;
  top: 40px;
  left: 0;
  /* background: white; */
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: none;
  /* Initially hidden */
  flex-direction: column;
  width: 100%;
  min-width: 200px;
  z-index: 10;
}

/* Dropdown Items */
/* .dropdown-item {
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
} */

.dropdown-item:hover {
  background: #ddd;
  color: black;
}

/* Show dropdown when active */
.dropdown.active .dropdown-content {
  display: flex;
}
.anchor {
  text-decoration: none;
}
/* Divider Styling */
.divider {
  width: 1px;
  height: 30px;
  background: #ccc;
  margin: 0 10px;
}

/* Book Now Button */
.book-now-btn {
  background: #d64942;
  color: white;
  margin: auto;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.book-now-btn:hover {
  background: #b53733;
}

/* Responsive Design */
@media (max-width: 600px) {
  .booking-options {
    flex-direction: column;
    gap: 10px;
  }

  .divider {
    display: none;
  }

  .dropdown {
    width: 100%;
    justify-content: space-between;
  }
}

/* Flexbox Layout for Contact Section */
.contact-container {
  display: flex;
  /* flex-direction: row; */
  align-items: center;
  justify-content: space-around;
  padding: 60px 5%;
  /* gap: 40px; */
  flex-wrap: wrap;
}

/* Left Content */
.contact-info {
  /* flex: 1; */
  width: 50%;
  /* margin-left: 10%; */
}

.phone-email a {
  text-decoration: none;
  color: black;
}

.phone-email a:hover {
  color: #d64942;
}

.ready-for-trip {
  font-size: 30px;
  font-weight: 700;
  color: black;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.address {
  width: 50%;
}
@media (max-width: 1024px) {
  .address {
    width: 100%;
  }
}

.assistance-info {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Address, Phone & Email */
.contact-details {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  height: 80%;
  color: #212121;
  line-height: 2;
}

.icon {
  font-size: 20px;
  color: #d64942;
  margin-right: 8px;
}

/* Google Maps Styling */
.image-container {
  /* flex: 1; */
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container iframe {
  width: 100%;
  max-width: 500px;
  height: 300px;
  /* border-radius: 10px; */
  border: 2px solid #d64942;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .contact-info,
  .image-container {
    width: 90%;
  }

  .ready-for-trip {
    font-size: 16px;
  }

  .image-container iframe {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .ready-for-trip {
    font-size: 30px;
    text-align: left;
    /* margin-left: -22px; */
  }

  .assistance-info {
    font-size: 16px;
    font-family: "Lato";
  }

  .contact-details {
    font-size: 14px;
  }

  .image-container iframe {
    height: 200px;
  }

}

/*  */
.btn-flex {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-top: 2px;
  align-items: left;
  transition: all 0.3s ease;
}

.btn-flex h2 {
  text-align: left;
  font-size: 24px;
  padding-bottom: 5px;
  /* margin: 10px 0; */
}

.btn-flex .book-now {
  background: #d64942;
  color: white;
  border: none;
  height: 40px;
  width: 150px;
  margin-top: 2%;
  /* padding: 10px px; */
  /* border-radius: 5px; */
  cursor: pointer;
}
.btn-flex .book-now:hover {
  background: #b53733;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-container {
    max-width: 100%;
  }

  .room-card {
    min-width: 80%;
  }
  .btn-flex {
    width: 50%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .room-card {
    /* min-width: 100%; */
    width: 100%;
  }
  .ideal-room-description {
    font-size: 12px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .btn-flex h2 {
    font-size: 24px;
  }

  .btn-flex {
    width: 100%;
    text-align: center;
    align-items: start;
  }
}
/*end of code  */

/* second slider css */
.slider-title11 {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  /* margin-bottom: 20px; */
  padding-left: 80px;
  position: relative;
}

.control-btn1 {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}

.slider-container1 {
  width: 100%;
  /* max-width: 1200px; */
  /* overflow: hidden; */
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.slide1 {
  width: 20%;
  /* min-width: 200px; */
  height: auto;
  transition: transform 0.5s ease-in-out;
}

.slide1 .img1 {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.slide1.active1 {
  transform: scale(1.1);
}

.slider-controls1 {
  position: absolute;
  top: 5px;
  left: 360px;
  display: flex;
}

.prev-btn1,
.next-btn1 {
  background: none;
  border: 2px solid #d64942;
  color: #d64942;
  font-size: 1rem;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.prev-btn1:hover,
.next-btn1:hover {
  background: #d64942;
  color: white;
}

.Near-By-Places {
  text-align: center;
  margin-top: 5%;
  /* padding: 20px; */
  position: relative;
  /* border: 5px solid red; */
}

@media (max-width: 768px) {
  .slider-title1 {
    text-align: left;
    font-size: 20px;
  }

 
  .contact-container {
      flex-direction: column;
      text-align: left;
      padding: 40px 5%;
  }
  
}

  .slider-container1 {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden; /* Hide overflow */
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    transition: transform 0.4s ease-in-out;
  }

  .slide1 {
    min-width: 100%; /* Ensures one image per view */
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .img1 {
    width: 100%;
    height: auto;
  }

  .slider-controls1 {
    position: absolute;
    left: 80%;
    top: -5px;
    transform: translateX(-50%);
    display: flex;
    /* gap: 10px; */
  }


@media (max-width: 320px) {
  .Near-By-Places {
    margin-top: 10%;
    padding: 20px;
  }

  .slider-title1 {
    /* text-align: left; */
    left: 0;
    font-size: 20px;
    padding-left: 10px;
    top: 15px;
    /* border: 1px solid red; */
  }

  .slider-container1 {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden; /* Hide overflow */
    scroll-snap-type: x mandatory;
    justify-content: flex-start;
    transition: transform 0.4s ease-in-out;
  }

  .slide1 {
    min-width: 100%; /* Ensures one image per view */
    scroll-snap-align: center;
    flex-shrink: 0;
  }

  .img1 {
    width: 100%;
    height: auto;
  }

  .slider-controls1 {
    position: absolute;
    /* left: 50%; */
    /* top: 250px; */

    left: 77%;
    top: 15px;

    transform: translateX(-40%);
    display: flex;
    gap: 10px;
    margin-bottom: 5%;
  }
 
 
    
}


.testimonial-section {
  margin-top: 5%;
  width: 95%;
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial-container {
  width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}
.testimonial {
  flex: 0 0 33.33%; /* Show 3 slides in normal view */
  max-width: 33.33%;
  height: 250px;
  padding: 20px;
  border: 2px solid #f70808;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  text-align: center;
  overflow: hidden; /* Prevents background overflow */
  background-color: rgba(255, 255, 255, 0.8); /* Adjust if needed */
}

.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../Images/testimonial-background.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.5; /* Controls background transparency */
  z-index: -1; /* Keeps background behind content */
}

/* Ensuring image and text remain fully visible */
.testimonial img,
.testimonial p,
.testimonial h2 {
  position: relative;
  z-index: 1;
}

/* Mobile View: Show 1 slide per view */
/* Default: Desktop View (3 slides) */
.testimonial {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

/* Tablet View: Show 2 slides */
@media (max-width: 1024px) {
  .testimonial {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile View: Show 1 slide */
@media (max-width: 768px) {
  .testimonial {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* new roon slider */

/* Room slider section styling */
.room-slider-section {
  /* padding: 30px; */
  padding-left: 70px;
  padding-right: 60px;
  position: relative;
}

.slider-title {
  font-size: 2rem;
  /* padding: 20px; */
  /* margin-left: 30px; */
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-top: 20px;
  position: relative;
}

/* Swiper container styles */
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  /* justify-content: center; */
  align-items: center;

  padding-right: 20px;
}
/* Keep Room Slider Overflow Hidden */
.room-slider-section .swiper {
  overflow: hidden;
}

/* Make Testimonial Swiper Overflow Visible */
.testimonial-swiper {
  overflow: visible !important;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .swiper-slide:hover{
      transform: scale(1.1);
    } */

.swiper-slide img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Content overlay within each slide */
.slide-content {
  padding: 10px;
  text-align: left;
}

.slide-content h2 {
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.slide-content .book-now {
  display: inline-block;
  background: #d64942;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  /* border-radius: 4px; */
  transition: background 0.3s ease;
}

.slide-content .book-now:hover {
  background: #b53733;
}

.slider-controls {
  position: absolute;
  top: 53px;
  left:160px;
  gap: 12px;
  padding-left: 10px;
  display: flex;
  justify-content: space-between;
}

.prev-btn,
.next-btn {
  background: none;
  border: 2px solid #d64942;
  color: #d64942;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 31.67px;
  height: 31.67px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  bottom: 26px;
}
.prev-btn:hover {
  color: #fff;
  background-color: #d64942;
}
.next-btn:hover {
  color: #fff;
  background-color: #d64942;
}

@media (max-width: 425px) {
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 20px; */
  }
  .room-slider-section {
    padding: 20px;
  }
  .swiper-slide img {
    /* width: 80%; */
    /* max-width: 100%; */
    height: 400px;
    object-fit: cover;
  }
  .slider-controls {
    top: 52px;
    left: 272px;
    padding-left: 10px;
  }
  .amenity-box p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
  }
}

@media(max-width:400px){
  .slider-controls{
    top: 52px;
    left: 272px;
  }
}


@media (max-width: 375px) {
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 20px; */
  }
  .room-slider-section {
    padding: 20px;
  }
  .swiper-slide img {
    /* width: 80%; */
    /* max-width: 100%; */
    height: 400px;
    object-fit: cover;
  }
  .slider-controls {
    top: 52px;
    left: 250px;
    padding-left: 10px;
  }
}

@media (max-width: 320px) {
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-left: 20px; */
  }
  .swiper-slide img {
    /* width: 80%; */
    /* max-width: 100%; */
    height: 400px;
    object-fit: cover;
  }
  .room-slider-section {
    padding: 20px;
  }
  .slider-controls {
    top: 52px;
    left: 194px;
    padding-left: 10px;
  }
}

.title {
  font-family: "Playfair Display", serif;
  text-align: left;
  font-size: 32px;
  padding-left: 60px;
  margin-bottom: 50px;
  text-transform: uppercase;
}
@media(max-width:425px)
{
  .title{
    padding-left:0px;
    font-size:30px;
  }
}




.swiper {
  width: 100%;
  /* padding: 50px 0; */
  /* border: 1px solid rgb(172, 239, 0); */
}

.quote {
  position: absolute;
  top: -30px;
  left: 40px;
}

.quote img {
  width: 50px;
  height: 50px;
}

.testimonial-text {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  line-height: 1.6;
  color: #000000;
  font-family: "Lato";
}

.author {
  font-family: "Lato", serif;
  margin-top: 30px;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
}

.author::before {
  content: "~ ";
  color: #ff6b6b;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ff6b6b;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Previous styles remain the same */

.swiper-slide1 {
  border: 1px solid rgba(214, 73, 66, 1);
  padding: 40px;
  width: 606px;
  height: 295px;
  padding-right: 20px;
  position: relative;
  text-align: center;
  border: 2px solid blue;
  /* Remove background-image from here */
}

.swiper-slide1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("redwaves.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* Adjusted opacity value (0-1) */
  z-index: -1;
}
/*  */


/* codepan */
.testimonial-container {
  width: 100%;
  margin: 50px auto;
  padding: 0 20px;
}


.testimonial-swiper .swiper-slide {
  border: 1px solid rgba(214, 73, 66, 1);
  padding: 40px;
  width: 550px;
  height: 300px;
  position: relative;
  text-align: center;
  background-color: rgba(255, 255, 255, 1);
}

.testimonial-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../Images/testimonial-background.jpeg);
  opacity: 0.1;
  z-index: -1;
}

.testimonial-swiper .quote {
  position: absolute;
  top: -30px;
  left: 40px;
}

@media (max-width: 425px) {
  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0; /* Remove right padding */
  }
  .room-slider-section {
    padding: 20px; /* Adjust padding for small screens */
  }
}

/* near-by-slider */

.wrapper {
  max-width: 100%;
  width: 92%; /* Adjustable */
  margin: 0 auto; /* Centers the slider */
  overflow: hidden; /* Hides unwanted horizontal scrolling */
}

@media (max-width: 1024px) {
  .wrapper {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wrapper {
    width: 92%;
  }
}

@media (max-width: 425px), (max-width: 375px), (max-width: 320px) {
  .wrapper {
    width: 92%;
  }
}

.center-slider {
  display: flex;
  justify-content: center; /* Centers all slide items */
  align-items: center;
  gap: 10px; /* Optional: adds space between slides */
}

.center-slider div {
  flex-shrink: 0; /* Prevents shrinking */
  text-align: center;
}

/* Section Header Styles */
.section-header {
  display: flex;
  gap: 20px;
  align-items: center;
  /* justify-content: space-between; */
  margin-bottom: 30px;
  padding: 30px 20px;
}

.slider-title-1 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  padding-left: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Playfair Display", serif;
}
@media (max-width: 425px) {
  .slider-title-1 {
    font-size: 29px;
    padding-left: 0px;
  }
  .slider-controls-10 {
    padding-top: 10px;
    padding-left: 20px;
  }
}

.control-btn-1 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #d64942;
  background: transparent;
  color: #d64942;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.control-btn-1:hover {
  background: #d64942;
  color: white;
}

/* Default slide */
.center-slider .slick-slide {
  color: #fff;
  width: 100%;
  height: auto;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  /* border-radius: 15px; */
  /* Rounded corners */
  overflow: hidden;
}

.center-slider .slick-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.center-slider .slick-slide,
.center-slider
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}

/* Active center slide */
.center-slider .slick-center,
.center-slider
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
  background-color: #000000;
}

.center-slider .slick-current.slick-active {
  transform: scale(1.1);
  background-color: #000000;
}

/* Navigation arrows */
.slider-header {
  display: flex;
  justify-content: space-between;
  /* Align the title and buttons on opposite sides */
  align-items: center;
}

.slider-controls-10 {
  display: flex;
  align-items: center;
  padding-top: 10px;
}

.prev-btn-1,
.next-btn-1 {
  background: none;
  border: 2px solid #d64942;
  color: #d64942;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 31.67px;
  height: 31.67px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.prev-btn-1 {
  margin-right: 10px;
  /* Optional: add space between the buttons */
}

.next-btn-1 {
  margin-left: 10px;
  /* Optional: add space between the buttons */
}

.slick-prev {
  left: 400px;
}

.slick-next:before,
.slick-prev:before {
  color: #fff;
  /* White color for arrow icons */
  font-size: 26px;
}
.center-slider div img {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust this value based on your requirement */
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .center-slider .slick-slide {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .center-slider .slick-slide {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .center-slider .slick-slide {
    width: 100%;
  }
}
/* Add this media query for 320px */
@media (max-width: 320px) {
  .center-slider .slick-slide {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .slider-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-controls-10 {
    /* width: 100%; */
    gap: 10px;
    margin-top: 10px;
  }

  .prev-btn-1,
  .next-btn-1 {
    margin: 0;
  }
}

/* Ensure the slider is centered on small screens */
.center-slider .slick-list {
  padding: 0 !important;
}

/* Adjust the "near by place" button and text layout */
.near-by-place {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}


.gradient-overlay {
  position: absolute;
  width: 100%;
  height: 198px;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.testimonial-swiper .swiper-slide {
  /* display: flex; */
  /* gap: 20px; */
  transition: transform 0.3s ease-in-out;
}

.testimonial-swiper .swiper-slide-active {
  transform: scale(1.1);
}

@media (max-width: 320px) {
  .near-by-place {
    flex-direction: column;
    align-items: flex-start;
  }

  .near-by-place button {
    margin-top: 10px;
    align-self: flex-end;
  }
}

/* Ensure the container is positioned correctly */
.center-slider div {
  /* position: relative; */
  /* display: inline-block; */
}

/* Place Name and KM */
.place-info {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-48%);
  color: white;
  font-size: 13px;
  /* font-weight: bold; */
  width: 100%;
  /* text-align:; */
  font-family: "Playfair Display", sans-serif;
  /* letter-spacing: 0.5px; */
  /* border: 1px solid white; */
}

/* Ensure text is clearly visible */
.place-info span {
  display: inline-block;
  margin-right: 5px;
}
