* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      overflow-x: hidden;
     font-family:'Source Sans 3', sans-serif;
      background: #fff;
    }

    a {
      text-decoration: none;
    }

/* HEADER */

header{ background:#1D1D1D;
position:absolute;
width:100%;
top:0;
z-index:999;
transition:0.4s;
}

header.sticky{
background:#012348;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.t2 {
    font-size:32px;
    font-family: 'Oswald', sans-serif;
    color: #111;
    font-weight: 400;
margin-top: 25px;}
	
/* NAVBAR */

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:0px 6%;
color:#fff;
}

/* LEFT NAV */

.nav-left{
display:flex;
gap:30px;
}

.nav-left a{
color:#fff; 
text-decoration:none;
font-weight:500;
position:relative;
}

.nav-left a::after{
content:"";
width:0;
height:2px;
background:#FFF200;
position:absolute;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-left a:hover::after{
width:100%;
}

/* RIGHT AREA */

.right-area{
display:flex;
align-items:center;
gap:20px;
}

.phone{
font-size:17px;
}

.phone a{
color:#fff; text-decoration:none; }
/* BOOK BUTTON */

.book-btn{
background:#ED1A3B;     font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    letter-spacing: .01em;
padding:20px 18px;     text-transform: uppercase;
color:#fff; font-size:21px;
text-decoration:none; 
font-weight:500;
transition:0.3s;
}

.book-btn:hover{
background:#ffde00;
color:#fff;
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.3);
}

/* LOGO CENTER */

.logo-wrap{
position:absolute;
left:50%;
transform:translateX(-50%);
top:0;
text-align:center;
}

.logo-bg{

padding:18px 25px 20px;
}

.logo-bg img{
height:90px;
}

/* HAMBURGER */

.hamburger{
display:none;
font-size:26px;
cursor:pointer;
}

/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:260px;
height:100%;
background:#0b3556;
padding:40px 20px;
transition:0.4s;
z-index:1000;
}

.mobile-menu a{
display:block;
color:#fff;
margin:15px 0;
text-decoration:none;
}

.mobile-menu.active{
right:0;
}

.close-btn{
font-size:25px;
color:#fff;
cursor:pointer;
margin-bottom:20px;
}

/* HERO */

.hero{
height:95vh;
position:relative;
overflow:hidden;
}

/* SLIDES */

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:1s;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.slide.active{
opacity:1;
}

/* OVERLAY */

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

/* CONTENT */

.slide-content{
position:relative;
z-index:2;
animation:fadeUp 1.5s;
}

.slide h1{
font-size:50px; 
    font-family: 'Oswald', sans-serif;

    line-height: 1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
margin-bottom:10px;
}

.slide p{
font-size:20px; 
    font-family: 'Oswald', sans-serif;

    line-height: 1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
}

/* TEXT ANIMATION */

@keyframes fadeUp{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ARROWS */

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:28px;
background:rgba(0,0,0,0.5);
color:#fff;
padding:10px 14px;
cursor:pointer;
z-index:5;
}

.prev{
left:20px;
}

.next{
right:20px;
}

/* MOBILE */

@media(max-width:900px){

.nav-left{
display:none;
}

.phone{
display:none;
}

.book-btn{
display:none;
}

.hamburger{
display:block;
color:#fff;
}

.logo-bg img{
height:40px;
}

.slide h1{
font-size:30px;
}

}

/* SECTION */
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT IMAGES */
.image-wrapper {
  position: relative;
  flex: 1;
  min-width: 300px;
}

.image-wrapper img {
  width: 75%;
  border-radius: 20px;
  object-fit: cover;
}

