
   /* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Vidaloka', serif;
  
}


.btn-close {
  z-index: 1056 !important;  /* Ensure it's higher than modal backdrop */
  background-color: white;   /* Optional: makes it visible if background is dark */
  border-radius: 50%;        /* Optional: makes it look better */
  padding: 10px;
}

    .main_container {
      width: 100%;
    
      background-color: rgb(230, 226, 226);
      padding: 20px 0;
    }

    .container {
      display: flex;
      max-width: 95%;
      margin: auto;
      gap: 6px;
      height: 450px;
    }

    .main-image {
      width: 50%;
    }

    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 16px 0 0 16px;
      display: block;
      cursor: pointer;
    }

    .thumbnail-gallery {
      width: 50%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 6px;
      height: 100%;
    }

    .thumbnail-gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      cursor: pointer;
      display: block;
    }

    .thumbnail-gallery img:hover {
      transform: scale(1.03);
    }

    .thumbnail-gallery img:nth-child(1),
    .thumbnail-gallery img:nth-child(2) {
      border-radius: 0 16px 0 0;
    }

    .thumbnail-gallery img:nth-child(3),
    .thumbnail-gallery img:nth-child(4) {
      border-radius: 0 0 16px 0;
    }

    .thumbnail-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .plus-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 40px;
      color: white;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      pointer-events: none;
    }

    /* Lightbox styles */
    #lightboxOverlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 800;
      padding: 20px;
      box-sizing: border-box;
    }

    #lightboxContent {
      position: relative;
      width: 100%;
      max-width: 1000px;
      max-height: 100%;
      margin: auto;
      text-align: center;
    }

    #lightboxContent img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    }

    #lightboxClose {
      position: absolute;
      top: -2px;
      right: 40px;
      font-size: 62px;
      color: #fff;
      cursor: pointer;
      user-select: none;
      /* background: rgba(0, 0, 0, 0.4); */
      padding: 8px 12px;
      border-radius: 6px;
      font-weight: bold;
      z-index: 1010;
      transition: background 0.1s ease;
    }


      #lightboxClose:hover {

     
     
      
     
      cursor: pointer;
      
      /* background: rgba(0, 0, 0, 0.4); */
    
    
   
    }


    .lightbox-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 50px;
      color: white;
      cursor: pointer;
      /* background: rgba(111, 107, 107, 0.4); */
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
      z-index: 1010;
    }

    
    #lightboxPrev {
      left: -60px;
    }

    #lightboxNext {
      right: -60px;
    }

    #photoCount {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 16px;
      font-weight: bold;
      background: rgba(0, 0, 0, 0.5);
      padding: 6px 12px;
      border-radius: 20px;
      z-index: 1010;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .container {
        flex-direction: column;
        height: auto;
      }

      .main-image,
      .thumbnail-gallery {
        width: 100%;
        height: auto;
      }

      .thumbnail-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, auto);
      }

      .thumbnail-gallery img,
      .thumbnail-wrapper {
        aspect-ratio: 1 / 1;
      }

      .plus-icon {
        font-size: 30px;
        width: 40px;
        height: 40px;
      }

      #lightboxContent img {
        max-height: 70vh;
      }

      .lightbox-arrow {
        font-size: 40px;
        padding: 6px 10px;
      }

      #lightboxPrev {
        left: 10px;
      }

      #lightboxNext {
        right: 10px;
      }

      #lightboxClose {
        font-size: 24px;
        padding: 6px 10px;
      }

      #photoCount {
        font-size: 14px;
        padding: 4px 10px;
      }
    }

    @media (min-width: 1441px) {
      .container {
        max-width: 1400px;
        gap: 10px;
        height: 550px;
      }

      #lightboxContent img {
        max-height: 85vh;
      }

      .lightbox-arrow {
        font-size: 60px;
      }

      #lightboxClose {
        font-size: 36px;
      }
    }

