    :root {
      --navy: #07334a;
      --teal: #0097a7;
      --teal-dark: #006978;
      --gold: #f2b84b;
      --cream: #fff8ed;
      --white: #ffffff;
      --dark: #16232b;
      --text: #5d6b75;
      --soft: #eef8fa;
      --shadow: 0 24px 60px rgba(7, 51, 74, 0.18);
      --radius: 24px;
      --transition: all 0.35s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family:'Poppins', sans-serif;border:0;outline:none;
      color: var(--dark);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      width: 100%;
      display: block;
    }

    .container {
      width: min(1180px, 92%);
      margin: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px 24px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-size: 15px;
      font-weight: 800;
      transition: var(--transition);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal), var(--navy));
      color: var(--white);
      box-shadow: 0 14px 30px rgba(0, 151, 167, 0.28);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 42px rgba(0, 151, 167, 0.36);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--dark);
    }

    .btn-gold:hover {
      transform: translateY(-3px);
      background: #ffd071;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.75);
      color: var(--white);
    }

    .btn-outline:hover {
      background: var(--white);
      color: var(--navy);
    }

    .section {
      padding: 95px 0;
    }

    .section-heading {
      max-width: 780px;
      margin-bottom: 45px;
    }

    .center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      border-radius: 50px;
      background:#018697;
      color:#fff;
      font-size: 14px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    h1,
    h2,
    h3 {
      line-height: 1.15;
    }

    .title {
      font-size: clamp(30px, 4vw, 48px);
      letter-spacing: -1px;
      margin-bottom: 16px;
    }

    .title span {
      color: var(--teal-dark);
    }

    .text {
      color: var(--text);
      font-size: 17px; padding:10px;
    }

    .topbar {
      background: var(--navy);
      color: var(--white);
      padding: 10px 0;
      font-size: 14px;
    }

    .topbar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(15px);
      box-shadow: 0 10px 35px rgba(7, 51, 74, 0.08);
    }

    .nav {
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-area img {

      background: var(--white);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
    }

    .nav-menu a {
      font-size: 17px;
      font-weight: 800;
      color: var(--dark);
      position: relative;
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 3px;
      background: var(--gold);
      border-radius: 20px;
      transition: var(--transition);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .menu-btn {
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 14px;
      background: var(--navy);
      color: var(--white);
      font-size: 25px;
      cursor: pointer;
      display: none;
    }

    .hero {
      position: relative;
      min-height: calc(100vh - 126px);
      background: var(--navy);
      overflow: hidden;
      color: var(--white);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 1s ease, transform 3.2s ease;
      background-size: cover;
      background-position: center;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        radial-gradient(circle at 85% 25%, rgba(242, 184, 75, 0.35), transparent 28%),
        linear-gradient(100deg, rgba(7, 51, 74, 0.96), rgba(7, 51, 74, 0.72), rgba(7, 51, 74, 0.25));
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -140px;
      bottom: -190px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      border';': 70px solid rgba(255, 255, 255, 0.12);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      min-height: calc(100vh - 126px);
      display: grid;
      grid-template-columns: 1fr 360px;
      align-items: center;
      gap: 45px;
      padding: 90px 0;
    }

    .hero-copy {
      max-width: 760px;
      animation: fadeUp 0.9s ease;
    }

    .hero-copy .eyebrow {
      display: inline-flex;
      padding: 10px 17px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(8px);
      font-weight: 800;
      margin-bottom: 22px;
    }

    .hero-copy h1 {
      font-size: clamp(38px, 6vw, 72px);
      letter-spacing: -2px;
      margin-bottom: 18px;
    }

    .hero-copy p {
      font-size: clamp(17px, 2vw, 21px);
      color: rgba(255, 255, 255, 0.9);
      max-width: 700px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .booking-card {
      background: rgba(255, 255, 255, 0.94);
      color: var(--dark);
      border-radius: 30px;
      padding: 26px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
      animation: fadeLeft 0.9s ease;
    }

    .booking-card h3 {
      font-size: 23px;
      color: var(--navy);
      margin-bottom: 14px;
    }

    .booking-info {
      display: grid;
      gap: 14px;
      margin: 18px 0 22px;
    }

    .booking-info div {
      padding: 14px;
      border-radius: 16px;
      background: var(--soft);
      color: var(--text);
      font-weight: 700;
    }

    .booking-info span {
      display: block;
      color: var(--navy);
      font-weight: 900;
      margin-bottom: 3px;
    }

    .slide-controls {
      position: absolute;
      left: 50%;
      bottom: 35px;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .slide-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.45);
      color: var(--white);
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      font-size: 24px;
      cursor: pointer;
      transition: var(--transition);
    }

    .slide-btn:hover {
      background: var(--gold);
      color: var(--dark);
    }

    .slide-dots {
      display: flex;
      gap: 8px;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: var(--transition);
    }

    .dot.active {
      width: 32px;
      border-radius: 20px;
      background: var(--gold);
    }

    .info-band {
      background: var(--cream);
      padding: 28px 0;
      border-bottom: 1px solid rgba(7, 51, 74, 0.08);
    }

    .info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .info-item {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      background: var(--white);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 10px 30px rgba(7, 51, 74, 0.07);
    }

    .info-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--teal), var(--navy));
      color: var(--white);
      font-size: 22px;
      flex-shrink: 0;
    }

    .info-item h3 {
      font-size: 17px;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .info-item p {
      color: var(--text);
      font-size: 14px;
    }

    .welcome {
      background:
        linear-gradient(90deg, var(--white) 0 60%, var(--soft) 60% 100%);
    }

    .welcome-wrap {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 60px;
      align-items: center;
    }

    .image-stack {
      position: relative;
      min-height: 550px;
    }

    .image-main {
      width: 82%;
      height: 430px;
      border-radius: 34px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .image-main img,
    .image-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .image-small {
      position: absolute;
      right: 0;
      bottom: 10px;
      width: 56%;
      height: 285px;
      border-radius: 30px;
      overflow: hidden;
      border: 10px solid var(--white);
      box-shadow: var(--shadow);
    }

    .vertical-label {
      position: absolute;
      left: -32px;
      top: 80px;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      background: var(--gold);
      color: var(--dark);
      padding: 18px 12px;
      border-radius: 18px;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 13px;
    }

    .welcome-content {
      background: var(--white);
      border-radius: 34px;
      padding: 42px;
      box-shadow: var(--shadow);
    }

    .read-extra {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.6s ease;
    }

    .read-extra.open {
      max-height: 430px;
    }

    .read-extra p {
      margin-top: 16px;
    }

    .read-more-btn {
      margin-top: 24px;
      background: var(--navy);
      color: var(--white);
    }

    .read-more-btn:hover {
      background: var(--teal-dark);
      transform: translateY(-3px);
    }

    .amenities {
      background: var(--navy);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .amenities::before {
      content: "";
      position: absolute;
      left: -160px;
      top: -170px;
      width: 420px;
      height: 420px;
      background: rgba(0, 151, 167, 0.28);
      border-radius: 50%;
    }

    .amenities .title,
    .amenities .text {
      color: var(--white);
    }

    .amenities .text {
      color: rgba(255, 255, 255, 0.78);
    }

    .amenity-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .amenity-card {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: var(--radius);
      padding: 26px;
      min-height: 210px;
      transition: var(--transition);
      backdrop-filter: blur(10px);
    }

    .amenity-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.15);
    }

    .amenity-card .icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: var(--gold);
      color: var(--dark);
      display: grid;
      place-items: center;
      font-size: 27px;
      margin-bottom: 18px;
    }

    .amenity-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
      color: var(--white);
    }

    .amenity-card p {
      color: rgba(255, 255, 255, 0.75);
      font-size: 15px;
    }

