/* Apply site font */


.booking-bar {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  margin-top: 0px;
}

.form-control,
.form-select {
  height: 52px;
  border-radius: 10px;
}

.btn-book {
  height: 52px;
  border-radius: 10px;
  font-weight: 600;
  background-color: #ff0000;
  border: none;
}

.btn-book:hover {
  background-color: #d90000;
}

.input-group-text {
  background: transparent;
  border-right: 0;
}

.input-group .form-control {
  border-left: 0;
}

.my-5 {
  margin-top: -32px !important;
  margin-bottom: 3rem !important;
  z-index: 999999;
  display: flex;
  /* width: 100%; */
}


/*  */
.steps-section {
  background: #ffffff;
}

.steps-subtitle {
  color: #ff2c2c;
  font-weight: 500;
  font-size: 14px;
}

.steps-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

/* Card */
.step-card {
  position: relative;
  height: 100%;
  padding: 40px 30px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(160deg, #5fa3ff 0%, #0b3a78 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Step number */
.step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 70px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
}

/* Heading */
.step-heading {
  font-size: 22px;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 25px;
}

/* Icon */
.step-icon {
  margin-bottom: 25px;
}

.step-icon img {
  width: 70px;
}

/* Text */
.step-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/*  */
.reviews-section {
  padding: 90px 20px;
  background: url("../img/home/testimonial-ection.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.reviews-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.reviews-tag {
  color: #ff2d3c;
  font-weight: 600;
  margin-bottom: 10px;
}

.reviews-title {
  font-size: 42px;
  margin-bottom: 70px;
}

/* SWIPER FIX */
.swiper {
  /* padding: 20px 0 80px; */
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

/* CARD STRUCTURE */
.review-item {
  position: relative;
  width: 520px;
}

.red-bg {
  position: absolute;
  top: 40px;
  left: -30px;
  width: 100%;
  height: 100%;
  background: #ff2d3c;
  border-radius: 6px;
  z-index: 0;
}

.review-card {
  position: relative;
  background: #fff;
  color: #333;
  padding: 35px;
  border-radius: 6px;
  z-index: 1;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.quote-mark {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 70px;
  color: rgba(0, 0, 0, 0.05);
}

.review-top {
  display: flex;
  gap: 20px;
  align-items: center;
}

.review-img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

.stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 3px;
}

.review-name {
  margin: 6px 0 0;
  font-size: 22px;
}

.review-text {
  margin-top: 20px;
  line-height: 1.7;
  font-size: 15px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .main {
    padding: 14px;
  }

  .review-item {
    width: 100%;
  }

  .red-bg {
    left: -15px;
    top: 25px;
  }

  .reviews-title {
    font-size: 28px;
  }
}


.cs_pricing_btn {
  background-color: #ffff;
  border-radius: 12px;
}

.service-strip {
  padding: 18px 0;
}

/* each column divider */
.service-item {
  position: relative;
}

.service-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 55px;
  width: 1px;
  background: #dcdcdc;
}

/* service box */
.service-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 600;
  font-size: 20px;
  color: #0c1c39;
  transition: all .3s ease;
  cursor: pointer;
  padding: 10px 5px;
}

.service-box:hover {
  transform: translateY(-3px);
  color: #e60023;
}

/* icon */
.service-icon {
  height: 28px;
}

.service-box span {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

/* MOBILE UX */
@media(max-width:768px) {

  .service-item::after {
    display: none;
  }

  .service-box {
    justify-content: flex-start;
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 10px;
    font-size: 18px;
  }

  .service-item:last-child .service-box {
    border-bottom: none;
  }
}