.valred{
  color:red;
}
.txtcolor:hover{
  color:#9d7e54;
}


.rx-blog-details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
}

/* Card container */
.rx-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.rx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Section Titles */
.sub-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #222;
  position: relative;
}

.sub-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #555;
  margin-top: 6px;
  border-radius: 2px;
}

/* Button Styling */
.rx-btn-two {
  display: inline-block;
  background: linear-gradient(135deg, #131618, #555);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.rx-btn-two:hover {
  background: linear-gradient(135deg, #555, #131618);
  transform: scale(1.05);
}

/* Package Summary List */
.package-summary,
.tour-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-summary li,
.tour-details li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #444;
  font-size: 15px;
}

.package-summary li:last-child,
.tour-details li:last-child {
  border-bottom: none;
}

/* Quick Book link */
.book-link {
  display: inline-block;
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  transition: 0.3s ease;
}

.book-link:hover {
  background: #ddd;
  color: #000;
}

.room-image-main {
  width: 100%;
  height: 400px; /* Adjust based on design */
  object-fit: cover; /* Crop without stretching */
  border-radius: 8px;
}

/* Thumbnail images */
.room-image-thumb {
  width: 100px;  /* Fixed width for thumbnails */
  height: 90px;  /* Fixed height for thumbnails */
  object-fit: cover; /* Keep aspect ratio & crop overflow */
  border-radius: 6px;
  transition: transform 0.3s ease;
}

/* Hover effect for better UI */
.room-image-thumb:hover {
  transform: scale(1.05);
}