@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }
body{
margin:0;
font-family: "Poppins", sans-serif;
}

/* HEADER */

.header{
position:fixed;
top:0;
width:100%;
z-index:999;
background:#002D72;
transition:0.4s;
}

.header-inner{
max-width:1200px;
margin:0 auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:1% 3%;
}

/* SCROLL EFFECT */

.header.scrolled{

backdrop-filter:blur(10px);
box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

/* LOGO */

.logo-area img{
height:75px;
}

/* RIGHT SIDE */

.header-right{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:8px;
}

/* PHONE */

.phone a{
text-decoration:none;
font-size:14px;
font-weight:600;
display:flex;
gap:6px;
align-items:center;
color:white;
}

.header.scrolled .phone a{
color:#fff;
}

/* MENU */

.nav-menu{
display:flex;
gap:30px;
}

.nav-menu a{
text-decoration:none;
color:white;
font-weight:normal;
font-size:16px;
position:relative;
}

.header.scrolled .nav-menu a{
color:#fff;
}

/* GOLD UNDERLINE */

.nav-menu a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#c69a3a;
transition:0.3s;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after{
width:100%;
}

/* BOOK BUTTON */

.book-btn{
position:relative;  display: inline-block;

overflow:hidden;
background:#157BE5;
color:#fff;
padding:12px 22px;
text-decoration:none;
font-weight:600;

align-items:center;
gap:8px;
transition:0.4s;
z-index:1;
}

/* Hover Overlay */

.book-btn:before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%; color:#fff;
background:#0859aa;
transition:0.4s;
z-index:-1;
}

.book-btn:hover:before{
left:0;
}

/* Ensure text stays visible */

.book-btn span,
.book-btn i{
position:relative;
z-index:2;
color:#fff;
}

/* MOBILE BUTTON */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
color:white;
}

.header.scrolled .menu-toggle{
color:#fff;
}
.menu-close{
display:none;
}
/* MOBILE MENU */

@media(max-width:900px){

.menu-toggle{
display:block;
}

/* SHOW CLOSE BUTTON IN MOBILE */

.menu-close{
display:block;
position:absolute;
top:15px;
right:20px;
font-size:22px;
cursor:pointer;
color:#333;
}

/* Slide menu */

.nav-menu{
position:fixed;
top:0;
left:-260px;
width:260px;
height:100%;
background:white;
flex-direction:column;
padding-top:70px;
gap:0;
transition:0.4s;
box-shadow:2px 0 10px rgba(0,0,0,0.1);
}

.nav-menu a{
padding:16px 20px;
border-bottom:1px solid #eee;
color:#4a5573 !important; background:white;
}

.nav-menu.active{
left:0;
}


/* RIGHT SIDE SHOW */

.header-right{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:6px;
}

/* SMALLER BUTTON */

.book-btn{
padding:10px 16px;
font-size:14px;
}

}

/* Slider */
.slide-bg { margin:0 auto; width:100%; background:#1b2676;}
.hotel-slider-section {
      max-width: 92%;
      margin: auto; margin-top:7%;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .hotel-slider-wrap {
      display: flex;
      min-height: 560px;
      position: relative;
    }

    /* LEFT CONTENT */
    .hotel-slider-content {
      width: 46%;
      background: linear-gradient(135deg, #0c4f8a 0%, #0a3f6d 100%);
      color: #fff;
      padding: 70px 60px 70px 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      z-index: 2;
      overflow: hidden;
    }

    /* Decorative background pattern */
    .hotel-slider-content::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50%;
      top: -70px;
      left: 20px;
    }

    .hotel-slider-content::after {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 50%;
      bottom: -50px;
      left: 60px;
    }

    .content-inner {
      position: relative;
      z-index: 3;
      animation: fadeUp 0.8s ease;
    }

    .hotel-slider-content h5 {
      font-size: 16px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #ffbf1f;
      margin-bottom: 16px;
    }

    .hotel-slider-content h2 {
      font-size: 52px;
      line-height: 1.1;
      margin-bottom: 20px;
      font-weight: 700;
      max-width: 500px;
    }

    .hotel-slider-content p {
      font-size: 16px;
      line-height: 1.9;
      color: #e7eef7;
      margin-bottom: 30px;
      max-width: 470px;
    }

    .hotel-slider-content .book-btn {
      display: inline-block;
      background: #CFEBFF;
      color: #0c4f8a;
      text-decoration: none;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: bold;
      transition: 0.35s ease;
      width: fit-content;
      box-shadow: 0 10px 25px rgba(255, 180, 0, 0.25);
    }

    .hotel-slider-content .book-btn:hover {
      background: #fff;
      color: #fff;
      transform: translateY(-3px);
    }

    /* RIGHT IMAGE AREA */
    .hotel-slider-right {
      width: 54%;
      position: relative;
      overflow: hidden;
      min-height: 560px;
      background: #ddd;
    }

    /* ANGLED CENTER SHAPE */
    .hotel-slider-right::before {
      content: "";
      position: absolute;
      left: -80px;
      top: 0;
      width: 180px;
      height: 100%;
      background: #CFEBFF;
      clip-path: polygon(0 0, 100% 0, 45% 50%, 100% 100%, 0 100%, 35% 50%);
      z-index: 3;
    }

    .hotel-slider-right::after {
      content: "";
      position: absolute;
      left: -55px;
      top: 0;
      width: 140px;
      height: 100%;
      background: #0c4f8a;
      clip-path: polygon(0 0, 100% 0, 40% 50%, 100% 100%, 0 100%, 30% 50%);
      z-index: 4;
    }

    .slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.06);
      transition: opacity 0.9s ease, transform 1.2s ease;
      z-index: 1;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 2;
    }

    .slide img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      display: block;
    }

    /* BUTTONS */
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: rgba(12, 79, 138, 0.88);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      z-index: 6;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .slider-btn:hover {
      background: #CFEBFF;
      color: #fff;
      transform: translateY(-50%) scale(1.08);
    }

    .prev {
      left: 30px;
    }

    .next {
      right: 30px;
    }

    /* DOTS */
    .dots {
      position: absolute;
      bottom: 28px;
      right: 35px;
      display: flex;
      gap: 10px;
      z-index: 6;
    }

    .dot {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .dot.active {
      background: #CFEBFF;
      transform: scale(1.15);
    }

    /* CONTENT ANIMATION */
    .fade-text {
      animation: fadeUp 0.7s ease;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(25px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* TABLET */
    @media (max-width: 991px) {
      .hotel-slider-wrap {
        flex-direction: column;
      }

      .hotel-slider-content,
      .hotel-slider-right {
        width: 100%;
      }

      .hotel-slider-content {
        padding: 50px 30px;
      }

      .hotel-slider-content h2 {
        font-size: 38px;
      }

      .hotel-slider-right,
      .slide img {
        min-height: 420px;
        height: 420px;
      }

      .hotel-slider-right::before,
      .hotel-slider-right::after {
        display: none;
      }
    }

    /* MOBILE */
    @media (max-width: 767px) {
      .hotel-slider-content {
        padding: 40px 22px;
      }

      .hotel-slider-content h5 {
        font-size: 14px;
      }

      .hotel-slider-content h2 {
        font-size: 30px;
      }

      .hotel-slider-content p {
        font-size: 14px;
        line-height: 1.8;
      }

      .hotel-slider-right,
      .slide img {
        min-height: 300px;
        height: 300px;
      }

      .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 17px;
      }

      .prev {
        left: 15px;
      }

      .next {
        right: 15px;
      }

      .dots {
        right: 18px;
        bottom: 18px;
      }
    }
#reserve { float:none; width:100%; margin:0 auto; background:#CFEBFF; padding:30px 0;  }
.reserve { color:#002D72; font-size:26px;  float:left;  font-weight:normal; text-align:left; padding:15px 12px; margin-right:26px; }
.imenu { width:90%; float:none; margin:0 auto; padding:12px 0; box-shadow: 0 .4rem 1.6rem 0 rgba(0, 0, 0, .09); background:#fff; border-radius:6px; }
.check1{ margin:11px 10px; float:left; width:10%; font-weight:normal; }
.check2{ margin:0px 10px; float:left; width:10%; font-weight:normal;}
.chk {font-size:12px; color:#fff; line-height:24px;}
.message1{ font-size:14px; padding:10px 11px; margin:0 auto;  color: #333; width:92%; font-weight:normal; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; border-bottom: #052b66 solid 1px; border-radius:6px;}
.message2{ font-size:14px; padding:9px 10px; margin:0 auto; width:96%; color: #333; font-weight:normal; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; border-bottom: #052b66 solid 1px; border-radius:6px;}
input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit {
background-color:#157BE5; border:none; color:#fff; font-size: 17px; padding:10px 30px; font-weight:bold;  letter-spacing:1px; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; margin-top:10px; float:LEFT;}
::-webkit-input-placeholder {
   color: #333333;
}

:-moz-placeholder { /* Firefox 18- */
   color: #333333;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #333333;  
}

:-ms-input-placeholder {  
   color: #333333;  
}
.map1{ font-size:18px;
padding:8px;  
width:50%; 
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; margin-top: 10px;
}
label { display:none;}	

.welcome-section {
  position: relative;
  padding: 70px 20px;
  text-align: center;
  color: #262626;
  overflow: hidden;
}

/* BLUR LAYER */
.welcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
 
  filter: blur(8px);
  transform: scale(1.1); /* prevents edge cut after blur */
  z-index: 0;
}

/* LIGHT OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.15),
    rgba(0,0,0,0.05)
  );
  z-index: 1;
}

/* CONTENT ABOVE BLUR */
.content-box {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  backdrop-filter: blur(4px); /* optional glass effect */
  padding: 20px;
  border-radius: 10px;
}

/* HEADINGS */
.title1 {
  font-size:42px;   font-weight:normal;
  margin-bottom: 30px; color:#002D72;
}

.title2 {
  color: #1658b8; font-size:27px; font-weight:600;

}

/* TEXT */
.content-box p {
  font-size: 19px; font-weight:normal;
  line-height: 1.8;
  margin-bottom: 15px;
}

.content-box p a { color:#1658b8; text-decoration:none;
}


/* READ MORE CONTENT */
.more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* BUTTON */
.read-btn {
  margin-top: 15px;  font-size: 19px; font-weight:normal;
  padding: 10px 25px;
  border: none;
  background: #002D72;
  color: #fff;
  cursor: pointer;
  transition: 0.4s;
}

.read-btn:hover {
  background: #157BE5;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .content-box h2 {
    font-size: 28px;
  }

  .content-box p {
    font-size: 14px;
  }
}

.modern-amenities-section {
    background: #f7f7f7;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
}

.modern-amenities-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.modern-amenities-grid {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.modern-amenity-item {
    flex: 1 1 25%;
    min-width: 260px;
    text-align: center;
    padding: 55px 35px;
    border-right: 1px solid #ececec;
    position: relative;
    transition: all 0.35s ease;
}

.modern-amenity-item:last-child {
    border-right: none;
}

.modern-amenity-item:hover {
    background: #faf8f5;
    transform: translateY(-6px);
}

.modern-amenity-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #002D72, #0c4f8a );
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(45, 53, 89, 0.18);
}

.modern-amenity-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.3;
}

.modern-amenity-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.9;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .modern-amenity-item {
        flex: 1 1 50%;
        border-right: 1px solid #ececec;
        border-bottom: 1px solid #ececec;
    }

    .modern-amenity-item:nth-child(2n) {
        border-right: none;
    }

    .modern-amenity-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .modern-amenities-section {
        padding: 70px 15px;
    }

    .modern-amenities-grid {
        border-radius: 14px;
    }

    .modern-amenity-item {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid #ececec;
        padding: 45px 25px;
    }

    .modern-amenity-item:last-child {
        border-bottom: none;
    }

    .modern-amenity-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
    }

    .modern-amenity-item h3 {
        font-size: 21px;
    }

    .modern-amenity-item p {
        font-size: 15px;
        line-height: 1.8;
    }
}

    /* ABOUT SECTION */
    .about-section {
      position: relative;
      padding: 100px 20px;
      background: linear-gradient(rgba(0, 51, 102, 0.90), rgba(0, 102, 204, 0.85)),
        url('../images/lobby.jpg') center center/cover no-repeat;
      overflow: hidden;
    }

    .about-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      flex-wrap: wrap;
    }

    .about-left,
    .about-right {
      flex: 1 1 500px;
    }

    .about-left {
      color: #fff;
    }

    .about-subtitle {
      font-size: 15px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #b7d9ff;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .about-left h2 {
      font-size: 36px;
      line-height: 1.2;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .about-left p {
      font-size: 17px;
      line-height: 1.9;
      color: #e8f2ff;
      margin-bottom: 20px;
    }

    .more-text {
      display: none;
    }

    .read-more-btn {
      display: inline-block;
      padding: 12px 28px;
      background: #ffffff;
      color: #004a99;
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .read-more-btn:hover {
      background: #0b6fd3;
      color: #fff;
      transform: translateY(-3px);
    }

    /* VIDEO BOX */
    .video-box {
      position: relative;
      min-height: 380px;
      border-radius: 20px;
      overflow: hidden;
      background: url('../images/front-desk.jpg') center center/cover no-repeat;
      box-shadow: 0 20px 50px rgba(0,0,0,0.25);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-box::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(0, 25, 60, 0.35), rgba(0, 80, 180, 0.35));
    }

    .play-btn {
      position: relative;
      z-index: 2;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #0056b3;
      font-size: 32px;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
      cursor: pointer;
    }

    .play-btn:hover {
      transform: scale(1.08);
      background: #fff;
      color: #003f85;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
      }
      70% {
        box-shadow: 0 0 0 25px rgba(255,255,255,0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0);
      }
    }

    /* VIDEO MODAL */
    .video-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.85);
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .video-modal-content {
      position: relative;
      width: 100%;
      max-width: 900px;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
    }

    .video-modal video {
      width: 100%;
      display: block;
    }

    .close-video {
      position: absolute;
      top: 10px;
      right: 15px;
      color: #fff;
      font-size: 32px;
      cursor: pointer;
      z-index: 10;
      background: rgba(0,0,0,0.4);
      width: 45px;
      height: 45px;
      text-align: center;
      line-height: 45px;
      border-radius: 50%;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .about-left h2 {
        font-size: 34px;
      }

      .video-box {
        min-height: 320px;
      }
    }

    @media (max-width: 767px) {
      .about-section {
        padding: 70px 15px;
      }

      .about-left h2 {
        font-size: 28px;
      }

      .about-left p {
        font-size: 16px;
      }

      .play-btn {
        width: 75px;
        height: 75px;
        font-size: 28px;
      }
    }

.room-slider {
  display: flex;
  align-items: center;
  padding: 100px 8%;
  background: #f7f7f5;
  gap: 80px;
}

.room-slider-content {
  flex: 1;
  max-width: 520px;
}

.room-slider-content h2 {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.room-slider-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

.slider-controls {
  display: flex;
  gap: 15px;
}

.slider-controls button {
  padding: 10px 22px;
  border: 1px solid #333;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.slider-controls button:hover {
  background: #333;
  color: #fff;
}

.room-slider-image {
  flex: 1;
}

.room-slider-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .room-slider {
    flex-direction: column;
    padding: 60px 6%;
    gap: 40px;
  }

  .room-slider-image img {
    height: 300px;
  }

  .room-slider-content h2 {
    font-size: 30px;
  }
}	

.read-mor-btn {
      display: inline-block;
      padding: 12px 28px;
      background: #ffffff;
      color: #004a99;
      text-decoration: none;
      font-size: 17px;
      font-weight: 500;      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .read-more-btn:hover {
      background: #0b6fd3;
      color: #fff;
      transform: translateY(-3px);
    }
	
	
    .rooms-section {
      padding: 80px 8%;
      background: #f4f4f4;
      overflow: hidden;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-heading h2 {
      font-size: 54px;
      color: #0b3b87;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .section-heading p {
      font-size: 18px;
      color: #666;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .slider-container {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
      width: 100%;
    }

    .room-slide {
      min-width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
      flex-wrap: wrap;
    }

    .room-content {
      flex: 1 1 450px;
      max-width: 500px;
    }

    .room-content h3 {
      font-size: 40px;
      color: #111;
      font-weight: 400;
      margin-bottom: 25px;
    }

    .room-content p {
      font-size: 18px;
      color: #555;
      line-height: 1.9;
      margin-bottom: 35px;
    }

  

    .room-nav {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .room-nav button {
      border: 1px solid #999;
      padding: 14px 28px;
      font-size: 17px;
      background: #fff;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .room-nav button:hover {
      background: #0b3b87;
      color: #fff;
      border-color: #0b3b87;
    }

    .room-image {
      flex: 1 1 550px;
      text-align: right;
    }

    .room-image img {
      width: 100%;
      max-width: 850px;
      height: 525px;
      object-fit: cover;
      display: block;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    }

    @media (max-width: 991px) {
      .section-heading h2 {
        font-size: 42px;
      }

      .room-content h3 {
        font-size: 40px;
      }

      .room-slide {
        flex-direction: column;
        gap: 40px;
      }

      .room-image {
        text-align: center;
      }

      .room-image img {
        height: auto;
      }
    }

    @media (max-width: 576px) {
      .rooms-section {
        padding: 60px 20px;
      }

      .section-heading h2 {
        font-size: 34px;
      }

      .room-content h3 {
        font-size: 30px;
      }

      .room-content p {
        font-size: 16px;
      }

      .book-btn,
      .room-nav button {
        font-size: 16px;
      }
    }
	
    .attractions-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .attraction-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity 1s ease-in-out, transform 1.2s ease-in-out;
      transform: scale(1.05);
      background-size: cover;
      background-position: center;
    }

    .attraction-slide.active {
      opacity: 1;
      z-index: 1;
      transform: scale(1);
    }

    .attraction-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
      display: flex;
      align-items: center;
      padding: 0 8%;
    }

    .attraction-content {
      max-width: 550px;
      background: rgba(0, 0, 0, 0.5);
 
      padding: 40px 35px;

      color: #fff;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
      animation: slideUp 1s ease;
    }

    .attraction-subtitle {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #f4d27c;
      margin-bottom: 12px;
      display: inline-block;
    }

    .attraction-content h2 {
      font-size: 40px;
      line-height: 1.2;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .attraction-content p {
      font-size: 16px;
      line-height: 1.8;
      color: #f1f1f1;
      margin-bottom: 25px;
    }

    .read-more-btn {
      display: inline-block;
      padding: 14px 30px;
      background: #f4d27c;
      color: #111;
      text-decoration: none;
      font-weight: 700;
      border-radius: 50px;
      transition: all 0.3s ease;
      box-shadow: 0 10px 25px rgba(244, 210, 124, 0.3);
    }

    .read-more-btn:hover {
      background: #fff;
      transform: translateY(-3px);
    }

    /* Vertical Dots */
    .slider-dots {
      position: absolute;
      right: 35px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .slider-dots .dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      border: 2px solid #fff;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .slider-dots .dot.active {
      background: #f4d27c;
      transform: scale(1.3);
      box-shadow: 0 0 15px rgba(244, 210, 124, 0.7);
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 991px) {
      .attraction-content {
        max-width: 90%;
        padding: 30px 25px;
      }

      .attraction-content h2 {
        font-size: 30px;
      }

      .attraction-content p {
        font-size: 15px;
      }

      .slider-dots {
        right: 20px;
      }
    }

    @media (max-width: 767px) {
      .attractions-section {
        height: 85vh;
      }

      .attraction-overlay {
        padding: 0 20px;
      }

      .attraction-content {
        padding: 25px 20px;
      }

      .attraction-content h2 {
        font-size: 26px;
      }

      .attraction-content p {
        font-size: 14px;
        line-height: 1.7;
      }

      .read-more-btn {
        padding: 12px 24px;
        font-size: 14px;
      }

      .slider-dots {
        right: 12px;
        gap: 12px;
      }

      .slider-dots .dot {
        width: 12px;
        height: 12px;
      }
    }	

.hotel-footer{
background:#002D72; 
color:#ffffff;
padding:60px 20px 30px;
font-family:Arial; border-top:#c89b3c solid 4px;
}

.footer-container{
max-width:1200px;
margin:auto;
}

/* Logo */

.footer-logo{
text-align:center;
margin-bottom:40px;
}

.footer-logo img{
max-width:160px;
}

/* Grid */

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
margin-bottom:40px;
}

.ft1{
margin-bottom:15px;
font-size:20px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
margin-bottom:10px;
color:#e3e6ff;
}

.footer-col a{
color:#ffffff;
text-decoration:none;
}

.footer-col a:hover{
text-decoration:underline;
}

/* Navigation */

.footer-nav{
list-style:none;
padding:0;
margin:0;
}

.footer-nav li{
margin-bottom:8px;
}

.footer-nav a{
color:#e3e6ff;
font-size:14px;
}

/* Bottom */

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,0.2);
padding-top:20px;
font-size:14px;
color:#e3e6ff;
}

