.hero-section {
  margin-top: 100px;
}

.page-title-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 20px;
  display: flex;
  justify-content: center;
}

.page-title-wrap {
  background-color: #9F1A2D;
  padding: 15px 40px;
  display: inline-block;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.75rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

/* Card */
.experience-card {
  background: #F26B350D;
  border-radius: 10px;
  padding: 15px;
  height: 100%;
  transition: 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

/* Image */
.experience-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
}

/* Title */
.experience-title {
  font-family: var(--font-heading);
  margin-bottom: 10px;
  color: #0C0C0C;
}

/* Text */


/* Responsive tweaks */
@media (max-width: 767px) {
  .experience-title {
    font-size: 20px;
  }
}

.card-style1 {
  --bs-card-cap-bg: #F26B351C;
  --bs-card-bg: #F26B350D;
  --bs-border-width: 0;

}

#faqs {
  --bs-accordion-btn-icon: url('data:image/svg+xml,<svg class="svg-icon" width="42" height="42" aria-hidden="true" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="Currentcolor"><path fill-rule="evenodd" d="M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z"></path></svg>');
  --bs-accordion-btn-active-icon: url('data:image/svg+xml,<svg class="svg-icon" width="42" height="42" aria-hidden="true" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14" fill="%23f26b35"><path fill-rule="evenodd" d="M8 15a.5.5 0 0 0 .5-.5V2.707l3.146 3.147a.5.5 0 0 0 .708-.708l-4-4a.5.5 0 0 0-.708 0l-4 4a.5.5 0 1 0 .708.708L7.5 2.707V14.5a.5.5 0 0 0 .5.5z"></path></svg>');
  --bs-accordion-btn-padding-y: 2rem;
  --bs-accordion-btn-bg: var(--text-dark);
  --bs-accordion-active-color: var(--color-accent);
  --bs-accordion-active-bg: #fff;
}

#faqs .accordion-button {
  font-size: 1.375rem;
  font-family: var(--font-heading);
  font-weight: 500;
}

#faqs .accordion-button:after {
  transform: rotate(135deg);
}

#faqs .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-body {
  padding-top: 0;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  color: #333;
  padding: 30px 0;
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  animation: marquee-scroll 40s linear infinite;
  align-items: center;
}

.marquee-content span.marquee-text {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 40px 0 0;
  line-height: 1;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}


.radio-box input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* 2. Style the label as the 'box' */
.radio-box label {
  display: flex;
  flex-direction: column;
  padding: 15px 25px;
  border: 2px solid #eeeeee;
  background-color: #fff;
  border-radius: 8px;
  /* Box corners */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* 3. Change the box style when the hidden radio is checked */
.radio-box input[type="radio"]:checked+label {
  background-color: #F26B350D;
  border-color: #F26B350D;
  color: var(--color-primary)
}

.custom-radio {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .4);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 2px;
  right: 2px;
}


.radio-box input[type="radio"]:checked+label .custom-radio {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="%23ffffff" viewBox="0 0 24 24"><path d="M9 22l-10-10.598 2.798-2.859 7.149 7.473 13.144-14.016 2.909 2.806z"/></svg>');
}

.hotel-type {
  font-size: 15px;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: fit-content;
}

.qty-btn {
  background: #eee;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  /* Hide arrows */
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}