  /* General Styles */
  .nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: white;
  }

  .menu-items {
  display: flex;
  gap: 16px;
  }

  .menu-items a {
  text-decoration: none;
  color: black;
  }

  .logo {
  height: 45px !important;
  }

  /* Dropdown Menu for Mobile */
  #menu-toggle {
  display: none;
  }

  .menu-items {
  flex-wrap: nowrap;
  }

  .dropdown-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
  }

  /* Responsive for mobile */
  @media (max-width: 768px) {
  .menu-items {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 64px;
  right: 0;
  width: 100%;
  }

  .menu-items.show {
  display: block;
  }

  .dropdown-btn {
  display: block;
  }
  }

  /* Silder Integration */
  /* Base Styles */
  .slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  }

  .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  }

  .slide {
  min-width: 100%;
  position: relative;
  }

  .slide img {
  width: 100%;
  height: auto;
  display: block;
  }

  /* .content-box {
  position: absolute;
  bottom: 5%;
  left: 3%;
  background: #ffff;
  color: rgb(8, 7, 7);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 30%;
  box-shadow: 0 8px 20px rgba(250, 249, 249, 0.3);
  line-height: 0.95;
  }

  .content-box p {
  margin: 10px 0;
  }

  .content-box .heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 10px 0;
  } */


                      .content-box {
                        position: absolute;
                        bottom: 5%;
                        left: 3%;
                        background: #ffffff;
                        color: rgb(8, 7, 7);
                        padding: 20px;
                        border-radius: 12px;
                        max-width: 400px;
                        width: 90%;
                        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
                        line-height: 1.4;
                        word-wrap: break-word;
                        overflow: hidden;
                        transition: all 0.3s ease-in-out;
                      }

                      /* Mobile View */
                      @media (max-width: 600px) {
                        .content-box {
                          left: 5%;
                          bottom: 3%;
                          padding: 15px;
                          max-width: 95%;
                        }
                      }

                      /* Tablet View */
                      @media (min-width: 601px) and (max-width: 1024px) {
                        .content-box {
                          left: 4%;
                          bottom: 4%;
                          max-width: 80%;
                        }
                      }

                      /* Large Screen */
                      @media (min-width: 1025px) {
                        .content-box {
                          max-width: 30%;
                          left: 4%;
                          top:127px;
                          height: 550px;
                          background-color: rgb(60 18 20 / 61%);
                          color:#ffff;
                        }
                      }
                          
  .buttons {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  }

  .prev,
  .next {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  /* Responsive Styles */
  @media screen and (max-width: 768px) {
  .slider-container {
  border-radius: 8px;
  top:89px;
  }

  .content-box {
  position: static;
  margin-top: 92px;
  max-width: 100%;
  box-shadow: none;
  text-align: center;
  background-color: #e366390f;
  margin-left:17px;
  }

  .content-box .heading {
  font-size: 1.5rem;
  }

  .content-box button {
  font-size: 0.9rem;
  padding: 8px 16px;
  }

  .buttons {
  top: auto;
  bottom: 10px;
  }

  .prev,
  .next {
  padding: 10px 14px;
  }
  }

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

  /* iPad and smaller tablets */
  /* .content-box {
  position: static;
  margin-top: 112px;
  max-width: 100%;
  box-shadow: none;
  text-align: center;
  background-color: #e366390f;
  }

  .content-box .heading {
  font-size: 1.6rem;
  }

  .content-box button {
  font-size: 0.9rem;
  padding: 8px 16px;
  } */

  .buttons {
  top: auto;
  bottom: 72px;
  }

  .prev,
  .next {
  padding: 10px 14px;
  }
  }

  /* Banner */

  /* Amenities */
  .amenity-card {
  background: #343a40;
  /* Dark background */
  color: white;
  /* White text */
  border: 1px solid #495057;
  border-radius: 12px;
  padding: 20px;
  margin: 5px;
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  width: 100%;
  height: 160px;
  aspect-ratio: 1;
  }

  .amenity-card:hover {
  transform: translateY(-8px);
  }

  .amenity-card i {
  font-size: 28px;
  color: #f8c291;
  /* Icon color to complement dark background */
  }
  /* Amenities */
                                                    
  /* About US */
  .grid-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  }

  .text-section {
  flex: 1;
  min-width: 300px;
  }

  .video-wrapper {
  flex: 1;
  min-width: 300px;
  }

  iframe {
  width: 100%;
  height: 250px;
  }
  .customlogo{
  border-left: 1px solid #e36639;
  margin-left: 5px;
  }
  /* Box1 for the unordered list */
  @keyframes waterflow {
  0% {
  background-position: 0% 50%;
  }

  50% {
  background-position: 100% 50%;
  }

  100% {
  background-position: 0% 50%;
  }
  }

  .box1 {
  background: linear-gradient(120deg, rgba(44, 4, 29, 0.3), rgba(22, 6, 16, 0.88), rgba(162, 0, 100, 0.3));
  background-size: 300% 300%;
  animation: waterflow 6s linear infinite;
  padding: 20px;
  border-radius: 12px;
  max-width: 100%;
  font-size: 1.3em;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-family: 'Verdana', sans-serif;
  color: white;
  border: 2px solid #ffffff;
  }


  .box1 .innerBox {
  border: 2px dashed #FFF;
  padding: 1px;
  font-size: 0.6em;
  }
  .box1 ul {
  list-style-type: none;
  /* Removes the default bullet points */
  padding-left: 20px;
  font-size: 1.25em;
  }

  /* .box1 li {
  color: #fff;
  margin-bottom: 2px;
  position: relative;
  } */

  .box1 li {
  color: #fff;
  margin-bottom: 6px;
  position: relative;
  margin-top: 2px;
  margin-left: 14px;
  }

  .box1 li::before {
  content: "\25C6";/* Unicode for a diamond symbol (♦) */
  font-size: 18px;
  /* Adjust size of the star */
  color: white;
  /* Star color */
  position: absolute;
  left: -20px;
  /* Adjust position of the star */
  top: 0;
  }

  /* Box2 for the price section */
  .box2 {
  /* background-color: #fd5949; */
  /* Light mint background */
  /* border: 2px solid #d1d1d1; */
  /* Accent color */
  /* padding: 20px; */
  font-size: 1.1em;
  /* border-radius: 12px; */
  max-width: 100%;
  text-align: left;
  color: #000;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  /* Smooth shadow */
  font-family: 'Verdana', sans-serif;
  }

 .box2 p {
   margin: 10px 0;
   color: #ffffff;
   /* Default color for desktops */
 }

 /* Media query for mobile devices */
 @media (max-width: 768px) {
   .box2 p {
     color: #000000;
     /* Black color for mobile */
   }
 }

  .box2 .slash {
  font-size: 24px;
  margin: -5px 0px 2px 0px;
  text-align: left;

  }

  .btnlounching{
  display: inline-block;
  background-color: #34c38f;
  /* Green button color */
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-top: 15px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  /* Button shadow */
  transition: transform 0.2s;
  text-decoration: none;
  animation: blink 1.5s infinite;
  /* Blinking effect */
  }
  .btnlounching:hover {
  background-color: #28a07c;
  /* Darker green for hover */
  transform: translateY(-2px);
  /* Lift effect */
  }

  .btnlounching:active {
  transform: translateY(1px);
  /* Button pressed effect */
  }

  /* Blinking animation */
  @keyframes blink {

  0%,
  100% {
  background-color: #34c38f;
  /* Original color */
  color: white;
  }

  50% {
  background-color: #28a07c;
  /* Slightly darker green for blink */
  color: #eaffea;
  /* Lighter text during blink */
  }
  }

  .blinking-btn {
  width: 100%;
  padding: 0.5em;
  text-align: center;
  background-color: red;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  animation: blink 1s infinite;
  border-radius: 8px;
  }
  /* Portrait */
  @media only screen and (max-width: 767px) {

  /* Your mobile styles here */
  .blinking-btn {
  width: 100%;
  padding: 0.5em;
  text-align: center;
  background-color: red;
  color: white;
  font-size: 16px !important;
  font-weight: bold;
  border: none;
  cursor: pointer;
  animation: blink 1s infinite;
  border-radius: 8px;
  }
  }

  /* Landscape */
  @media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* Your mobile landscape styles here */
  .blinking-btn {
  width: 100%;
  padding: 0.5em;
  text-align: center;
  background-color: red;
  color: white;
  font-size: 16px !important;
  font-weight: bold;
  border: none;
  cursor: pointer;
  animation: blink 1s infinite;
  border-radius: 8px;
  }
  }

  @keyframes blink {
  50% {
  opacity: 0.5;
  }
  }

  .customheading { font-size: 1.2em; text-align: center; font-weight: bold; color: #fd5949; text-transform: uppercase; letter-spacing: 2px; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); animation: slideIn 1.5s ease-out; -webkit-animation: slideIn 1.5s ease-out;
  }
  .custombtn{
  font-size: 1.180em;
  font-weight: 600;
  color: white !important;
  background-color: #fd5949 !important;
  }
  .animatedtext {
  background: linear-gradient(-45deg, var(--Secondary-color), #eb202b, var(--Secondary-color), #eb202b);
  background-size: 1000% 1000%;
  animation: AnimationName 5s ease infinite;
  }


  .container {
  /* max-width: 800px; */
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  h1 {
  text-align: center;
  color: #333;
  }

  table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  }

  table th,
  table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  }

  table th {
  background-color: #eb202b;
  color: white;
  }

  /* Menu Css */
  .menu-section {
  position: relative;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.11);
  /* Transparent white */
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  }

  .menu-section.transparent {
  background-color: transparent;
  box-shadow: none;
  }

  .dropdown-btn {
  cursor: pointer;
  color: black;
  font-size: 24px;
  display: none;
  }

  .menu-items {
  display: flex;
  gap: 10px;
  }

  .menu-items a {
  color: black;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  }

  .menu-items a:hover {
  background-color: #e0e0e0;
  }

  /* Mobile Full-Screen View Styles */
  @media (max-width: 768px) {
  .dropdown-btn {
  display: block;
  }

  .menu-items {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.767);
  /* Semi-transparent white */
  z-index: 1000;
  padding-top: 50px;
  align-items: center;
  }

  .menu-items a {
  text-align: center;
  padding: 20px;
  font-size: 18px;
  color: black;
  width: 100%;
  }

  .menu-items a:hover {
  background-color: #e0e0e0;
  }

  .menu-items.active {
  display: flex;
  }
  }
  /* Menu Css */

  /* Ensure responsiveness */
  #phone1 {
  width: 100%;
  /* Make phone input responsive */
  box-sizing: border-box;
  padding-left: 60px;
  /* Adjust padding to fit the flag */
  }

  @media (max-width: 768px) {
  #phone1 {
  padding-left: 50px;
  }
  }

  .phone-input {
  border: none;
  border-bottom: 1px solid #ccc;
  }


  /* Front Page Content Box Set in Mobile View */
  @media (max-width: 768px) {
  /* .content-box {
  padding: 20px 10px;
  text-align: center;
  font-size: 10px;
  margin-top: 85px;
  }

  .content-box p {
  font-size: 1.5em;
  line-height: 1;
  } */

  .customheading {
  font-size: 1.1em;
  margin-bottom: 10px;
  }

  .blinking-btn {
  font-size: 16px;
  padding: 10px 15px;
  }

  .box1 ul {
  padding: 0;
  list-style-type: none;
  margin-top: 8px;
  }

  .box1 ul li {
  font-size: 1em;
  padding: 0px 0;
  margin-left: 49px;
  }

  .box2 p {
  font-size: 1.2em;
  line-height: 1.6;
  }

  .slash {
  font-size: 1.4em;
  color: red;
  }

  .custombtn {
  font-size: 1em;
  margin-top: 10px;
  padding: 10px 20px;
  }
  }
  /* Front Page Content Box Set in Mobile View */


  /* contact Form */
  .form-container {
  max-width: 600px;
  background: #ffffff;
  padding: 2rem;
  margin: 3rem auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .form-header {
  text-align: center;
  margin-bottom: 1.5rem;
  }

  .form-header h3 {
  color: #007bff;
  font-weight: bold;
  }

  .btn-submit {
  background: linear-gradient(135deg, #d12b54, #962fbf);
  border: none;
  color: white;
  font-weight: bold;
  transition: background 0.3s;
  }

  .btn-submit:hover {
  background: linear-gradient(135deg, #d12b54, #4f5bd5);
  }
  /* Contact Form 
  */

  /* All Media Desktop resolution media query */
  /* Small desktops and laptops */


  /* Medium desktops */
  @media screen and (min-width: 1281px) and (max-width: 1440px) {
  /* Styles for medium desktops */
  /* .content-box {
  position: absolute;
  bottom: 5%;
  left: 3%;
  background: #ffff;
  color: rgb(8, 7, 7);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 30%;
  box-shadow: 0 8px 20px rgba(250, 249, 249, 0.3);
  line-height: 0.97;
  } */
  }

  /* Large desktops and monitors */
  @media screen and (min-width: 1441px) and (max-width: 1920px) {
  /* Styles for large desktops */
  /* .content-box {
  position: absolute;
  bottom: 27%;
  left: 3%;
  background: #ffff;
  color: rgb(8, 7, 7);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 30%;
  box-shadow: 0 8px 20px rgba(250, 249, 249, 0.3);
  line-height: 0.97;
  } */
  }


  /* Medium desktops and high-resolution laptops (1367px to 1600px) */
  @media screen and (min-width: 1367px) and (max-width: 1600px) {
  /* Styles for medium desktops */
  /* .content-box {
  position: absolute;
  bottom: 13%;
  left: 3%;
  background: #ffff;
  color: rgb(8, 7, 7);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 30%;
  box-shadow: 0 8px 20px rgba(250, 249, 249, 0.3);
  line-height: 0.97;
  } */
  }

  /* Large desktops (1601px to 1920px) */
  /* @media screen and (min-width: 1280px) and (max-width: 720px) {
  .content-box {
  position: absolute;
  bottom: 2%;
  left: 3%;
  background: #ffff;
  color: rgb(8, 7, 7);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 30%;
  box-shadow: 0 8px 20px rgba(250, 249, 249, 0.3);
  line-height: 1;
  }
  } */
.enquiry-button {
  position: fixed;
  right: -59px;
  /* Stick to the right side */
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  /* Rotate to vertical */
  background-color: #e13b2f;
  /* Dark button */
  color: #fff;
  /* White text */
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000;
  white-space: nowrap;
  border: 2px solid #ff6600;
  transition: all 0.3s ease-in-out;
  animation: glowBlink 1.5s infinite alternate;
  /* Smooth glowing effect */
}

/* Smooth Glowing Effect */
@keyframes glowBlink {
  0% {
    box-shadow: 0 0 5px #ff6600;
  }

  100% {
    box-shadow: 0 0 15px #ff6600;
  }
}

/* Icon Styling */
.enquiry-button i {
  font-size: 18px;
  color: #ffff;
}

/* Mobile View: Enquiry Button Fixed at Bottom */
@media (max-width: 768px) {
  .enquiry-button {
    right: 50%;
    bottom: 1px;
    transform: translateX(50%) rotate(0deg);
    top: auto;
    padding: 10px 16px;
  }
}