.footer-bottom a {color:#e3e6ff; text-decoration:none;}

.footer-links a, .footer-links p a{
color:#ffffff;
margin:0 5px;
}

/* Mobile */

@media (max-width:900px){

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.footer-nav{
display:inline-block;
text-align:left;
}

}
#w2b-StoTop{display: block;position: fixed;top:90%;padding: 10px; color:#fff; font-size:14px; right:0; margin-right:20px; text-decoration:none; cursor:pointer; background:#c89b3c;}
#w2b-StoTop a{color:#fff; text-decoration:none; font-size:14px;}
.smo{ width:90%; float:left; padding:10px 0;}
.social-icons {
            display: flex;
            gap: 12px; margin-top:10px;
        }
        .social-icons a {
            text-decoration: none;
            color: white;
            width: 34px;
            height: 34px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }
        .social-icons a.facebook { background-color: #3b5998; }
        .social-icons a.twitter { background-color: #1da1f2; }
        .social-icons a.instagram { background-color: #e4405f; }
        	.social-icons a.blog { background-color:#F57C00 }
        .social-icons a.youtube { background-color: #ff0000; }

.ada { width:100%; margin:0 auto; padding:12px 0; text-align:center; color:#fff; font-size:19px; background:#157BE5; line-height:32px;}
.ada a { color:#fff; text-decoration:none;}

.col ul li i {
  color: #333; font-size:18px;
  min-width: 20px;
}

.col2 { float:LEFT; margin:15px 35px; width:38%;}

.col2 ul {
   padding: 0;

}

.col2 ul li {
  font-size: 19px; list-style:circle;
  margin-bottom: 26px; text-align:left;
  gap: 10px;
}
.col2 ul li a{ color:#262626; text-decoration:none;}

.col2 ul li a{ color:#262626; text-decoration:none;}

.fq{text-align:left; text-decoration: none; color:#002D72; font-weight:bold;  font-size:18px;  line-height:34px; margin-top:6px; list-style:none;}
.fqa{font-size:16px; color:#424242; font-weight:normal; line-height:28px; text-align:left;}
.fqa a{font-size:16px; color:#157BE5; text-decoration:none;}		

.amenity {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Grid Layout */
.amenity ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Desktop: 2 columns */
  gap: 12px 20px;
}

/* List Item */
.amenity li {
  font-size: 19px; padding:10px 0;
  color: #262626;
  display: flex;
  align-items: center;
}

/* Icon */
.amenity li i {
      color: #1658b8;
  margin-right: 10px;
  font-size: 19px;
  min-width: 20px;
}

/* Optional custom bullet (if not using icon) */
.amenity-list li::before {
  content: "";
  display: none; /* hide since using icon */
}

/* 📱 Mobile (1 column) */
@media (max-width: 767px) {
  .amenity ul {
    grid-template-columns: 1fr;
  }

  .amenity li {
    font-size: 15px;
  }
}

/* 📲 Tablet (2 columns) */
@media (min-width: 768px) and (max-width: 1024px) {
  .amenity ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 💻 Large Screen (3 columns optional) */
@media (min-width: 1200px) {
  .amenity ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;
    background: white;
    margin-bottom: 15px;
}

.feature-box.reverse {
    flex-direction: row-reverse;
}

.img-side img {
    width: 100%;
    max-width: 550px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
}

.text-side {
    max-width: 620px;
}

.text-side h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.text-side p {
    font-size: 19px;
    margin-bottom: 20px;     line-height: 1.8;
}



/* ----- MOBILE RESPONSIVE ----- */

@media (max-width: 768px) {
    .feature-box,
    .feature-box.reverse {
        flex-direction: column;
        text-align: center;
    }

    .img-side img {
        height: 250px;
    }
}

.top20 { margin-top:5%;}