/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/



   
	<style>


    
   
    /* Feature List Styling */
    .feature-list {
      list-style: none;
      padding: 0;
      color: #ddd;
      margin: 15px 0 20px;
      font-size: 0.9rem;
    }

    .feature-list li {
      margin-bottom: 10px;
    }

    /* Button Styling */
    .btn-primary {
      background-color: #b71c1c;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1rem;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .btn-primary:hover {
      background-color: #ff4b4b;
    }

    .btn-outline-primary {
      background-color: transparent;
      border: 1px solid #b71c1c;
      color: #b71c1c;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .btn-outline-primary:hover {
      background-color: #b71c1c;
      color: #fff;
    }

    /* Vertical Divider */
    .divider {
      width: 0.3px;
      background-color: none;
      margin: 0 10px;
    }


	
	
	
	
	
	
	h4, .h4 {
  font-weight: 300;
}

    .section-column-left {
      max-width: 0px;
    }

    .excursion-image {
      width: 100%;
      height: auto;
      max-height: 600px;
      object-fit: cover;
     
      border-radius: 4px;
      transition: opacity 0.9s ease-in-out;
      opacity: 1;
    }

    /* Fade-in animation */
    .fade-in {
      opacity: 0;
    }

    /* List Styling */
    .excursion-list .list-group-item {
      background-color:#fdf6f2;
      
      color:#212529;
      border-radius: 5px;
      margin-bottom: 10px;
      transition: background-color 0.3s, color 0.3s, transform 0.3s;
    }

    .excursion-list .list-group-item h5 {
      color: #212529;
    }

    /* Hover Effect */
    .excursion-list .list-group-item:hover {
      background-color: #cb8161;
      color: #212529;
      transform: scale(1.05);
    }

    .excursion-list .list-group-item:hover h5,
    .excursion-list .list-group-item:hover p {
      color: #212529;
    }

    /* Active Item Style */
    .excursion-list .list-group-item:active {
      background-color: #cb8161;
      color: #212529;
    }
    
    
     /* Rotation image css */
    
    .image-container {
      position: relative;
      width: 500px; /* Adjust the width as needed */
      height: 500px; /* Adjust the height as needed */
      margin: 0 auto;
    }

    /* Background image with rotation */
    .background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      animation: rotate 20s linear infinite;
      z-index: 1;
      opacity: 0.7; /* Slightly dim the background */
    }

    /* Foreground image (static) */
    .foreground-image {
      position: relative;
      width: 80%; /* Adjust size relative to the container */
      height: auto;
      margin: 10% auto; /* Center it within the container */
      z-index: 2;
      border-radius: 8px;
      display: block;
    }

    /* Keyframes for rotation */
    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
    
  .card-body {
  background-color: #cb8161; 
  color: #212529; 
  
 
  
}

  .card-body-review {
  background-color: #fdf6f2; 
  color: #212529; 
  height:550px;
 
  
}


/* Style the accordion link */
.custom-accordion-style-1 > .card .card-header a {
    position: relative;
    font-family: poppins, sans-serif;
    background-color: #ffffff;
    transition: ease background-color 300ms, ease color 300ms;
    padding-right: 40px; /* Add space for the icon on the right */
    display: inline-block;
    width: 100%; /* Ensures the entire header area is clickable */
    text-align: left; /* Keeps text aligned to the left */
}

/* Style for the '+' icon */
.custom-accordion-style-1 > .card .card-header a:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 15px; /* Position the icon close to the right edge */
    font-size: inherit;
    font-weight: inherit;
    transform: translateY(-50%) rotate(0deg); /* Center vertically */
    transform-origin: 50% 50%;
    transition: transform 300ms ease;
}

/* Rotate icon when expanded */
.custom-accordion-style-1 > .card .card-header a.collapsed:after {
    transform: translateY(-50%) rotate(0deg); /* Icon in default state */
}

.custom-accordion-style-1 > .card .card-header a:not(.collapsed):after {
    transform: translateY(-50%) rotate(45deg); /* Rotate icon to 'X' when open */
}

/* Card body background and no border-radius */
.card.bg-primary .card-body {
    background-color: ##cb8161; /* Background color of card body */
    border-radius: 0; /* Remove rounded corners */
}

/* Accordion header styling */
.custom-accordion-style-1 > .card .card-header {
    background-color: white; /* Background color of accordion header */
    border-radius: 0; /* No rounded corners */
    padding-right: 15px; /* Optional: Ensure padding on the right to match icon spacing */
}

/* Remove card border radius */
.custom-accordion-style-1 > .card {
    border-radius: 0 !important; /* Remove rounded corners */
}