.img1 {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img2 {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 65%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* RIGHT CONTENT */
.content {
  flex: 1;
  min-width: 300px;
}

.content span {
  color: #ED1A3B; font-size:19px; 
    font-family: 'Oswald', sans-serif;

    line-height: 1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
  
  font-weight: 600;
}

.title1 {
  font-size: 36px; 
    font-family: 'Oswald', sans-serif;

    line-height: 1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
  margin:4px 0 15px 0;
}

.content p {
  color: #666; margin-bottom: 15px;
  line-height: 1.7;  
}
.content p a {color: #ED1A3B; }


/* HIDDEN TEXT */
.more-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* SHOW TEXT */
.more-text.show {
  max-height: 200px;
  margin-top: 10px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px; border: solid 2px #ED1A3B;
  color: #ED1A3B;
  
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  border: solid 2px #333;
  color: #333;
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }

  .img2 {
    position: relative;
    bottom: 0;
    margin-top: 20px;
  }
}

  html {
    scroll-behavior: smooth;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #009245;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  #scrollTopBtn:hover {
    background: #333;
    transform: translateY(-4px);
  }

  @media (max-width: 767px) {
    #scrollTopBtn {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
  }
  
/* ── SECTION ─────────────────────────────── */

/* ── SUPER 8 BRAND COLORS ─────────────────
   Primary Red  : #D62B1F
   Yellow/Gold  : #F5A800
   Black        : #1A1A1A
   Light bg     : #FDF8F2
   ─────────────────────────────────────── */

:root {
  --red:       #D62B1F;
  --red-dark:  #B01F15;
  --yellow:    #F5A800;
  --yellow-lt: #FFD060;
  --black:     #1A1A1A;
  --ink:       #2A2520;
  --ink2:      #5A5048;
  --muted:     #9A9080;
  --bg:        #FDF8F2;
  --white:     #FFFFFF;
  --rule:      #E8E0D0;
  --hover:     #FFF4E0;
}

.amenities-bg {background:#FDF8F2;  margin: 0 auto; width:100%;}

.amenities-wrap {
  max-width: 1180px;   font-family: 'Source Sans 3', sans-serif;
  margin: 0 auto; 
  padding: 88px 48px 104px;
}

/* ── HEADING ─────────────────────────────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--yellow);
}

.head-left {}

.head-eyebrow {
  font-family:'Source Sans 3', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.head-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.section-title span {
  color: var(--red);
}

.head-right {}

.section-sub {
  font-size: 16px;
  line-height: 1.50;
  color: #686258;
  font-weight: 400;
  text-align: right;
}

/* ── MAIN SPLIT ──────────────────────────── */
.split-body {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 4px 32px rgba(26,20,10,.08);
}

/* ── LEFT LIST ───────────────────────────── */
.list-col {
  border-right: 1px solid var(--rule);
  background: var(--white);
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: background .2s, border-color .2s;
  position: relative;
}
.amenity-item + .amenity-item {
  border-top: 1px solid var(--rule);
}

.amenity-item:hover {
  background: var(--hover);
}
.amenity-item.active {
  background: #FFF8EE;
  border-left-color: var(--red);
}

/* Icon */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #F2EDE4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--muted);
  transition: background .2s, color .2s;
  border: 1.5px solid #E5DDD0;
}
.amenity-item.active .icon-box {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.amenity-item:hover:not(.active) .icon-box {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

/* Text */
.item-content {
  flex: 1;
  min-width: 0;
}
.item-name {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: color .2s;
}
.amenity-item.active .item-name { color: var(--red); }

.item-desc {
 font-size: 16px;
  line-height: 1.50;
  color: #686258;
  font-weight: 400;
}

/* Arrow */
.item-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .22s, transform .22s;
}
.amenity-item.active .item-arrow {
  opacity: 1;
  transform: translateX(0);
}
.item-arrow i {
  font-size: .55rem;
  color: white;
}

/* ── RIGHT IMAGE PANEL ───────────────────── */
.img-col {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: 520px;
}

/* Each photo layer */
.photo-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}
.photo-layer.active {
  opacity: 1;
}
.photo-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient for caption readability */
.photo-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,10,.15) 0%,
    transparent        40%,
    rgba(26,20,10,.7)  100%
  );
  pointer-events: none;
}

/* Caption over image */
.img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 28px 24px;
  pointer-events: none;
}
.caption-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: white;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .45s .15s, transform .45s .15s;
}
.photo-layer.active .caption-label {
  opacity: 1;
  transform: translateY(0);
}
.caption-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s .25s, transform .45s .25s;
}
.photo-layer.active .caption-title {
  opacity: 1;
  transform: translateY(0);
}
.caption-note {
  font-size: .75rem;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  letter-spacing: .06em;
  display: block;
  margin-top: 4px;
  opacity: 0;
  transition: opacity .4s .35s;
}
.photo-layer.active .caption-note {
  opacity: 1;
}

/* Yellow accent bar top of image panel */
.img-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  z-index: 10;
}

/* ── FOOTER ──────────────────────────────── */
.section-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.foot-note {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 300;
}
.foot-note strong {
  font-weight: 600;
  color: var(--ink);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-book:hover { background: var(--red-dark); }
.btn-book svg { transition: transform .2s; }
.btn-book:hover svg { transform: translateX(3px); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 960px) {
  .split-body {
    grid-template-columns: 360px 1fr;
  }
}
@media (max-width: 780px) {
  .split-body {
    grid-template-columns: 1fr;
  }
  .list-col {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .img-col { min-height: 340px; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .section-sub { text-align: left; max-width: 100%; }
}
@media (max-width: 560px) {
  .amenities-wrap { padding: 56px 20px 72px; }
  .amenity-item { padding: 18px 16px; }
}

/* attraction */
 .rooms-section {
      padding: 80px 8%; font-family: 'Source Sans 3', sans-serif;
      background: #fff;
      overflow: hidden;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-heading h2 {
      font-size: 54px; font-family: 'Oswald', sans-serif;
    line-height: 1.1;
    letter-spacing: .01em;
      color: #D62B1F;
      font-weight: 500;
      margin-bottom: 12px;
    }

    .section-heading p {
      font-size: 18px; font-family: 'Source Sans 3', sans-serif;
      color: #666;
      max-width: 760px;
      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; font-family: 'Source Sans 3', sans-serif;
      max-width: 500px;
    }

    .room-content h3 {
      font-size: 52px; font-family: 'Oswald', sans-serif;
      color: #111;
      font-weight: 400;
      margin-bottom: 25px;
    }

    .room-content p {
      font-size: 18px; font-family: 'Source Sans 3', sans-serif;
      color: #555;
      line-height: 1.9;
      margin-bottom: 35px;
    }


    .room-nav {
      display: flex; margin-top:45px;
      gap: 18px;
      flex-wrap: wrap;
    }

    .room-nav button {
      border: 1px solid #999; font-family: 'Source Sans 3', sans-serif;
      padding: 12px 20px;
      font-size: 15px;
      background: #fff;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .room-nav button:hover {
      background: #ED1A3B;
      color: #fff;
      border-color: #ED1A3B;
    }

    .room-image {
      flex: 1 1 550px;
      text-align: right;
    }

    .room-image img {
      width: 100%;
      max-width: 850px; border:none;
      height: 525px;
      object-fit: cover;
      display: block;
      
    }

    @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;
      }
    }


.neo-attraction-section{
    position:relative;
    overflow:hidden;
    padding:90px 8%;
    background:#0f1115;
    font-family:'Poppins',sans-serif;
}

.neo-container{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
    max-width:1400px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* Animated Background Shapes */
.neo-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.35;
}

.shape1{
    width:400px;
    height:400px;
    background:#ffb703;
    top:-100px;
    left:-100px;
}

.shape2{
    width:450px;
    height:450px;
    background:#00b4d8;
    bottom:-120px;
    right:-120px;
}

/* Left Content */
.neo-tag{
    display:inline-block;
    padding:10px 18px;
    border:1px solid rgba(255,255,255,0.15);
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(12px);
    border-radius:50px;
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:28px;
}

.neo-content h2{
    font-size:52px; font-family: 'Oswald', sans-serif;
    letter-spacing: .01em;
    text-transform: uppercase;
    line-height:1.05;
    color:#fff;
    margin-bottom:28px;
    font-weight:700;
}

.neo-content h2 span{
    color:#ffb703; font-family: 'Oswald', sans-serif;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.neo-content p{
    color:#cfcfcf; font-family: 'Source Sans 3', sans-serif;
    font-size:17px;
    line-height:1.9;
    max-width:580px;
    margin-bottom:40px;
}

/* Stats */
.neo-highlight{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.neo-highlight div{
    min-width:160px;
    padding:22px;
    border-radius:22px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
}

.neo-highlight strong{
    display:block;
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
}

.neo-highlight span{
    color:#bbb;
    font-size:14px;
}

/* Right Grid */
.neo-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.large-card{
    grid-column:span 2;
    height:420px !important;
}

.neo-card{
    position:relative; font-family: 'Source Sans 3', sans-serif;
    height:260px;
    overflow:hidden;
    border-radius:28px;
    cursor:pointer;
    transition:.5s ease;
    isolation:isolate;
}

.neo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.neo-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.15));
}

.neo-card:hover img{
    transform:scale(1.1);
}

.neo-card:hover{
    transform:translateY(-10px);
}

.neo-overlay{
    position:absolute;
    left:30px;
    bottom:28px;
    z-index:2;
}

.neo-overlay span{
    display:inline-block;
    padding:8px 14px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:50px;
    color:#fff;
    font-size:12px;
    margin-bottom:15px;
}

.neo-overlay h3{
    color:#fff; font-family: 'Oswald', sans-serif;
    font-size:30px;
    margin-bottom:10px;
    font-weight:600;
}

.neo-overlay p{
    color:#e0e0e0; font-family: 'Source Sans 3', sans-serif;
    font-size:15px;
    line-height:1.7;
    max-width:500px;
}

/* Responsive */
@media(max-width:1100px){

    .neo-container{
        grid-template-columns:1fr;
    }

    .neo-content h2{
        font-size:52px;
    }
}

@media(max-width:768px){

    .neo-grid{
        grid-template-columns:1fr;
    }

    .large-card{
        grid-column:span 1;
    }

    .neo-content h2{
        font-size:40px;
    }

    .neo-highlight{
        flex-direction:column;
    }

    .neo-attraction-section{
        padding:80px 20px;
    }

    .neo-card{
        height:300px;
    }
}





#footbg { width:100%; background:#0f1115; padding:3% 0;  font-family: 'Source Sans 3', sans-serif;}
#footer  {width:86%; margin:0 auto;  line-height:30px; color:#fff;}
#footer p{ font-size:16px; color:#fff; font-weight:normal;}
#footer p a{text-decoration:none; color:#fff; font-size:16px; font-weight:normal;}
.footer-col {float:right; width:38%; text-align:left; padding:15px 0px; font-size:16px; font-weight:normal;}
.footer-co {float:left; width:200px; text-align:left; padding-top:40px;}
.footer-col ul { float:left; width:40%; margin-left:22px;}
.footer-col ul li{list-style:circle; line-height:28px; }
.footer-col ul li a{ font-size:16px; font-weight:normal; text-decoration:none; color:#fff;}
.footer-col ul li a:hover{text-decoration:none; color:#ccc; font-size:16px;}
#lastbg { width:100%;  background:#333;}
.last  {width:86%; margin:0 auto; padding:1% 0%; line-height:30px; color:#ededed;}
.last p, p a{line-height:26px; font-size:14px; line-height:26px; padding:5px 0; color:#ededed; text-decoration:none; font-weight:200;}
}
.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; }
label { display:none;}
.title5 {text-decoration:none; margin:0 auto; font-weight:Normal; font-size:25px; color:#fff; padding:15px 0 5px 0; font-family: 'Oswald', sans-serif;}
.title5 a { color:#fff; text-decoration:none;}

html {
    scroll-behavior: smooth;
  }

  #scrollTopBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background: #D62B1F;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
  }

  #scrollTopBtn:hover {
    background: #333;
    transform: translateY(-4px);
  }

  @media (max-width: 767px) {
    #scrollTopBtn {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 20px;
      right: 20px;
    }
  }
  

.ada { width:100%; margin:0 auto; padding:12px 0; text-align:center; color:#666; font-size:17px; background:#F4F4F4; line-height:32px;}
.ada a { color:#666; text-decoration:none;}	


input[type="submit"]
.palace-button, input[type="submit"], input#searchsubmit { border-radius: 30px;
background:linear-gradient(45deg,#ffcc00,#ffcc00); border:none; color:#fff; font-size: 16px; font-family: 'Source Sans 3', sans-serif; padding:10px 22px; font-weight:normal; letter-spacing:1px;}
::-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:12px;
padding:10px;  font-family: 'Segoe UI', sans-serif;
width:50%; 
margin-right:15px; background:#fff;
border: 1px double #929292;
color:#444;
float:left; border-radius: 20px;
}



  
 .amenity1 {
      width:40%; float:left; 
      margin: 10px 10px 0 20px;
      padding: 20px; 
      
    }
  
    .amenity1 ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenity1 li {
      font-size: 17px;
      color: #3f4a56; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenity1 li i {
       color: #3f4a56;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenity1-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenity1-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #3f4a56; /* Blue checkmark */
  font-size: 17px;
}
.col1 {  width:40%; float:left; text-align:left; padding: 20px;  font-size: 17px;  color: #3f4a56; margin-left:30px; }
.col1 ul li {list-style:circle; line-height:36px;}
.col1 ul li a {color: #3f4a56; text-decoration:none; list-style:none;}	
 
 
 .att2 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.att2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.att2-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.att2-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.att2-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title7 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.title3 {
  font-size: 23px;
  margin-bottom: 12px;
  color: #333; text-align:center;
}

.att2-content p {
  font-size: 19px; text-align:Left;
  line-height: 1.7;
  color: #555;
}

/* Desktop 2-Column Layout */
@media (min-width: 768px) {
  .att2-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.fq{text-align:left; text-decoration: none; color:#031C1A; 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:#009245; text-decoration:none;}

.top2 { margin-top:8%;}
.read-more {
    display: inline-block;
    padding: 12px 28px;
    background: #003C6E;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.read-more:hover {
    background: #002a4f;
}
/* Reservation Section */
.reservation-section{
    width:100%; position:absolute; bottom:10px;
    padding:20px;
   background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 100));
    box-sizing:border-box;
}

/* Container */
.reservation-container{
    max-width:1200px;
    margin:auto;
}

/* Form */
.reservation-form{
    display:flex;
    gap:12px;
    align-items:stretch;
    flex-wrap:wrap;
}

/* Fields */
.reservation-field{
    background:#fff;
    padding:12px 20px;
    border-radius:0px;
    flex:1;
    min-width:200px;
    box-sizing:border-box;
    position:relative;
}

.small-field{
    max-width:160px;
}

.guest-field{
    min-width:280px;
}

/* Labels */
.reservation-field label{
    display:block;
    font-size:15px;
    color:#888;
    margin-bottom:3px;
    font-weight:500;
}

/* Inputs & Select */
.reservation-field input,
.reservation-field select{
    width:100%;
    border:none;
    outline:none;
    font-size:16px;
    font-weight:600;
    color:#111;
    background:transparent;
    cursor:pointer;
}

/* Guest Section */
.guest-wrapper{
    display:flex;
    gap:20px;
}

.guest-box{
    display:flex;
    align-items:center;
    gap:8px;
}

.guest-box span{
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    color:#111;
}

/* Button */
.reservation-btn{
    background:#ED1A3B; font-family: 'Source Sans 3', sans-serif;
    color:#fff;
    border:2px solid rgba(255,255,255,0.3);
    padding:0 35px;
    border-radius:0px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
    transition:0.3s ease;
    min-height:32px;
}

.reservation-btn:hover{
    background:#ffde00;
}

/* Responsive */
@media(max-width:991px){

    .reservation-form{
        flex-direction:column;
    }

    .reservation-field,
    .small-field,
    .guest-field{
        max-width:100%;
        width:100%;
    }

    .reservation-btn{
        width:100%;
        min-height:60px;
    }

    .guest-wrapper{
        flex-direction:column;
        gap:10px;
    }
}

.slider-track{
  display:flex;
  transition:transform 0.6s ease-in-out;
}

.room-slide{
  min-width:100%;
}

.amenitypg {
      width:40%; float:left; 
      margin: 10px 10px 0 60px;
      padding: 20px; 
      
    }
  
    .amenitypg ul {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px 30px;
    }
    .amenitypg li {
      font-size: 17px;
      color: #333; padding:8px 0;
      display: flex;
      align-items: center; text-align:left;
    }
    .amenitypg li i {
       color: #333;
      margin-right: 10px;
      font-size: 18px;
      min-width: 20px;
      text-align: center;
    }
.amenitypg-list li {
  position: relative;
  padding-left: 8px;
  margin-bottom: 10px;
}

.amenitypg-list li::before {
  content: "";
  position: absolute;
  left: 0;
   color: #333; /* Blue checkmark */
  font-size: 17px;
}
.col1 {  width:40%; float:left; text-align:left; padding: 20px;  font-size: 17px;  color: #3f4a56; margin-left:30px; }
.col1 ul li {list-style:circle; line-height:36px; margin-left:22px;}
.col1 ul li a {color: #3f4a56; text-decoration:none; list-style:none;}	
 
 
 .att2 {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 15px;
}

.att2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.att2-card {
  background: #ffffff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.att2-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.att2-content {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title7 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.title3 {
  font-size: 23px;
  margin-bottom: 12px;
  color: #333; text-align:center;
}

.att2-content p {
  font-size: 19px; text-align:Left;
  line-height: 1.7;
  color: #555;
}

/* Desktop 2-Column Layout */
@media (min-width: 768px) {
  .att2-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.fq{text-align:left; text-decoration: none; color:#031C1A; 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:#0A578A; text-decoration:none;}

.top2 { margin-top:8%;}
.read-more {
    display: inline-block;
    padding: 12px 28px;
    background: #003C6E;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.read-more:hover {
    background: #002a4f;
}
.vid { float:left; width:42%;  margin:0 auto;  position: relative;    height: 0;
    padding-bottom:30%; margin-left:35px; margin-bottom:20px; }
 
.vid iframe {
    width: 100% !important; height:100% !important;
	position: absolute;
   top: 0;
    left: 0;
  }

/* ==============================
   MODERN DIRECTIONS SECTION
================================ */

.direction-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 50px 45px;
    background: #ffffff;
    border: 1px solid #e8edf3;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 35, 55, 0.10);
    overflow: hidden;
}

/* Decorative background */
.direction-content::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    background: rgba(2, 52, 130, 0.06);
    border-radius: 50%;
}

.direction-content::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 220px;
    height: 220px;
    background: rgba(2, 52, 130, 0.04);
    border-radius: 50%;
}



/* Header */
.direction-header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.direction-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #023482;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.direction-header p {
    max-width: 570px;
    margin: 0;
    color: #6d7886;
    font-size: 15px;
    line-height: 1.7;
}


/* Form */
.direction-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: #263446;
    font-size: 14px;
    font-weight: 600;
}


/* Input */
.input-wrapper {
    position: relative;
}

.input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 18px;
    z-index: 2;
    color: #023482;
    font-size: 17px;
    transform: translateY(-50%);
}

.input-wrapper input {
    width: 100%;
    height: 58px;
    padding: 0 20px 0 50px;
    color: #263446;
    background: #f7f9fc;
    border: 1px solid #e1e7ee;
    border-radius: 13px;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.input-wrapper input::placeholder {
    color: #9aa5b1;
}

.input-wrapper input:hover {
    border-color: #b8c5d4;
}

.input-wrapper input:focus {
    background: #ffffff;
    border-color: #023482;
    box-shadow: 0 0 0 4px rgba(2, 52, 130, 0.08);
}


/* Button */
.direction-btn {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    padding: 0 25px;
    color: #ffffff;
    background: #023482;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.direction-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.direction-btn:hover {
    background: #172334;
    box-shadow: 0 12px 28px rgba(2, 52, 130, 0.22);
    transform: translateY(-2px);
}

.direction-btn:hover i {
    transform: translateX(5px);
}

.direction-btn:active {
    transform: translateY(0);
}


/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 767px) {

    .direction-content {
        padding: 35px 25px;
        border-radius: 20px;
    }


    .direction-header h2 {
        font-size: 26px;
    }

    .direction-header p {
        font-size: 14px;
    }

    .input-wrapper input,
    .direction-btn {
        height: 54px;
    }
}

@media (max-width: 480px) {

    .direction-content {
        padding: 30px 20px;
    }

     .direction-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}  