@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  /* Fonts */
  --font-heading: "Playfair Display", serif;
  --font-body: "Roboto", sans-serif;
  --color-primary: #FAB740;
  --color-dark-blue: #071740;
  --white-color: var(--white-color);
  --blue-bg: #071740;
  --white-color: #FFFFFF;
  --gradient-blue: linear-gradient(90deg, #071740 0%, #03298C 44.06%, #071740 100%);
  --gradient-card-hover: linear-gradient(180deg, rgba(7, 23, 64, 0) 0%, #071740 100%);
  --h2-size: 50px;
  --h2-style: normal;
  --h2-weight: 700;
  --h2-line-height: 100%;
 
  /* h3 Styles */
  --h3-size: 32px;

  /* h1 Styles */
  --h1-size: 64px;
  --h1-style: normal;
  --h1-weight: 700;
  --h1-line-height: 110%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--white-color);
  color: var(--color-dark-blue);
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
}
@media (min-width: 1620px) {
    .container {
        max-width: 1420px;
        margin: 0 auto;
    }
}
h1 {
  color: var(--white-color);
  font-size: var(--h1-size);
  font-style: var(--h1-style);
  font-weight: var(--h1-weight);
  line-height: var(--h1-line-height);
  margin-bottom: 10px;
}
h2 {
  color: var(--color-dark-blue);
  font-family: var(--h2-font);
  font-size: var(--h2-size);
  font-style: var(--h2-style);
  font-weight: var(--h2-weight);
  line-height: var(--h2-line-height);
}
h3 {
  font-size: var(--h3-size);
  font-weight: 700;
  margin-bottom: 15px;
}
p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-dark-blue);
  line-height: 1.8;
}
.card {
  transition: all 0.3s ease;
}
.bottom-header {
    background: var(--blue-bg);
}
.card:hover {
  background: var(--gradient-card-hover);
  box-shadow: 0 6px 18px rgba(7, 23, 64, 0.3);
}
button,
.btn-blue,
.btn-white {
  display: inline-flex;
  width: auto;
  max-width: fit-content;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
    font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
   text-transform: uppercase;
}

.btn-blue {
  background: var(--gradient-blue);
  color: var(--white-color);
  border: none;
}

.btn-blue:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--color-dark-blue);
  border: 2px solid var(--color-dark-blue);
}

.btn-white:hover {
  background: var(--color-primary);
  color: var(--white-color);
  border-color: var(--color-primary);
}

.top-header {
    background: var(--gradient-blue);
    padding: 8px 0;
}
.top-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.top-header span {
    font-size: 15px;
    font-weight: 700;
    background: var(--color-primary);
    padding: 5px 10px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    height: 25px;
}
.top-header p {
    color: var(--white-color);
    font-size: 15px;
    margin: 0;
}
nav.navbar {
    padding: 0;
}
.content-section {
  width: 100%;
  padding: 0;
}
.navbar-nav .nav-item  {
  padding: 0 15px;
}
.navbar-nav .nav-item a.nav-link  {
    color: var(--white-color);
    padding: 0;
    font-size: 15px;
    position: relative;
}
.navbar-nav .nav-item a.nav-link:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    transition: all 0.3s ease;
}
.navbar-nav .nav-item:hover a.nav-link:after {
    content: '';
    width: 100%;
    transition: all 0.3s ease;
}
.navbar-nav .nav-item a.nav-link.active:after  {
  width: 100%;
}
.navbar-nav .nav-item a.nav-link.active, .navbar-nav .nav-item:hover a.nav-link {
    color: var(--color-primary);
}
.btn_yellow {
    background: var(--color-primary);
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn_yellow svg {
    height: 20px;
    width: 20px;
}
.contactus-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
}
ul.navbar-nav.ms-auto {
    padding-right: 20px;
}
.content-section .container {
  display: flex;
  width: 100%;
  min-height: 500px;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item .container {
    position: relative;
}
.owl-dot {
    height: 10px;
    width: 10px;
    background: #fff;
    border-radius: 15px;
}
.owl-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    width: 100%;
    bottom: 15px;
}
.owl-dot.active {
    width: 35px;
    background: var(--color-primary);
}
.hero-text {
    position: absolute;
    bottom: 0;
    width: 650px;
    left: 0;
    background: var(--gradient-blue);
    padding: 60px;
    text-align: center;
}
.text-box {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box h2 {
  margin-bottom: 20px;
}

.text-box p {
  margin-bottom: 30px;
}


.deal-section {
  width: 100%;
}

.deal-section .container {
  display: flex;
  width: 100%;
  min-height: 600px;
}

.dealh2 {
  color: var(--white-color);
}
.content-section .container,
.deal-section .container {
  display: flex;
  max-width: 100%;
  padding: 0;

}

.content-section .image-box,
.content-section .text-box,
.deal-section .deal-left,
.deal-section .deal-right {
  flex: 0 0 50%;   /* force each side to 50% */
  max-width: 50%;  /* prevent overflow */
}


.deal_card_hover_text{
color: var(--white-color);
font-family: var(--font-heading);
font-size: 30px;
line-height: 35px;

}
.btndeal {
  background-color: transparent;
  color: var(--white-color);
  border-color: var(--white-color);
  border-width: 1px;
  padding: 12px 25px;
  cursor: pointer;
}

/* Left Side */
.deal-left {
  flex: 1;
  background: var(--gradient-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  color: var(--white-color);
}

.deal-left h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.deal-left .deal-sub {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.deal-left .deal-off {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 30px;
}

/* Right Side Grid */
.deal-right {
  flex: 1;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  width: 100%;
}

.deal-card {
  position: relative;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  overflow: hidden;
}

.deal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.deal-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%; 
  background: var(--gradient-card-hover);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1; /* behind text */
}

.deal-card:hover::after {
  opacity: 1;
}

/* Text + Button on Hover */
.deal-card .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
  color: var(--white-color);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2; /* above gradient */
}

.deal-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}


/* Text + Button on Hover */
.deal-card .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    text-align: center;
    color: var(--white-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 10px;
}

.deal-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.deal-card .overlay p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.deal-card .overlay .btn-blue {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.deal-card .overlay .btn-blue:hover {
  transform: translateX(5px);
}

.services-section {
    padding: 65px 0;
}
img {
    max-width: 100%;
}
.service-cont {
    padding-left: 20px;
}
.title-wrap h2 {
    margin-bottom: 10px;
}
.title-wrap span {
    color: #071740;
    font-size: 22px;
}
.service-cont ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}
.service-cont ul li a {
    text-decoration: none;
    display: block;
    padding: 18px 0;
    border-bottom: solid 1px #C4C4C4;
    color: #071740;
    font-size: 32px;
}
/* Accomodation CSS Section */
.accomodation-sec {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 65px 0;
}
.accomodation-sec h2 {
    color: var(--white-color);
    margin-bottom: 30px;
}
.accomodation-sec p {
    color: var(--white-color);
    margin-bottom: 50px;
}
.accomodation-box {
    padding-left: 30px;
}
.accomodation-sec .owl-nav {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    gap: 20px;
}