/* Optional: Customize active or hover states */
.custom-accordion-style-1 > .card .card-header a:hover,
.custom-accordion-style-1 > .card .card-header a:focus {
    color: #b71c1c; /* Color change on hover/focus */
}


/* Ensure the question section width matches the container */
.question-section {
    width: 100%; /* Ensure it uses the full width of its container */
    padding: 0; /* Remove any extra padding */
    margin: 0; /* Remove any extra margin */
}

/* Optional: Override Bootstrap container padding if needed */
.container.question-container {
    max-width: 100%; /* Make the container take the full width */
    padding: 0 15px; /* Adjust padding as needed */
}

.accordion .card-header {
  background-color: white; 
  border: none;
  border-radius:unset;
}

.accordion .card {
  background-color: #cb8161; 
  border-radius: 0; 
  border: none; 
  margin:15px;
}


.accordion .card-header h5 {
  color: #333; 
  margin:17px;
}


@media (max-width: 767.98px) { /* Target mobile screens */
    .plan-card {
        margin-bottom: 20px; /* Adjust as needed for desired gap */
    }
}


/* Center text and images on mobile */
@media (max-width: 767.98px) {
    .section .block-widget-wrap .row {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align items */
        text-align: center; /* Center text */
    }
    
    .intro-wrap h1,
    .intro-wrap p {
        text-align: center; /* Center align text for headers and paragraphs */
    }
}


.background-image, .foreground-image {
    max-width: 100%; /* Make images responsive */
    height: auto;
    display: block;
}









/* Container Styling */
.price-container {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: Lato, sans-serif;
  align-items: flex-start;
}

/* Image Styling */
.price-container img {
  width: 257px;
  height: 157px;
  border-radius: 8px;
}

/* Room Info Styling */
.room-info {
  flex-grow: 1;
}

.room-info h2 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.room-info p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* Room Details */
.room-details {
  font-size: 0.9rem;
  color: #333;
  margin-top: 1rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
}

.room-details p {
  margin-bottom: 0.5rem;
}

/* Price and Booking */
.price-section {
  text-align: right;
  font-size: 1.2rem;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5px;
  margin-top: auto; /* Pushes to the bottom right in desktop */
}

.price {
  font-size: 1.4rem;
  font-weight: 400;
}

.price-note {
  font-size: 0.8rem;
  color: #888;
}

.book-button {
  background-color: #4a4a4a;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 35px;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.book-button:hover {
  background-color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* Stack elements vertically */
  .price-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Make image full-width */
  .price-container img {
    width: 100%;
    height: auto;
  }

  /* Center align text for Room Info and Price */
  .room-info, .price-section {
    width: 100%;
    text-align: center;
  }

  /* Center the Price section and make button full-width */
  .price-section {
    align-items: center;
    margin-top: 20px; /* Add space between room info and price section */
  }

  .book-button {
    width: 100%;
    max-width: 200px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  /* Control button size between tablet and small desktop screens */
  .book-button {
    width: 150px;
    max-height:90px;
    max-width: 150px; /* Restrict button width on medium screens */
    padding:5px;
  }
}

@media (min-width: 991px) and (max-width: 1400px) {
  /* Control button size between tablet and small desktop screens */
  .book-button {
    width: 150px;
    max-height:90px;
    max-width: 150px; /* Restrict button width on medium screens */
    padding:5px;
  }
}







/* Container Styling */
.v-tab {
  display: flex;
  width: 100%; /* Make tab component full-width */
}

.v-tab_tab-head {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 32px;
  width: 160px; /* Set a specific width for the tab headers */
}

.v-tab_tab-head li {
  margin: 0 0 10px 0;
  cursor: pointer;
  padding: 0px 0%;
  height: 32px;
  line-height: 31px;
  color: #333;
  width: 100%;
}

.v-tab_tab-head li:hover {
  background-color: #f5f5f5;
  color: #000;
}

.v-tab_tab-head li.active {
  border-right: 3px solid #94399e;
  background-color: #fff;
  color: #94399e;
}

.v-tab_container {
  border-left: 1px solid #ccc;
  width: calc(100% - 200px); /* Adjust container width to fill remaining space */
  min-height: 132px;
}

.v-tab_content {
  padding: 10px 20px;
  display: none;
}

/* Demo styles */
body {
  padding: 5px;
  
  font-family: 'Open Sans', sans-serif;
}

.v-tab_content ul {
  padding-left: 20px; /* Adjust padding for list indent */
  margin-top: 10px;
}

.v-tab_content ul li {
  margin-bottom: 8px; /* Space between list items */
}





  </style>