/* EXPERIENCE SECTION */
.soi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}



.soi-section-heading h2
 {
  color: #003c71;
  line-height: 1.15;
  margin-bottom: 18px;
}

.soi-section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.soi-section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.soi-section-heading p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

.soi-experience-card a {
  color: #c28a2c;
  font-weight: 700;
  text-decoration: none;
}
.soi-experience-card a:hover {
  color: #003c71;
}

.soi-experience-section {
  padding: 90px 0;
  background: #F3F9F9;
             
}

.soi-section-heading.light h2,
.soi-section-heading.light p {
  color: #00;
}

.soi-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.soi-experience-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 28px 22px;
  border-radius: 22px;
  text-align: center;
  transition: 0.3s ease;
}

.soi-experience-card:hover {
  transform: translateY(-8px);
  background: #fff8ec;
}

.soi-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #ffbe00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.soi-experience-card h3 {
  color: #003c71;
  font-size: 20px;
  margin-bottom: 12px;
}

.soi-experience-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

@keyframes soiFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .soi-welcome-grid,
  .soi-card-grid {
    grid-template-columns: 1fr;
  }

  .soi-experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }



}

@media (max-width: 576px) {
  .soi-experience-section {
    padding: 60px 0;
  }


  .soi-experience-grid {
    grid-template-columns: 1fr;
  }


}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #e5e7e1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}