@media (max-width: 991px) {
  .container {
    flex-direction: column;
    gap: 12px;
    height: auto;
  }

  .main-image,
  .thumbnail-gallery {
    width: 100%;
    height: auto;
  }

  .thumbnail-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 6px;
  }

  .thumbnail-gallery img,
  .thumbnail-wrapper {
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 0 !important;
  }

  .plus-icon {
    font-size: 24px;
    width: 36px;
    height: 36px;
  }

  #lightboxContent {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  #lightboxContent img {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
  }

  .lightbox-arrow {
    font-size: 30px;
    padding: 4px 8px;
    top: 50%;
    transform: translateY(-50%);
  }

  #lightboxPrev {
    left: 10px;
  }

  #lightboxNext {
    right: 10px;
  }

  #lightboxClose {
    font-size: 28px;
    top: 8px;
    right: 15px;
  }

  #photoCount {
    font-size: 12px;
    padding: 4px 8px;
    bottom: 10px;
  }
}








    
  /* -------------------- Key Info Section -------------------- */
  .key-info {
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .key-info span {
    margin-right: 25px;
    font-weight: 600;
    font-size: 14px;
    color: #555;
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
  }

  .key-info span i {
    font-size: 18px;
    margin: 0 6px;
    color: #444;
  }

  .key-info .title {
    color: #0067b8;
    font-weight: 700;
    font-size: 16px;
    margin-right: 30px;
  }

  /* -------------------- Read More Button -------------------- */
  .read-more {
    background-color: #0071ce;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 16px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
  }

  .read-more-container {
    text-align: right;
    margin-right: 90px;
    margin-top: 10px;
  }

  .read-more:hover {
    background-color: #005a9c;
  }

  /* -------------------- Sidebar (Price & Booking Box) -------------------- */
  .sidebar {
    border: 1px solid #aaa;
    padding: 20px;
    border-radius: 8px;
    background-color: #fefefe;
  }

  .rate-header {
    font-size: 14px;
    color: #555;
    font-weight: 700;
    margin-left: 53px;
    margin-bottom: 6px;
  }

  .rate-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .rate-sub {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    margin-left: 42px;
  }

  .check-btn {
    background-color: #fba623;
    border: none;
    color: white;
    font-weight: 600;
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    border-radius: 5px;
  }

  .check-btn:hover {
    background-color: #d98e0d;
  }




/* <------------ rates table start ---------------> */


    h2 {
      margin-top: 40px;
      font-size: 40px;
      text-align: center;
      font-family: 'Vidaloka', serif;
      text-shadow: 2px 2px 5px rgba(83, 81, 81, 0.7);
    }

    table {
      width: 90%;
      max-width: 1000px;
      margin: 30px auto;
      border-collapse: collapse;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    thead {
      background-color: #003366;
      color: white;
    }

    th, td {
      padding: 16px;
      border: 1px solid #ccc;
      font-size: 18px;
      text-align: center;
    }

    td {
      background-color: #fff;
    }

    td:empty::before {
      content: "-";
      color: #666;
    }

    h3 {
      text-align: center;
      font-weight: bold;
      margin: 40px 20px 25px;
      font-size: 24px;
    }

    .info-container {
      max-width: 800px;
      margin: 0 auto 50px;
      border: 1px solid #ccc;
      padding: 20px 30px;
      line-height: 1.6;
      background-color: #fff;
    }

    .info-line {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px dotted transparent;
      padding: 4px 0;
      font-size: 18px;
    }

    .label {
      flex: 1;
      text-align: left;
    }

    .dots::after {
      content: " .................................................................................................";
      color: #aaa;
    }

    .value {
      flex-shrink: 0;
      white-space: nowrap;
      text-align: right;
      padding-left: 15px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      h2 {
        font-size: 30px;
      }

      table, th, td {
        font-size: 16px;
        padding: 12px;
      }

      .info-container {
        padding: 15px 20px;
      }

      .info-line {
        font-size: 16px;
      }

      .dots::after {
        content: " ..................................................";
      }
    }

    @media (max-width: 480px) {
      h2 {
        font-size: 26px;
        padding: 0 10px;
      }

      table, th, td {
        font-size: 14px;
        padding: 10px;
      }

      .info-container {
        padding: 10px 15px;
      }

      .info-line {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
      }

      .label, .value {
        text-align: left;
        padding-left: 0;
      }

      .dots::after {
        content: "";
      }
    }
/* <------------ rates table end ---------------> */




  /* -------------------- Contact Form  -------------------- */

  .contact-form {
    margin-top: 30px;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background-color: #fefefe;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        z-index: 999;
  }

  .contact-form h5 {
    color: #0067b8;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .contact-form input,
  .contact-form select {
    margin-bottom: 12px;
    font-size: 14px;
    padding: 8px 10px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
  }

  .contact-form small {
    font-size: 12px;
    color: #888;
  }

  .modal fade {
    width: 100%;
    margin-bottom: 20px;

  }

  /* -------------------- Amenities Section -------------------- */
   .amenities {
      margin-top: 30px;
    }

    .amenities h5 {
      color: #0067b8;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .amenities .subtitle {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .amenities ul {
      list-style: none;
      padding: 0;
      font-size: 14px;
      color: #333;
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 0;
    }

    .amenities ul li {
      width: 33.33%;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }

    .amenities ul li i {
      margin-right: 8px;
      color: #0071ce;
      width: 18px;
    }

    #amenities-img {
      display: none;
      max-width: 100%;
      margin-top: 15px;
      border-radius: 8px;
    }

    .read-more {
      background-color: #0071ce;
      border-radius: 20px;
      color: #fff;
      font-weight: 600;
      font-size: 13px;
      padding: 6px 16px;
      border: none;
      cursor: pointer;
      margin-top: 10px;
    }

    .read-more-container {
      text-align: right;
      margin-right: 90px;
      margin-top: 10px;
    }

    .read-more:hover {
      background-color: #005a9c;
    }

    .extra-notes {
      margin-top: 20px;
      font-size: 14px;
      color: #333;
    }

    .extra-notes p {
      margin-bottom: 8px;
    }

  /* -------------------- Responsive Styles -------------------- */
  @media (max-width: 576px) {
    .amenities ul li {
      width: 100%;
      /* margin-left: 220px; */
    }

     .contact-form {
    margin: auto;
     }

     .sidebar{
      margin: auto;
     }

     
    .nav-tabs-center {
      flex-direction: column;
      gap: 10px;
     
    }

    

  }

  @media (min-width: 577px) and (max-width: 768px) {
    .amenities ul li {
      width: 50%;
    }
  }

  /* -------------------- Navigation Tabs -------------------- */
  .nav-section {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    background-color: #f8f9fa;
    
  }

  .nav-tabs-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .nav-tabs-center a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding: 8px 12px;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-tabs-center a:hover {
    color: #000;
  }

  .nav-tabs-center a.active {
    color: #000;
    font-weight: 600;
  }

  .nav-tabs-center a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background-color: #fcb900;
  }




   h2 {
      color: #003366;
      font-weight: bold;
      margin-bottom: 20px;
      border-bottom: 1px solid #d6d8db;
      padding-left: 0px;
    }

    .rates-table {
      width: 100%;
      border-collapse: collapse;
      height: 300px;
      
    }

    .rates-table th {
      background-color: #003366;
      color: white;
      padding: 12px;
      text-align: center;
      font-weight: bold;
      border: 1px solid #ccc;
    }

    .rates-table td {
      padding: 12px;
      text-align: center;
      border: 1px solid #ccc;
      vertical-align: middle;
      background-color: white;
    }

    .rates-table tbody tr:nth-child(even) td {
      background-color: #eaf0fa; /* Light blue-gray alternate row */
    }

    .table-responsive {
      border: 2px solid #ccc;
      border-radius: 4px;
      overflow-x: auto;
    }

    .container {
      max-width: 1300px;
    }
  



     .main-box {
      width: 788px;
      border: 1px solid #999;
      font-size: 14px;
      color: #000;
    }

    .tabs {
      display: flex;
      margin: 0;
      padding: 0;
      list-style: none;
      border-bottom: 1px solid #999;
      background-color: #f5f5f5;
      user-select: none;
    }

    .tab {
      padding: 10px 20px;
      border-right: 1px solid #999;
      cursor: pointer;
      background-color: #f5f5f5;
      transition: background-color 0.3s;
    }

    .tab:last-child {
      border-right: none;
    }

    .tab.active {
      background-color: #fff;
      font-weight: bold;
      border-bottom: 3px solid orange;
    }

    .content {
      padding: 20px;
      line-height: 1.7;
      background-color: #fff;
      min-height: 300px;
    }

    .heading {
      font-weight: bold;
      margin-bottom: 15px;
    }

    .note {
      margin-top: 20px;
      font-size: 12px;
      color: #555;
    }

    .card-icons img {
      height: 24px;
      margin-right: 10px;
    }

    a {
      color: #1a0dab;
      text-decoration: none;
    }




/* ---------------- Responsive Utility Fixes ---------------- */

/* Ensure image, video, iframe elements scale */
img, iframe, video {
  max-width: 100%;
  height: auto;
}

/* Adjust sidebar stacking on smaller screens */
@media (max-width: 991px) {
  .sidebar {
    margin-top: 30px;
  }
}

/* Tabs and table for mobile */
@media (max-width: 768px) {
  .main-box {
    width: 100%;
  }

  .tabs {
    flex-direction: column;
  }

  .tab {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }

  .tab.active {
    border-bottom: 3px solid orange;
  }

  .nav-tabs-center {
    gap: 20px;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .rates-table th, .rates-table td {
    font-size: 12px;
    padding: 8px;
  }
}

/* Smaller mobile screens */
@media (max-width: 576px) {
  .nav-tabs-center {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .key-info span {
    margin-right: 15px;
    font-size: 12px;
  }

  .read-more-container {
    margin-right: 0;
    text-align: left;
  }

  .amenities ul li {
    width: 100%;
    font-size: 13px;
  }

  .rates-table th, .rates-table td {
    font-size: 11px;
  }

  .sidebar {
    padding: 15px;
  }

  .check-btn {
    font-size: 14px;
    padding: 8px;
  }

  .contact-form {
    padding: 15px;
  }

  .contact-form input, .contact-form select {
    font-size: 13px;
    padding: 6px 8px;
  }
}

/* Large desktops / TVs */
@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
  }

  .rates-table th, .rates-table td {
    font-size: 16px;
  }

  .tab {
    font-size: 16px;
    padding: 14px 24px;
  }
}


/* ============================
   Enhanced Responsive Support
============================ */

/* Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .sidebar {
    margin-top: 20px;
  }

  .main-box {
    width: 100%;
  }

  .tab {
    font-size: 15px;
  }

  .rates-table th, .rates-table td {
    font-size: 13px;
    padding: 10px;
  }

  .read-more-container {
    text-align: center;
    margin-right: 0;
  }
}

/* Laptops (1025px - 1399px) */
@media (min-width: 1025px) and (max-width: 1399px) {
  .main-box {
    width: 95%;
    margin: auto;
  }

  .rates-table th, .rates-table td {
    font-size: 14px;
  }
}

/* Extra Large Screens / Smart TVs (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
  }

  .main-box {
    width: 900px;
  }

  .tab {
    font-size: 18px;
    padding: 14px 28px;
  }

  .rates-table th, .rates-table td {
    font-size: 18px;
  }

  .read-more,
  .check-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .contact-form input,
  .contact-form select {
    font-size: 15px;
    padding: 10px 12px;
  }
}

/* Extra Small Devices (up to 400px) */
@media (max-width: 400px) {
  .nav-tabs-center a {
    font-size: 13px;
    padding: 6px 10px;
  }

  .read-more,
  .check-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .contact-form {
    padding: 10px;
  }

  .contact-form input,
  .contact-form select {
    font-size: 12px;
    padding: 6px;
  }
}


  #ts2-section {
      padding: 40px;
      background-color: #f9f9f9;
    }

    .ts2-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    h2 {
      font-size: 28px;
      margin-bottom: 30px;
      color: #333;
      text-align: center;
    }

    .ts2-card {
      border: 1px solid #f64343;
      padding: 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      font-size: 16px;
      line-height: 1.6;
      color: #444;
    }

    .ts2-readmore {
      background-color: #dc3545;
      color: white;
      padding: 10px 25px;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      transition: 0.3s ease;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
      text-align: center;
    }

    .ts2-readmore:hover {
      background-color: #c82333;
      text-decoration: none;
      color: white;
    }

    /* Media Queries */

    /* Mobile (≤ 600px) */
    @media (max-width: 600px) {
      #ts2-section {
        padding: 30px 15px;
      }

      h2 {
        font-size: 22px;
      }

      .ts2-card {
        font-size: 14px;
        padding: 15px;
      }

      .ts2-readmore {
        width: 100%;
        font-size: 14px;
        padding: 10px;
      }
    }

    /* Tablet (601px - 1024px) */
    @media (min-width: 601px) and (max-width: 1024px) {
      h2 {
        font-size: 24px;
      }

      .ts2-card {
        font-size: 15px;
      }

      .ts2-readmore {
        font-size: 15px;
        padding: 10px 20px;
      }
    }

    /* Desktop (1025px - 1440px) */
    @media (min-width: 1025px) and (max-width: 1440px) {
      h2 {
        font-size: 26px;
      }

      .ts2-card {
        font-size: 16px;
      }
    }

    /* Large Screens / TV (1441px and up) */
    @media (min-width: 1441px) {
      #ts2-section {
        padding: 60px;
      }

      h2 {
        font-size: 32px;
      }

      .ts2-card {
        font-size: 18px;
        padding: 25px;
      }

      .ts2-readmore {
        font-size: 18px;
        padding: 12px 30px;
      }
    }