/* Gallery Sectiion CSS */
.gallery-sec {
    position: relative;
}
.gallery-sec .title-wrap {
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 0;
    padding: 0 20px;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.activity-title-cls {
    padding: 15px;
}
.gallery-sec .title-wrap h2 {
    color: var(--white-color);
    margin-bottom: 25px;
}
.gallery-sec .title-wrap .btn-white {
    border-color: var(--white-color);
    border-radius: 0;
    background: transparent;
    color: var(--white-color);
}
.gallery-sec .container-fluid {
    padding: 0;
}
.gallery-sec  .gallery-box {
    display: flex;
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-card1 {
    flex: 0 0 30%;
}
.gallery-card2 {
    flex: 0 0 40%;
}
.gallery-card1 .g-item {
    height: 50%;
}
.gallery-card2 .g-item:first-child {
    height: 30%;
}
.gallery-card2 .g-item:last-child {
    height: 70%;
}
.gallery-card3 .g-item:last-child {
    height: 36%;
}
.gallery-card3 .g-item:first-child {
    height: 64%;
}
.gallery-card3 {
    flex: 0 0 30%;
}







/* Footer CSS */        
  .footer-section {
      background: var(--blue-bg);
      color: white;
      padding: 60px 0 0;
  }
  
  .logo-section {
      margin-bottom: 40px;
  }  
  .footer-title {
      font-weight: bold;
      margin-bottom: 15px;
      color: white;
  }
  .contact-info span {
      font-size: 18px;
  }

  .location-name:after {
      content: '';
      position: absolute;
      height: 1.5px;
      background: var(--color-primary);
      width: 100%;
      bottom: -3px;
  }
  .location-section {
      margin-bottom: 30px;
      background: hsl(0deg 0% 85% / 6%);
      padding: 15px;
  }
  .location-name {
      color: var(--color-primary);
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      position: relative;
  }
  
  .location-name::before {
    content: '';
    margin-right: 10px;
    height: 10px;
    width: 10px;
    background: #fab740;
    border-radius: 50%;
}
  
  .contact-info {
      margin-bottom: 5px;
      display: flex;
      gap: 10px;
      align-items: self-start;
  }
  
  .contact-info i {
      margin-right: 10px;
      width: 16px;
      color: #333;
  }
  
  .gallery-item {
      margin-bottom: 15px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-right: 40px;
  }
  
  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }
  
  .gallery-item:hover img {
      transform: scale(1.05);
  }
  
  .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px;
      opacity: 0;
      z-index: 1;
    }
    .gallery-overlay a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--white-color);
      text-decoration: none;
    }
    .gallery-item:after {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      bottom: -58.45px;
      background: linear-gradient(180deg, rgba(7, 23, 64, 0) 0%, #071740 100%);
      border-radius: 0px;
      left: 0;
      z-index: 0;
  }
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
        transition: all 0.5s;
    }
    .gallery-title {
      font-size: 24px;
      font-family: 'Playfair Display';
  }
    
    .quick-link {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-link-item {
        color: white;
        text-decoration: none;
        font-size: 20px;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .quick-link-item:hover {
        color: var(--color-primary);
    }
    
    .copyright-bar {
        background: rgba(0,0,0,0.2);
        padding: 15px 0;
        margin-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    .social-icons{
        display: flex;
        gap: 10px;
        justify-content: end;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        background: hsla(0, 0%, 100%, 0.12);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .social-icon:hover {
        transform: translateY(-2px);
        color: #333;
    }

    .copyright-text {
        font-size: 16px;
        color: #e0e0e0;
    }   
    .whatsapp-chat {
      position: fixed;
      z-index: 111;
      bottom: 20px;
      right: 20px;
      background: #ffffff;
      box-shadow: 0px 0px 6.9px rgba(0, 0, 0, 0.25);
      border-radius: 50px;
    }
    .whatsapp-chat span {
          flex: 0 0 120px;
          display: inline-flex;
          align-items: center;
          padding-left: 30px;
          color: #60D535;
          line-height: 1.3;
          font-size: 15px;
          font-weight: 600;
    }
    .whatsapp-chat a {
          display: flex;
          gap: 15px;
          text-decoration: none;
    }
    .hero-bg.mount-cont .hero-text {
        text-align: left;
    }
    .hero-bg.mount-cont .hero-text p {
        color: var(--white-color);
        font-size: 30px;
        font-family: 'Playfair Display';
        margin-bottom: 35px;
    }
    .activity-row {
        display: flex;
    }
    .activity-left a {
        display: flex;
        justify-content: space-between;
        padding: 0 15px;
        position: absolute;
        bottom: 20px;
        z-index: 11;
        color: #fff;
        width: 100%;
        text-decoration: none;
        font-size: 24px;
        font-family: 'Playfair Display';
        opacity: 0;
    }
    .activity-left {
        flex: 0 0 30%;
        position: relative;
    }
    .activity-left-in, .activity-box-in{height: 100%;}
    .activity-left-in img, .activity-box-in img{object-fit: cover;min-height: 100%;min-width: 100%;}
    .activity-center {
        flex: 0 0 40%;
    }
    .activity-title-cls {
        height: 100%;
        background: var(--gradient-blue);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
    .activity-box {
        height: 50%;
        position: relative;
    }
    .activity-box a {
        z-index: 1;
        display: flex;
        justify-content: space-between;
        position: absolute;
        bottom: 20px;
        width: 100%;
        padding: 0 20px;
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-family: 'Playfair Display';
        opacity: 0;
    }
    .activity-left:after, .activity-box:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0px;
        background: linear-gradient(180deg, rgba(7, 23, 64, 0) 0%, #071740 100%);
    }
    .exp-activity-sec .container-fluid {
        padding: 0;
    }
    .activity-box:hover:after {
        width: 100%;
    }
    .activity-box:hover a {
        transition: all 0.5s;
        opacity: 1;
    }
    .activity-left:hover a {
        opacity: 1;
    }
    .title_wrap h2 {
        color: #fff;
        text-align: center;
        margin-bottom: 20px
        ;
    }
    .title_wrap p {
        color: #fff;
        text-align: center;
        margin-bottom: 0;
    }
    .book_now_wrap span {
        color: #fff;
        margin-bottom: 10px;
        display: block;
    }
    .book_now_wrap {
        text-align: center;
    }
    .book_now_wrap h3 {
        color: #FAB741;
        font-size: 38px;
        font-family: 'Roboto' !important;
        margin-bottom: 0;
    }
    section.about-sec {
        padding: 65px 0;
    }

    .about-box span {
        font-size: 30px;
        font-style: italic;
    }

    .about-box h4 {
        margin-top: 15px;
        font-size: 24px;
        font-family: 'Roboto' !important;
        color: #071740;
        margin-bottom: 5px;
    }

    .about-card-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px 15px;
    }
    .about_card {
        background: #F6F6F6;
        width: calc(50% - 15px);
        padding: 15px;
        display: flex;
        gap: 10px;
    }

    .about_card p {
        margin-bottom: 0;
        line-height: 1.4;
        margin-top: 5px;
    }

    .about-box p {
        text-align: justify;
        font-size: 16px;
    }
    .dining-box {
        background-size: cover;
        background-repeat: no-repeat;
        padding: 65px 0 115px;
    }
    .dining_inner {
        max-width: 40%;
    }
    .dining_inner h2 {
        color: #fff;
        margin-bottom: 30px;
    }

    .dining-box .dining_inner p {
        color: #fff;
        margin-bottom: 25px;
    }

    .dining-box .dining_inner ul {
        list-style: disc;
        margin-bottom: 50px;
    }
    .dining-box .dining_inner ul li {
        color: #fff;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .dining-box .dining_inner .btn-white {
        background: transparent;
        color: #fff;
        border-color: #fff;
    }









section.vila-sec {
    background-size: cover;
    padding: 65px 0;
}
.vila-sec .title-wrap h2 {
    background-color: #fff;
    border-radius: 55px;
    padding: 20px 10px;
    text-align: center;
}
.feature-card {
    padding: 20px;
    display: flex;
    gap: 15px;
}
.feature-icon {
    height: 55px;
    width: 55px;
    flex: 0 0 55px;
}
.feature-cont h4 {
    font-family: 'Roboto' !important;
    color: #fff;
    margin-bottom: 0;
}
.feature-cont p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.4;
    transition: all 0.5s;
}
.feature-card:hover {
    background: #ffff;
    transition: all 0.5s;
}
.feature-icon img {
    filter: invert(1) brightness(100);
    transition: all 0.5s;
}
.feature-card:hover .feature-icon img {
    filter: unset;
    transition: all 0.5s;
}
.feature-card:hover .feature-cont h4, .feature-card:hover .feature-cont p {
    color: #000;
    transition: all 0.5s;
}
.room-box {
  margin: 20px 0;
}
.room-cont {
    padding: 20px 0 0;
}
.room-serv {
    display: flex;
    gap: 10px;
    margin: 5px 0 40px;
}
.serv-badge {
    background: hsl(0deg 0% 79% / 15%);
    padding: 10px 25px;
    border-radius: 47px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.room-cont h4 {
    font-family: 'Roboto' !important;
}
.room-sec {
    padding: 65px 0;
}
.location-highlight-sec {
    padding: 65px 0;
}
.location-highlight-sec ul {
    border-radius: 10px;
    list-style: none;
    background: #F6F6F6;
    padding: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
}
.location-highlight-sec ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
.location-highlight-sec ul li:last-child {
    margin-bottom: 0;
}
.location-map {
  padding-left: 45px;

}
.location-map iframe {
    width: 100%;
    border-radius: 10px;
}
.hero-bg.hero-inner-bg {
    padding: 120px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right center;
}
.hero-bg.hero-inner-bg h1 {
    margin-bottom: 20px;
}
section.infra-sec, .ve-sec {
    padding: 65px 0;
}
.title-wrap p {
    color: #071740;
    font-style: italic;
    font-weight: 500;
}
.infra-cont p {
    line-height: 1.5;
}
.infra-galary-item {
    position: relative;
}
.infra-galary-item:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    bottom: 0px;
    background: linear-gradient(180deg, rgba(7, 23, 64, 0) 0%, #071740 100%);
    opacity: 0;
    transition: all 0.5s;
}
.infra-galary-item:hover:after {
    opacity: 1;
    transition: all 0.5s;
}
.infra-galary-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infra-inner-cont {
    position: absolute;
    bottom: 15px;
    z-index: 11;
    padding: 0 15px;
    width: 100%;
}
.infra-inner-cont h4 {
    color: #fff;
    margin-bottom: 0;
    opacity: 0;
}
.infra-galary [class*="col-"] {
    padding: 5px;
}
.infra-galary-item:hover .infra-inner-cont h4 {
    opacity: 1;
    transition: all 0.5s;
}

.spaces-inner {
    display: flex;
    padding: 0;
    align-items: center;
}
.spaces-img {
    flex: 0 0 50%;
    padding-right: 80px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left:80px;
}
.spaces-img img {
    border-radius: 0 210px;
}
.spaces-inner-cont {
    flex: 0 0 50%;
    padding-left: 70px;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.spaces-img:after {
    content: '';
    position: absolute;
    height: 22px;
    top: calc(50%);
    width: 22px;
    border-radius: 50%;
    background: #FAB740;
    right: -5px;
        z-index: 11;
}
.spaces-wrap {
    position: relative;
}
.spaces-sec {
    overflow: hidden;
}
.spaces-inner-cont:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background: #071740;
    left: -7px;
    top: calc(50% - 0px);
}
.spaces-inner.right-cont .spaces-inner-cont:after {
    right: 5px;
    left: auto;
}
.spaces-inner.right-cont .spaces-img {
    padding-right: 0;
    padding-left: 80px;
    padding-right: 80px;
}
.spaces-inner.right-cont .spaces-img:after {
    left: -17px;
    right: auto;
}
.spaces-inner.right-cont .spaces-inner-cont {
    padding-left: 0;
    padding-right: 70px;
}
.spaces-wrap [class*="col-"]:last-child .spaces-inner-cont:after {
    display: none;
}
.about_card p {
    text-align: left;
}
section.trekking-sec {
    padding: 65px 0;
}
.dining-card {
    background: #FFFFFF;
    box-shadow: 0px 0px 8.5px rgba(190, 190, 190, 0.25);
    padding: 30px;
    height: 100%;
}
.amin-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.amin-card {
    flex: 0 0 calc(33.33% - 7px);
    background: #F6F6F6;
    padding: 12px;
}
.amin-card h5 {
    font-size: 18px;
    font-family: 'roboto' !important;
    margin-bottom: 0;
}
.dining-cont .amin-card p {
    margin-bottom: 0;
    font-size: 16px;
}
.dining-cont p {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 0;
}


.banquet-cont ul {
    padding-left: 40px;
}
.inquiries-btn {
    background: #F6F6F6;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.banquet-cont p {
    margin-bottom: 10px;
}
.banquet-cont h2 {
    margin-bottom: 20px;
}
.inquiries-btn a {
    background: #FAB740;
    padding: 10px 20px;
    border-radius: 50px;
    color: #000;
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 10px;
}
.conference-sec {
    padding: 65px 0;
    background: #F6F6F6;
}
.banquets-sec {
    padding: 65px 0;
}
.capacity-card {
    display: flex;
    background: #fff;
    padding: 25px 10px;
}
.capacity-inner {
    padding: 0 20px;
    flex: 0 0 33.33%;
    border-right: solid 1px #ddd;
    text-align: center;
}
.capacity-inner span {
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: center;
    margin: 0 auto 20px;
}
.capacity-inner span.bagde-cls {
    height: auto;
    width: auto;
    margin-bottom: 0;
    background: rgb(7 23 64 / 7%);
    align-items: center;
    display: inline-flex;
    padding: 3px 20px;
    border-radius: 20px;
    margin-top: 5px;
}
.capacity-inner h5 {
    margin-bottom: 0;
}
.capacity-inner:last-child {
    border-right: 0;
}
.capacity-inner span svg path {
    fill: #C9C9C9;
}
.capacity-inner span svg {
    height: 55px;
    width: 55px;
}
.capacity-inner:hover span svg path {
    fill: #fab740;
}
.capacity-inner:hover span.bagde-cls {
    background: #fab740;
}
.capacity-seating-wrap {
    margin-top: 40px;
}
.arrangement-inner {
    display: flex;
    gap: 7px;
}
.arrangement-card {
    flex: 0 0 calc(25% - 5px);
    background: #F6F6F6;
    padding: 15px 7px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}
.arrangements-sec {
    padding: 65px 0;
}
.arrangement-cta {
    margin-top: 20px;
    background: linear-gradient(90deg, #071740 0%, #03298C 44.06%, #071740 100%);
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    padding: 65px;
    align-items: center;
}
.arrangement-cta h3 {
    color: #fff;
    margin-bottom: 0;
}
.cta-right a {
    background: #FAB740;
    padding: 10px 20px;
    border-radius: 50px;
    color: #000;
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 10px;
}
section.trekking-sec p:last-child {
    margin-bottom: 0;
}
.dining-cont {
    padding-top: 25px;
}
section.dining-sec {
    padding: 65px 0;
}
.reserve-now-inner ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 30px;
    margin-bottom: 5px;
    margin-top: 15px;
}
.reserve-now-inner ul li {
    display: flex;
    gap: 5px;
    align-items: center;
}
.reserve-now-inner ul li span {
    line-height: 1;
}
.reserve-sec {
    padding: 65px 0;
}














.l-select {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-top: 5px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.l-select input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 3.5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 2px #071740;
}
.l-select input:checked ~ .checkmark {
  background-color: #ffffff;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.l-select input:checked ~ .checkmark:after {
  display: block;
}
.l-select .checkmark:after {
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbc058;
}
.location-img img {
    border-radius: 15px;
}

.select_location {
    display: flex;
    gap: 20px;
}



    
    .minus, .plus{
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius:50px;
        padding: 10px;
        border:1px solid #ddd;
        display: inline-flex;
        vertical-align: middle;
        text-align: center;
    }
    .number input{
        height: 40px;
        width: 40px;
        text-align: center;
        font-size: 18px;
        border: 0;
        border-radius:4px;
        display: inline-block;
        vertical-align: middle;
    }

    .date-wrap {
        display: flex;
        align-items: center;
    }
    .date-col {
        flex: 0 0 46%;
    }
    span.to-wrap {
        padding: 10px 10px;
        flex: 0 0 8%;
        text-align: center;
    }
    .date-col input {
        width: 100%;
        font-size: 14px;
        text-align: left;
        padding: 10px 15px;
        height: 45px;
        border: solid 1px #dddd;
        border-radius: 10px;
    }
    .reserve-form form {
        width: 760px;
        margin: 0 auto;
        max-width: 100%;
    }
    .select-date {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .select-location {
        padding-top: 20px;
    }
    .guest-row {
        display: flex;
        justify-content: space-between;
    }
    .guest-card {
        border: solid 1px #E2E2E2;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .guest-card:last-child {
        margin-bottom: 0;
    }
    .guest-col-left {
        display: flex;
        flex-direction: column;
    }
    .guest-col-left span {
        color: #4A4A4A;
        font-size: 14px;
        line-height: 1;
    }
    .guest-col-left label {
        font-size: 18px;
        font-weight: 500;
        line-height: 1;
        margin-bottom: 5px;
    }
    .number {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .guest-detail {
        margin-top: 20px;
    }
    .guest-detail .form-group {
        margin-bottom: 20px;
    }
    .guest-detail .form-group input {
        height: 45px;
        border-radius: 8px;
        background: #F6F6F6;
        border: 0;
        padding: 10px 15px;
    }
    .contact-cont {
        position: absolute;
        padding: 25px;
        bottom: 0;
        z-index: 11;
    }
    .contact-img:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(7, 23, 64, 0) 0%, #071740 100%);
    }
    .contact-img {
        position: relative;
    }
    .contact-cont h4 {
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        font-family: 'Roboto' !important;
    }
    .contact-cont p {
        color: #fff;
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 0;
    }
    .contact-form .guest-detail {
        margin-top: 0;
    }
    .contact-form {
        margin: 25px 0 0;
    }
    .contact-bg {
        background: #F6F6F6;
        padding: 31px;
    }
    .contact-bg .location-section {
        background: #fff;
    }
    .contact-bg .location-section .location-name::before {
        display: none;
    }
    .contact-bg .location-section .location-name:after {
        display: none;
    }
    .contact-bg .location-section .location-name {
        margin-bottom: 0;
    }


.content-section .text-box {
    padding: 20px;
}
.accommodation-slider .item {
    position: relative;
}
.accommodation-review-con {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.accommodation-review-text {
    width: 700px;
    max-width: 90%;
    position: relative;
}
.accommodation-review-text p {
    margin: 0;
    color: #fff;
}
.accommodation-review-text h3 {
    font-family: var(--font-body) !important;
    font-weight: 500;
    font-size: 36px;
}
.accommodation-review-text::before {
    content: "";
    background-image: url(../images/review-left.svg);
    width: 51px;
    height: 48px;
    position: absolute;
    left: -70px;
    top: 80px;
}
.accommodation-review-text::after {
    content: "";
    background-image: url(../images/review-right.svg);
    width: 51px;
    height: 48px;
    position: absolute;
    right: -70px;
    top: 80px;
}
.ve-sec-con {
    margin-top: 15px;
}
.ve-sec [class*="col-"] {
    margin-top: 15px;
}
.ve-sec-btn {
    position: relative;
}
.ve-sec-con- {
    position: absolute;
    left: 0;
    top: 0;
    padding: 30px;
    text-align: center;
    color: #fff;
    gap: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}
.ve-sec-con p {
    margin: 0;
    line-height: 1.3;
}
.ve-sec-btn h4{
font-family: var(--font-body) !important;
}
.luxury-sec {
    background: #071740;
    padding: 65px 0;
}
.luxury-sec-itm-ic {
    margin-bottom: 25px;
}
.luxury-sec-itm {
    background: rgba(255,255,255,.12);
    text-align: center;
    padding: 25px;
    height: 100%;
    border: 1px solid transparent;
}
.luxury-sec-itm:hover {
    border: 1px solid #fff;
}
.luxury-sec-itm-con p {
    margin: 0;
    color: #fff;
    line-height: 1.3;
}
.luxury-sec-in [class*="col-"] {
    margin-top: 20px;
}
.luxury-sec .title-wrap h2, .luxury-sec .title-wrap p {
    color: #fff;
}
.amenities-sec{padding: 65px 0;}
.amenities-itm {
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #EEEEEE;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
.amenities-itms [class*="col"] {
    margin-top: 25px;
}
.amenities-in h5 {
    margin: 0;
    font-family: var(--font-body) !important;
}
.amenities-ic img {
    filter: grayscale(1);
}
.amenities-itm:hover .amenities-ic img {
    filter: unset;
}
.amenities-itm:hover {
    box-shadow: 0 0 18.5px #8e8e8e2b;
}
.amenities-btn {
    position: relative;
    height: 100%;
}
.amenities-sec .col-md-4 {
    margin-top: 25px;
}
.amenities-btn-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 94%;
    min-height: 100%;
}
.amenities-btn-img img {
    position: absolute;
    top: 50%;
    left: 0;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    transform: translateY(-50%);
}
.amenities-btn-s {
    position: absolute;
    right: 10px;
    top: 10px;
}
.amenities-btn-con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: var(--gradient-card-hover);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    justify-content: flex-end;
}
.room-suits {
    background: #F6F6F6;
    padding: 65px 0;
}
.room-suit {
    background: #fff;
    margin-top: 25px;
}
.room-suit-con {
    padding: 20px 20px 25px 5px;
}
.room-info {
    font-weight: 500;
    margin-bottom: 5px;
}
.room-suit-con h3 {
    margin-bottom: 8px;
}
.room-cn {
    line-height: 1.3;
}
.room-heighlights p {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 5px;
}
.room-heighlights-itm {
    display: inline-flex;
    background: #F6F6F6;
    padding: 10px 22px;
    border-radius: 40px;
    gap: 10px;
    font-size: 14px;
    color: #434343;
    font-weight: 500;
    align-items: center;
    line-height: 1;
}
.room-heighlights-itms {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.room-btn {
    margin-top: 25px;
}
.room-suit-img {
    height: 100%;
}
.room-suit-img img {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

.timeline {
    border-bottom: 1px solid #E2E2E2;
    border-top: 1px solid #E2E2E2;
    padding-bottom: 30px;
    padding-top: 20px;
    margin-top: 30px;
}
.timeline-sec .title-wrap {
    text-align: center;
}
.timeline-sec {
    padding: 65px 0;
}
.timeline-item {
    position: relative;
    display: flex;
    gap: 80px;
    padding-top: 25px;
    text-align: right;
}
.timeline-content {
    padding-top: 30px;
    flex: 0 0 calc(50% - 40px);
}
.timeline-image {
    flex: 0 0 calc(50% - 40px);
}
.timeline-item p {
    line-height: 1.3;
    min-height: 224.58px;
}
.timeline-content h4 {
    font-weight: 600;
    font-family: var(--font-body) !important;
}
.time span {
    background: #F6F6F6;
    display: inline-block;
    padding: 7px 17px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.timeline-item:nth-child(2n) {
    flex-direction: row-reverse;text-align: left;
}
.timeline-image {
    text-align: left;
}
.timeline-item:nth-child(2n) .timeline-image {
    text-align: right;
}
.timeline-item::after {
    content: "";
    background-image: url(../images/timeline-line1.svg);
    flex: 0 0 72px;
    height: 100%;
    position: absolute;
    right: calc(50% - 36px);
    top: 72px;
    width: 72px;
    background-repeat: no-repeat;
}
.timeline-item:nth-child(2n)::after {
    background-image: url(../images/timeline-line2.svg);
    top: 61px;
}
.timeline-item::before {
    content: "";
    width: 14px;
    height: 14px;
    background: #fab740;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 38px);
    top: 62px;
    z-index: 1;
}
.timeline-item:nth-child(2n)::before {
    right: calc(50% - 38px);
    left: auto;
}
.timeline-item:last-child::after {
    display: none;
}
.timeline-image {
    padding-left: 70px;
}
.timeline-item:nth-child(2n) .timeline-image {
    padding-right: 70px;
}
.btn-white {
    text-decoration: none;
}
.gallery-sss-itm {
    margin-top: 25px;
    display: inline-block;
    width: 100%;
    float: left;
}
.example-image-link {
    position: relative;
    overflow: hidden;
    height: 220px;
    display: inline-block;
    width: 100%;
    float: left;
}
.example-image-link img {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
}
.gallery-sss {
    padding: 65px 0;
}
.gallery-sss-in .nav-tabs {
    border: 0;
    justify-content: center;
    background: #071740;
    padding: 10px;
    border-radius: 10px;
    display: inline-flex;
    gap: 10px;
}
.gallery-sss-in {
    text-align: center;
}
.gallery-sss-in button {
    border-radius: 6px !important;
}
.gallery-sss-in .nav-tabs .nav-link {
    border: 0 !important;
    color: #fff;
}
.gallery-sss-in .nav-tabs .nav-link.active {
    color: #071740;
}