/* ROOMS */
.experience-wrapper{
    margin-left:90px;
    padding:70px 7%;
    background:#fff;
}

.stay-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.stay-box{
    position:relative;
    overflow:hidden;
    height:620px;
}

.stay-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.7s;
}

.stay-box:hover img{
    transform:scale(1.08);
}

.stay-info{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:40px;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.stay-info h3{
    color:#fff;
    font-size:39px;
    font-family:'Playfair Display',serif;
    margin-bottom:12px;
}

.stay-info p{
    color:#ddd;
    line-height:1.8;
}

@media(max-width:991px){
	.experience-wrapper{
	
	
	  margin-left:0;
}
.stay-grid {
        grid-template-columns: 1fr;
}
}
     .location {
      background:
        linear-gradient(135deg, rgba(7, 51, 74, 0.94), rgba(0, 151, 167, 0.88)),
        url("../images/exterior.jpg") center/cover fixed;
      color: var(--white);
    }

    .location-box {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 34px;
      padding: 44px;
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 35px;
      align-items: center;
      backdrop-filter: blur(14px);
    }

    .location-box h2 {
      font-size: clamp(30px, 4vw, 48px);
      margin-bottom: 14px;
    }

    .location-box p {
    
      margin-bottom: 24px;
      font-size: 17px;
    }

    .contact-card {
      background: var(--white);
      color: var(--dark);
      border-radius: 28px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .contact-card h3 {
      color: var(--navy);
      font-size: 24px;
      margin-bottom: 18px;
    }

    .contact-row {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin: 16px 0;
      color: var(--text);
      font-weight: 700;
    }

    .contact-row span {
      color: var(--teal-dark);
      font-size: 21px;
    }

    .footer {
      background: #061923;
      color: rgba(255, 255, 255, 0.76);
      padding: 60px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.75fr 0.95fr;
      gap: 35px;
      margin-bottom: 35px;
    }

    .footer-logo {
      width: 145px;
      background: var(--white);
      border-radius: 16px;
      padding: 9px;
      margin-bottom: 16px;
    }

    .footer h3 {
      color: var(--white);
      margin-bottom: 16px;
      font-size: 20px;
    }

    .footer p,
    .footer a {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.75);
    }

    .footer ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .footer a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      font-size: 14px;
    }

    .policy-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      font-weight: 800;
    }

    .policy-links a {
      color: var(--gold);
    }

    .back-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      border: none;
      background: var(--gold);
      color: var(--dark);
      font-size: 23px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(18px);
      transition: var(--transition);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
      z-index: 1000;
    }

    .back-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(35px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(35px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeLeft {
      from {
        opacity: 0;
        transform: translateX(35px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 1050px) {
      .hero-content,
      .welcome-wrap,
      .location-box {
        grid-template-columns: 1fr;
      }

      .booking-card {
        max-width: 520px;
      }

      .info-grid,
      .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .room-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 850px) {
      .menu-btn {
        display: grid;
        place-items: center;
      }

      .nav-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 86px;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 7%;
        gap: 18px;
        box-shadow: 0 18px 35px rgba(7, 51, 74, 0.16);
        transform: translateY(-140%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .nav .btn-primary {
        display: none;
      }

      .logo-text {
        display: none;
      }

      .hero,
      .hero-content {
        min-height: 760px;
      }

      .slide-controls {
        bottom: 24px;
      }
    }

    @media (max-width: 680px) {
      .topbar-inner,
      .topbar-left,
      .topbar-right {
        justify-content: center;
        text-align: center;
      }

      .section {
        padding: 70px 0;
      }

      .info-grid,
      .amenity-grid,
      .room-grid,
      .experience-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .welcome {
        background: var(--white);
      }

      .welcome-content,
      .location-box {
        padding: 28px;
      }

      .image-stack {
        min-height: auto;
      }

      .image-main,
      .image-small {
        width: 100%;
        height: 285px;
        position: static;
        border: none;
        margin-bottom: 18px;
      }

      .vertical-label {
        position: static;
        writing-mode: initial;
        transform: none;
        display: inline-block;
        margin-bottom: 14px;
      }

      .experience-card {
        min-height: 380px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }
