.select_room_area{
   background-color: #a52a2a !important;
   color: #fff;
}
body{
   background-color: #faebd7 !important;
}
.header_area{
  background-color: #faebd7 !important;
}
.breadcrumb_main_area{
   background-color: #faebd7 !important;
}
.footer_area{
  background-color: #a52a2a !important;
}
.text{
    text-align: justify;
}
.single_staff {
    margin-bottom: 30px; 
}
.uk-overlay-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;  
    align-items: center;      
    text-align: center;     
    height: 100%;             
}
  .reservation-form-wrapper {
    border: 1px solid #ccc;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 5px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  table td {
    padding: 6px 10px;
    vertical-align: top;
    font-size: 14px;
    width: 35%;
  }

  table td:last-child {
    width: 65%;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    width: 100%;
    padding: 5px 1px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }

  textarea {
    resize: vertical;
  }

  .form-buttons {
    text-align: center;
    padding-top: 15px;
  }

 
  h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: serif;
  }

  .text-danger {
    color: #b30000;
  }
.room_facilities_des ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.room_facilities_des ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
   
}



.room_facilities_des {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.room_facilities_des:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
/* Make images responsive and with soft rounded corners */
.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Add slight zoom effect on hover */
.img-responsive:hover {
    transform: scale(1.05);
}

/* Add spacing below each row */
.container .row {
    margin-bottom: 40px;
}

/* Optional: style the text */
.text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    background-color: #faebd7;
}
/* Container row spacing */
.container .row {
    margin-bottom: 50px;
}



.img-responsive:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Text block styling */
.text {
   
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    
    transition: background-color 0.3s ease;
}

.text strong {
    font-size: 16px;
    color: #000;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .text {
        margin-top: 10px;
    }
}
.text {
  padding-top: 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}

.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.sight-card {
  width: 100%;
  height: 400px; /* Fixed height */
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #faebd7;
}

.sight-img {
  width: 100%;
  height: 180px; /* Fixed image height */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}
  .sight-card {
    margin-bottom: 20px;
  }

  @media (max-width: 576px) {
    .sight-card {
      margin-bottom: 30px;
    }
  }
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 2px solid #ddd;
  gap: 10px;
}

/* Style individual tabs */
.nav-tabs > li {
  margin-bottom: -2px;
}

.nav-tabs > li > a {
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
  background-color: #a52a2a;
  color: #fff !important;
  transition: all 0.3s ease;
}

/* Active tab */
.nav-tabs > li.active > a,
.nav-tabs > li > a:hover,
.nav-tabs > li.active > a:focus {
  background-color: #fff;
  border-color: #ddd #ddd transparent;
  color: #000 !important;
  font-weight: 600;
}

/* Mobile scrolling support */
@media (max-width: 768px) {
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .nav-tabs > li {
    flex: 0 0 auto;
  }

  .nav-tabs > li > a {
    white-space: nowrap;
  }
}

/* Optional: Add bottom margin to tabs */
.margin-bottom-60 {
  margin-bottom: 60px;
}
/* Desktop: Wider spacing */
@media (min-width: 992px) {
  .nav-tabs {
    justify-content: center;
    gap: 15px;
  }

  .nav-tabs > li > a {
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* Tablet view */
@media (min-width: 768px) and (max-width: 991px) {
  .nav-tabs {
    justify-content: center;
    gap: 12px;
  }

  .nav-tabs > li > a {
    padding: 10px 15px;
    font-size: 15px;
  }
}

/* Mobile view: Horizontal scroll */
@media (max-width: 767px) {
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }

  .nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .nav-tabs > li {
    flex: 0 0 auto;
  }

  .nav-tabs > li > a {
    white-space: nowrap;
    font-size: 14px;
    padding: 8px 12px;
  }
}
/* Tabs layout adjustment for mobile */
@media (max-width: 768px) {
  .nav-tabs {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 20px;
  }

  .nav-tabs > li {
    flex: 1 1 auto; 
    max-width: 48%; 
    text-align: center;
  }

  .nav-tabs > li > a {
    display: block;
    padding: 10px 8px;
    font-size: 13px;
    white-space: normal; 
    background-color: #a52a2a;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s ease;
  }

  .nav-tabs > li.active > a,
  .nav-tabs > li > a:hover {
    background-color: #fff;
    color: #007bff;
    border-color: #007bff;
    font-weight: bold;
  }
}
.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.gallery-section .mb-4 {
  margin-bottom: 1.5rem !important; 
}

@media (max-width: 576px) {
  .gallery-section .mb-4 {
    margin-bottom: 2rem !important; 
  }
}
h5,h6{
    font-weight: 600;
}
.facility-item {
  background-color: #f9f9f9;
  padding: 12px 18px;
  margin-bottom: 10px;
  border-left: 4px solid #b30000;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.facility-item:hover {
  background-color: #fff3e6;
  cursor: pointer;
}

.facility-item p {
  margin: 0;
  font-weight: 500;
  color: #333;
}
.btn {
  color: #b30000;
}
.lightboxOverlay {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
.lb-image {
  max-height: 80vh !important;
  object-fit: contain;
}
body.lb-disable-scrolling {
  overflow: auto !important;
}

@media (max-width: 767px) {
   .another_facitilies .single_facities img {
      display: block;
      margin: 0 auto 15px auto; 
           
   }

   .another_facitilies .single_facities h6 {
      margin-bottom: 10px;
      font-size: 16px;
   }

   .another_facitilies .single_facities p {
      font-size: 14px;
      line-height: 1.5;
   }

   .another_facitilies .single_facities {
      margin-bottom: 30px; 
      text-align: center;
   }
}
@media (max-width: 767px) {
  .about_details .more-text {
    display: none;
  }

  .about_details.show-full .more-text {
    display: inline;
  }

  .read-more-btn {
    background-color: #faebd7;
    color: #b30000;
    border: none;
    padding: 6px 12px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
  }
}
@media (min-width: 768px) {
  .read-more-btn {
    display: none;
  }

  .about_details .more-text {
    display: inline;
  }
}
@media (max-width: 767px) {
  .more-text {
    display: none;
  }

  .show-full .more-text {
    display: inline;
  }

  .read-more-btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #faebd7;
    color: #b30000;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  .read-more-btn {
    display: none;
  }

  .more-text {
    display: inline;
  }
}
@media (max-width: 767px) {
  .more-text {
    display: none;
  }

  .text.show-full .more-text {
    display: inline;
  }

  .read-more-btn {
    margin-top: 10px;
    background-color: #faebd7;
    color: #b30000;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
  }
}

@media (min-width: 768px) {
  .read-more-btn {
    display: none;
  }

  .more-text {
    display: inline;
  }
}
h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 16px 0;
  text-align: center;
}

@media (max-width: 767px) {
  h3 {
    font-size: 1.2rem;      
    line-height: 1.4;
    padding: 0 15px;        
    text-align: center;      
    word-break: break-word;  
  }
}

@media (max-width: 767px) {
  h5 {
    font-size: 1.2rem;      
    line-height: 1.4;
    padding: 0 15px;        
    text-align: center;      
    word-break: break-word;  
  }
}
    .single_staff {
      padding: 10px;
    }

    .single_staff img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .slick-dots {
      bottom: -25px;
    }

    .slick-dots li button:before {
      font-size: 12px;
      color: #000;
    }

    @media (min-width: 768px) {
      .dining-slider {
        display: flex;
        flex-wrap: wrap;
      }

      .dining-slider .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
      }
    }
.thank_page {
  background-color: #f7f7f7;
  padding: 80px 0;
  min-height: 00vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank_box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 40px 30px;
  text-align: center;
  max-width: 600px;
  height: 500px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  
}

.thank_box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 600;
}

.thank_box a {
  color: #b30000;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-top: 15px;
}

.thank_box a i {
  margin-right: 6px;
}
  /* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(150, 147, 147, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: -8% !important;
  right: 17% !important;
  color: #ff0000;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 100px;
  opacity: 1 !important;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.better-info-card {
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
  margin-top: 10px;
}

.better-info-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.better-info-card .info-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.better-info-card .info-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.margin-bottom-30 {
  margin-bottom: 30px;
}

.better-info-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-title {
  font-size: 16px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.responsive-top-margin {
  margin-top: 90px;
}

.room_info_box {
  display: flex; /* Use flexbox for row layout */
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  color: #222;
  font-size: 16px;
  cursor: default;
  width: 100%;
  height: 55px;
  padding: 0 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.room_info_box h6,
.room_info_box p {
  margin: 0 -4px;
  color: #333;
  font-size: 15px;
}
.room_rent{
  margin-right: -2px;
  margin-left: -4px;
}
@media (max-width: 768px) {
  .room_info_box h6,
  .room_info_box p {
    font-size: 14px !important;
    margin: 0 0 !important;
    text-align: left !important;
  }

  .room_rent {
    margin-left: 8px !important;
    margin-right: 3px !important;
    text-align: left !important;
  }

  .room_info_box {
    padding: 8px 12px !important;
  }
}

@media (max-width: 576px) {
  .room_info_box h6 {
    font-size: 12px !important;
  }

  .room_rent p {
    font-size: 11px !important;
  }
}
@media (max-width: 576px) {
  .about_room {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .room_quality h5 {
    font-size: 12px;
    margin: 0;
  }

  .room_rent p {
    font-size: 11px;
    margin: 0;
  }
}
.number-font {
 font-family: 'IBM Plex Mono', monospace;


  font-weight: 600;
}

h5,h6{
  color: #fff;
}
.color{
  color: #fff;
}
.white{
color: #fff;
}
.room_info_box{
  background-color: #faebd7;
}
.room_details{
   background-color: #faebd7 !important;
}
.accomodation_single_room{
  background-color: #a52a2a !important;
}
.room_detail_main{
   background-color: #a52a2a !important;
}
.footer_logo{
  filter: brightness(0) invert(1);
}
.black{
  color: #000;
}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.icon-circle img {
  max-width: 55px;
  max-height: 55px;
}
.icon-circle-centered {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle-centered img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}
.floating-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.contact-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  background: #25D366;
  color: #fff;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  transition: width 0.4s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.contact-link:hover {
  width: 180px;
}

.contact-link span {
  white-space: nowrap;
  margin-left: 12px;
  opacity: 0;
  transition: opacity 0.3s 0.15s ease;
  font-size: 16px;
}

.contact-link:hover span {
  opacity: 1;
}

.contact-link iconify-icon {
  font-size: 28px;
  margin-left: 16px;
}

.fixed-slider-height img {
  height: 80% !important;        
  object-fit: cover;    
  width: 100%;         
  border-radius: 8px;    
}
/*.fullwidth_home_two_banner {
    height: 700px; 
    overflow: hidden;
}
.fullwidth_home_two_banner img {
    height: auto;
    width: 100%;
    object-fit: cover; 
}*/
.satisfied-client-box {
  width: 150px;
  height: 150px;
  margin-left: 5px;
  border-radius: 16px;
  padding: 20px 10px;
  text-align: center;
  color: white;
  font-family: sans-serif;
  box-sizing: border-box;
 
  flex-shrink: 0; /* prevents shrinking */
}

.avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  flex-wrap: wrap;
}

.avatar-placeholder,
.plus-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -12px;
  background-color: #FFFFFF;
  display: inline-block;
  box-sizing: border-box;
}

.plus-button {
  background-color: #b30000;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  line-height: 38px;
}

.satisfied-client-box p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px) {
  .satisfied-client-box {
    width: 100px;
    height: 120px;
    margin-left: 16px;
    padding: 10px 6px;
  }

  .avatar-placeholder,
  .plus-button {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 30px;
  }

  .satisfied-client-box p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .satisfied-client-box {
    width: 90px;
    height: 110px;
    margin-left: 10px;
  }

  .avatar-placeholder,
  .plus-button {
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 26px;
  }

  .satisfied-client-box p {
    font-size: 11px;
  }
}
.single_facilities_name li {
  height: 150px; /* Set your desired fixed height */
  
}
.avatar-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  
  margin-left: -12px;
  object-fit: cover;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .avatar-image {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .avatar-image {
    width: 28px;
    height: 28px;
  }
}

.tp-leftarrow,
.tp-rightarrow {
  top: 100%; 
}
/* Default: Desktop view */
.fullwidth_home_two_banner,
.fullwidth_home_two_banner ul,
.fullwidth_home_two_banner ul li {
  height: 90vh !important;
}

/* Mobile: Devices under 768px */
@media (max-width: 767px) {
  .fullwidth_home_two_banner,
  .fullwidth_home_two_banner ul,
  .fullwidth_home_two_banner ul li {
    height: 60vh;
  }
}
@media (max-width: 467px) {
  .fullwidth_home_two_banner,
  .fullwidth_home_two_banner ul,
  .fullwidth_home_two_banner ul li {
    height: 70vh !important;
  }
}

/* Tablets: 768px to 1024px */
@media (max-width: 1024px) {
  .tp-leftarrow,
  .tp-rightarrow {
    top: 95%;
  }
}

/* Large Phones: 480px to 767px */
@media (max-width: 767px) {
  .tp-leftarrow,
  .tp-rightarrow {
    top: 90%;
  }
}

/* Small Phones: below 480px */
@media (max-width: 479px) {
  .tp-leftarrow,
  .tp-rightarrow {
    top: 88%;
  }
}
.hover-reveal .image-wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hover-reveal img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
  opacity: 0; /* hidden initially */
}

.hover-reveal .overlay {
  position: absolute;
  inset: 0;
  background-color: #fe6d6dcc; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000;
  font-size: 16px;
  padding: 20px;
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* Show image on hover */
.hover-reveal:hover img {
  opacity: 1;
}

.hover-reveal:hover .overlay {
  opacity: 0;
}


/* Tablets */
@media (max-width: 1024px) {
  .tp-caption.large_black.sfr {
    font-size: 28px !important;
    line-height: 38px !important;
  }
}

/* Large Phones */
@media (max-width: 767px) {
  .tp-caption.large_black.sfr {
    font-size: 26px !important;
    line-height: 36px !important;
  }
}

/* Small Phones */
@media (max-width: 479px) {
  .tp-caption.large_black.sfr {
    font-size: 16px !important;
    line-height: 34px !important;
  
  }
}
/* Mobile View: Add spacing between caption lines and button */
@media (max-width: 767px) {
  .tp-caption.large_black.sfr {
    display: block;
    margin-bottom: 15px !important; 
  }

  .carousel-caption-inner {
    margin-top: 15px !important; 
  }
}

/* Tablet View */
@media (max-width: 1024px) {
  .fullwidth_home_two_banner .tp-caption:nth-of-type(1) {
    margin-bottom: 18px !important;
  }

  .fullwidth_home_two_banner .tp-caption:nth-of-type(2) {
    margin-bottom: 25px !important;
  }

  .fullwidth_home_two_banner .tp-caption:nth-of-type(3) {
    margin-top: 18px !important;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .fullwidth_home_two_banner .tp-caption:nth-of-type(1) {
    margin-bottom: 16px !important;
  }

  .fullwidth_home_two_banner .tp-caption:nth-of-type(2) {
    margin-bottom: 20px !important;
  }

  .fullwidth_home_two_banner .tp-caption:nth-of-type(3) {
    margin-top: 16px !important;
  }
}
/* Tablet View */
@media (max-width: 1024px) {
  .carousel-caption-inner {
    margin-top: 30px !important;
  }
}

/* Mobile View */
@media (max-width: 767px) {
  .carousel-caption-inner {
    margin-top: 40px !important;
  }
}
.contact_info,
.contact_info li,
.contact_info i,
.contact_info a {
   color: #000 !important;
}

.contact_info h4 {
   font-weight: bold;
   color: #000 !important;
}

@media (max-width: 768px) {
  .about_us {
    display: flex;
    flex-direction: column-reverse;
  }

  .satisfied-client-box {
    margin-bottom: 90px; 
    text-align: center !important;
     
  }
}
.qr-text {
  margin-top: 10px; 
}
.qr-image {
  margin-top: 10px; 
}
.qr-review-box {
  background-color: #8b0000; /* deep red background */
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid #fff;
}



.qr-review-box .qr-text {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.highlighted-qr .qr-image {
  max-width: 250px;
  height: auto;
   margin-bottom: 12px !important;
}
.highlighted-qr .qr-text {
  color: #fff;
  font-weight: bold;
  margin-top: 10px;
}
/* Responsive Adjustments */
@media (max-width: 568px) {
  .qr-review-box {
    margin-bottom: 30px;
    padding: 20px 15px;
    border-radius: 10px;
    width: auto;
    max-width: 320px;
     margin-bottom: 30px;
  
  }

  .highlighted-qr .qr-image {
    max-width: 160px;
    margin-bottom: 10px;
    
  }

  .highlighted-qr .qr-text {
    font-size: 15px;
    margin-top: 8px;
  }

  .qr-review-box .qr-text {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .mobile-margin-bottom {
    margin-top: 80px; /* adjust as needed */
  }
}

@media (max-width: 768px) {
  .bottom{
margin-bottom: 70px !important;
}
}
@media (max-width: 568px) {
  .customer{
margin-bottom: 50px !important;
}
}
@media (max-width: 568px) {
  .container .row{
margin-bottom: 1px !important;
}
}
/* Mobile view: show one facility per row */
@media (max-width: 567px) {
    .facilities_name > .col-lg-3,
    .facilities_name > .col-md-3,
    .facilities_name > .col-sm-3,
    .facilities_name > .col-xs-6 {
        width: 100% !important;  /* full width */
        padding-left: 0;
        padding-right: 0;
           /* spacing between items */
    }

    .single_facilities_name li {
        display: flex;
        flex-direction: column;  /* stack icon above text */
        align-items: center;     /* center horizontally */
        text-align: center;
          /* spacing between items */
    }

    .single_facilities_name li .icon-circle {
        margin-right: 0;
          /* spacing between icon and text */
    }
}
/* Mobile view styles */
@media (max-width: 567px) {
    .welcome_area .single_room_wrapper .room_title h6 {
        margin-bottom: 15px;
        margin-top: -8px;
    }
}
/* Mobile view footer adjustments */
@media (max-width: 567px) {
    .footer_widget {
        text-align: center; /* Center all text */
    }

}
@media (max-width: 567px) {
    .responsive-top-margin {
        margin-top: 20px; /* Center all text */
    }

}

.gst-note {
  font-size: 12px;
  color: #666;
  margin-left: 6px;
  font-style: italic;
}
@media (max-width: 768px) {
  .new {
    font-size: 11px !important;
    color: #888 !important;
    margin-left: 4px !important;
    display: inline-block !important;
    font-style: italic !important;
  }
}
