* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

.container {
  width: 90%;
  margin: 10 auto;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.login-btn {
  background-color: #ff9900;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.main-section {
  margin-top: 50px;
}

.trip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviews span {
  color: #f7c40f;
  font-size: 1.5rem;
}

.reviews .para {
  color: #888;
}


/* Container holding the heading and boxes */
.inclusions-container {
margin-top: 10px;
}

.inclusions-top {
display: flex;
flex-wrap: wrap;
justify-content: space-around; /* Spread out evenly */
gap: 10px; /* Ensure some space between items */

}

/* Individual inclusion boxes */
.inclusion-item {
display: flex;
align-items: center;
justify-content: center;
background-color: #e6f7ff;
padding-left: 10px;
padding-right: 10px;
border-radius: 8px;
width: 150px; /* Smaller width for compact look */
height: 50px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Slight shadow */
font-size: 14px; /* Smaller font size */

}

/* Style the icon and text within the box */
.inclusion-item i {
font-size: 18px; /* Adjust icon size */
margin-right: 8px; /* Space between icon and text */
}

.inclusion-item span {
display: inline-block;
font-size: 14px; /* Text smaller to match box */
}

/* Responsive mobile adjustments */
@media (max-width: 768px) {
.inclusions-top {
    justify-content: center;
    flex-wrap: wrap; /* Ensure wrapping for smaller screens */
}

.inclusion-item {
    width: 120px; /* Smaller boxes for mobile */
    height: 45px;
    margin: 8px;
}

.inclusion-item i {
    font-size: 16px; /* Smaller icon size */
}

.inclusion-item span {
    font-size: 12px; /* Smaller text size */
}
}

.pricing-section {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pricing {
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  flex: 1;
}

.pricing h2 {
  color: #4CAF50;
  font-size: 2.5rem;
  margin: 10px 0;
}

.book-btn {
  background-color: #ff9900;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
}

.occupancy-pricing {
  text-align: left;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  margin-left: 25px;
}

.batch-section {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.batch {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.batch:last-child {
  border-bottom: none;
}

.status {
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.full {
  background-color: #ff4d4d;
  color: white;
}

.available {
  background-color: #28a745;
  color: white;
}

.tabs {
  text-align: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04); /* Lighter shadow */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.3s ease; /* Smooth transition for mobile */
}

.tab-btn {
  padding: 8px 15px;
  margin: 3px;
  border: none;
  cursor: pointer;
  background-color: #e9ecef;
  color: #000;
  border-radius: 4px;
  font-size: 14px;
  flex: 1 0 120px;
  max-width: 120px;
  transition: all 0.3s ease; /* Smooth transition for mobile */
}

.tab-btn:hover {
  background-color: #007bff;
  color: #fff;
}

.tab-content {
  display: none;
  padding: 15px;
  background-color: #f8f9fa;
  margin-top: 10px;
}

.actions {
  margin-top: 15px;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .tabs {
      flex-direction: row;
      justify-content: flex-start; /* Align buttons to start on mobile */
      background-color: transparent; /* Remove background */
      padding: 0; /* Remove padding */
      box-shadow: none; /* Remove shadow */
      border-radius: 0; /* Remove border-radius */
  }

  .tab-btn {
      width: auto; /* Full width for each button */
      max-width: none; /* Remove width limitation for smaller screens */
      margin: 0; /* Remove margin between buttons */
      padding: 10px 10px; /* Adjust padding */
      font-size: 12px; /* Smaller font size for mobile */
      border-radius: 0; /* Remove button border-radius */
      background-color: transparent; /* Remove button background */
      border-bottom: 2px solid transparent; /* Add an underline for active effect */
  }

  .tab-btn:hover {
      background-color: transparent; /* Remove hover background */
      border-bottom: 2px solid #007bff; /* Add hover underline */
      color: #007bff;
  }
}

@media (max-width: 480px) {
  .tab-btn {
      padding: 8px ; /* Reduce padding for very small screens */
      font-size: 12px;
  }
}




.inclusions-exclusions {
  display: flex;
  justify-content: space-between;
  padding-left: 25px;
  padding-right: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  
  gap: 20px; /* Adds some space between columns */
}

.inclusions, .exclusions {
  width: 48%; /* Adjusts the width for a better look */
}

.inclusions ul, .exclusions ul {
  list-style: none;
  padding: 0;
}

.inclusions li, .exclusions li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* Check and cross icons for inclusions/exclusions */
.green-check {
  color: #28a745; /* Green check icon for inclusions */
  margin-right: 10px;
  font-size: 18px;
}

.red-cross {
  color: #dc3545; /* Red cross icon for exclusions */
  margin-right: 10px;
  font-size: 18px;
}

/* Headings */
.inclusions hed3, .exclusions hed3 {
  font-size: 20px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
  .inclusions-exclusions {
      flex-direction: column; /* Stack sections on top of each other */
  }
  .inclusions, .exclusions {
      width: 100%;
  }
}

@media (min-width:992px) and (max-width:1200px) {

}
@media (min-width:1201px) and (max-width:1320px) {

}

/* Action buttons container */
.action-buttons {
display: flex;
justify-content: space-around;
align-items: center;
padding: 15px;
background-color: #f7f7f7;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}

/* WhatsApp button */
.whatsapp-btn {
background-color: #037e30;
color: white;
padding: 10px;
border-radius: 12px;
text-align: center;
font-size: 15px;
display: inline-block;
transition: background-color 0.3s ease;
}



/* Send Query and Get PDF buttons */
.send-query-btn, .get-pdf-btn {
background-color: transparent;
border: 2px solid #007bff;
color: #007bff;
padding: 10px 20px;
border-radius: 25px;
font-size: 12px;
text-decoration: none;
transition: background-color 0.3s ease, color 0.3s ease;
}

.send-query-btn:hover, .get-pdf-btn:hover {
background-color: #007bff;
color: white;
}

/* Popup form styling */
.popup-form {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 999;
}

.popup-content {
background-color: white;
padding: 20px;
border-radius: 12px;
max-width: 400px;
margin: 100px auto;
position: relative;
}

.close-popup {
position: absolute;
top: 10px;
right: 20px;
font-size: 24px;
cursor: pointer;
}

.popup-content h3 {
margin-bottom: 20px;
}

.popup-content label {
display: block;
font-weight: bold;
margin-bottom: 5px;
}

.popup-content input, .popup-content textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border-radius: 8px;
border: 1px solid #ccc;
}

.submit-query-btn {
background-color: #007bff;
color: white;
padding: 10px 20px;
border: none;
border-radius: 8px;
cursor: pointer;
}

.submit-query-btn:hover {
background-color: #0056b3;
}


.hedd{
margin-bottom: 20px;
}
.related-trips {
text-align: center;
width: 100%; /* Full width for container */
margin-bottom: 20px;
margin: 20px auto; /* Auto margins for left and right centering */
}

.trip-cards-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px; /* Adds space between the cards */
max-width: 1200px; /* Limit the maximum width for better centering */
margin: 0 auto; /* Center the trip card container horizontally */
margin-bottom: 20px;
}

.trip-card {
position: relative;
flex-basis: calc(25% - 20px); /* Dynamic width for 4 cards, with space between them */
height: 200px;
background-size: cover;
background-position: center;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.trip-card:hover {
transform: translateY(-10px);
}

.overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
color: #fff;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
padding: 15px;
}

.trip-info-center {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
}

.trip-info-center h3 {
font-size: 20px;
text-align: center;
color: white;
}

.trip-info-bottom {
display: flex;
justify-content: space-between;
align-items: center;
}

.trip-info-bottom .price {
font-size: 20px;
color: #ffffff;
font-weight: bold;
}

.trip-info-bottom .price strike {
color: #999;
margin-right: 8px;
}

.details-btn {
padding: 8px;
background-color: #ffffff;
color: rgb(0, 0, 0);
border: none;
border-radius: 16px;
text-decoration: none;
text-align: center;
cursor: pointer;
transition: background-color 0.3s ease;
}

.details-btn:hover {
background-color: #dee3e7;
}

/* Responsive layout */
@media (max-width: 768px) {
.trip-card {
    flex-basis: calc(48% - 20px); /* Two cards per row for tablet-sized screens */
}
}

@media (max-width: 480px) {
.trip-card {
    flex-basis: 100%; /* Full width for each card on smaller screens */
}
}
/* oldcss */


.ttcontainer {
  display: flex;
  justify-content: space-between;
  max-width: 1200px; /* Reduce this slightly to account for the fixed right section */
  margin: 20px auto;
  padding: 10px 20px; /* Add horizontal padding to make space for fixed element */
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);

  position: relative; /* Keeps the left section inside the container */
}

.risection {
  width: 29%;
  position: sticky;
  top: 20px;
  right: 80px; /* Adjust right distance slightly */

  padding: 20px;
 
}

.lesection {
  width: 70%;
  padding-right: 20px;
  overflow-y: auto;
}

.hed1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.rating {
  margin-bottom: 20px;
  font-size: 16px;
}

.details-section-top {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}
/* Trip Info Container */
.trip-info-top {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

/* Individual Info Items */
.info-item-top {
text-align: center;
background-color: #f9f9f9;
padding: 10px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
flex: 1; /* Make items take up equal space */
margin: 10px;
box-sizing: border-box; /* Ensure padding doesn't break layout */
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 600px) {
.trip-info-top {
    flex-direction: column; /* Stack items vertically on smaller screens */
}

.info-item-top {
    width: 90%; /* Make the boxes smaller on mobile screens */
    margin: 10px auto; /* Center the boxes with auto margin */
}
}
.accor-p{
  font-size: 1rem;
}



/* .inclusions {
  margin-bottom: 20px;
}

.inclusions .inclusion-item {
  margin: 5px 0;
} */



/* .action-btn {
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  border-radius: 8px;
} */


/* Price box container */
.price-box {
  background-color: #e9e5e5;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  text-align: center;
  width: 330px;
  
 
  position: relative;
}

/* "Starting From" text */
.price-box .starting-from {
  font-size: 14px;
  color: #555555;
  margin-bottom: 5px;
}

/* Offer badge styling */
.offer-badge {
  background-color: #ffd966;
  color: #ff7043;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 15px;
  margin-left: 10px;
}

/* Flexbox container for prices and label */
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

/* Discounted price */
.discounted-price {
  color: #007bff;
  font-size: 25px;
  font-weight: bold;
  margin: 0 10px; /* Space between prices */
}

/* "Per Person" label */
.per-person {
  background-color: #e0f0ff;
  color: #555555;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 15px;
}

/* Book Now button */
.book-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 123, 255, 0.3);
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #0056b3;
}

.pricing {
  margin-bottom: 20px;
}

.pricing .para1 {
  margin: 5px 0;
}

.batches {
  background-color: white;
  padding: 10px;
  border-radius: 8px;
}

.batches .hed3 {
  margin-bottom: 10px;
}

.batches div {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.batches div:last-child {
  border-bottom: none;
}

.status {
  color: #ff7043;
  font-weight: bold;
}

 
/* Make the layout responsive for smaller screens */
@media (max-width: 768px) {
  .ttcontainer {
      flex-direction: column;
  }

  .lesection, 
  .risection {
      width: 100%;
      margin-right: 0;
      padding-right: 0;
      margin-bottom: 20px; /* Adds space between sections */
  }

  .riection {
      position: relative; /* No fixed positioning on small screens */
      top: auto;
      right: auto;
  }
}

#itinerary {
  background-color: #ebeaea;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.itinerary-item {
  margin-bottom: 15px;
}

.accordion-btn {
  background-color: #ffffff;
  border: none;
  padding: 12px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 1rem;
  display: flex;
  justify-content: space-between; /* Align text and icon at the ends */
  align-items: center;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
}

.accordion-btn.active {
  background-color: #989a9b; 
}

.accordion-content {
  display: none;
  padding: 12px;
}

.accordion-content .para1 {
  margin-bottom: 10px;
  line-height: 1.6;
}

.flex_box li {
  list-style: none;
  padding-left: 0;
}

/* Styling for the day info and toggle button */
.day-info {
  display: flex;
  align-items: center;
}

.day-number {
  background-color: #007bff;
  color: white;
  font-size: 10px;
  padding: 10px 15px;
  border-radius: 50%;
  margin-right: 15px;
  min-width: 50px;
  text-align: center;
}

.day-title {
  font-weight: bold;
  font-size: 18px;
}

.toggle-icon {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

.accordion-btn.active .toggle-icon {
  color: #007bff;
}

/* Scroll Button Styling */
.scroll-btn {
  display: none; /* Initially hidden */
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.3s ease;
}

.scroll-btn:hover {
  background-color: #0056b3;
}
#faqs {
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-top: 20px;
}

#faqs .hed2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  background-color: #ffffff; /* Change color as needed */
  color: rgb(0, 0, 0);
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 18px;
  
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #989a9b; /* Darker shade on hover */
}

.faq-answer {
  padding: 15px;
  display: none;
  background-color: white;
  border: 1px solid #ddd;
 
 
}

.faq-answer .para1 {
  margin: 0;
  font-size: 16px;
}

/* FAQ accordion styles */
.faq-question.active {
  background-color: #a0a0a0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .faq-question {
      font-size: 16px;
      padding: 12px;
  }
}

/* Enquiry Button */
.enquire-btn {
background-color: #ff6600;
}

/* Enquiry Box */
.enquiry-box {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 600px; /* Limit max width */
margin: auto; /* Centering */
}

/* Headings and Paragraphs */
.enquiry-box .hed2 {
color: #004085;
margin-bottom: 10px;
}

.enquiry-box .para1 {
color: #333;
margin-bottom: 20px;
}

/* Form Layout */
.enquiry-form {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

/* Form Group */
.form-group {
width: 100%; /* Full width on mobile */
}

@media (min-width: 600px) {
.form-group {
    width: 48%; /* Half width on larger screens */
}
}

/* Input Styles */
.form-group input, 
.form-group textarea {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}

.form-group textarea {
height: 80px;
}

/* Phone Input */
.phone-input {
display: flex;
width: 100%;
}

.phone-input select {
padding: 10px;
border-radius: 5px 0 0 5px;
border: 1px solid #ccc;
}

.phone-input input {
flex-grow: 1;
border-radius: 0 5px 5px 0;
}

/* Checkbox Group */
.checkbox-group {
width: 100%;
display: flex;
align-items: center;
margin-bottom: 10px; /* Add margin for spacing */
}

.checkbox-group input {
margin-right: 10px;
}

/* Submit Button */
.submit-btn {
background-color: #ff6600;
color: white;
padding: 12px 30px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 20px;
width: 100%; /* Full width */
}

.submit-btn:hover {
background-color: #e65c00;
}

/* Error and Success Messages */
.errorWrap, .succWrap {
padding: 10px;
margin-bottom: 20px;
border-radius: 5px;
color: white;
}

.errorWrap {
background-color: #d9534f; /* Red for errors */
}

.succWrap {
background-color: #5cb85c; /* Green for success */
}
