/* hero section styling */
img {
  width: 100%;
}
.hero-section {
  background: url("../Images/main-bg.avif") center/cover no-repeat;
  height: 100%;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* overlay color */
}
.main-head {
  font-size: 45px;
  span {
    color: #fdb813;
    background-color: #ffffff;
    font-size: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 5px 25px;
  }
}
/* hero section styling */
/* TAB SECTION */
.cab-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 25px;
}

.nav-pills .nav-link {
  font-weight: 600;
  color: #6c757d;
}
.nav-pills .nav-link.active {
  color: black;
  background: none;
  border-bottom: 3px solid #fdb813;
  border-radius: 0;
}
.input-box {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 12px;
}
.search-btn {
  background:#fdb813;
  color: #000;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px;
  border: none;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: black !important;
  background-color: #fff !important;
  font-size: 18px;
  font-weight: 700;
}
.book-btn {
  background-color:#fdb813;
  font-weight: 700;
}
.book-btn:hover {
  transform: scalex(1.08);
  background-color: #212529;
}
.price-btn {
  font-weight: 700;
  background-color: transparent;
  color: #fff;
}
.price-btn:hover {
  background-color: #6b7280;
  opacity: 0.8;
  color: #ffff;
}

/* service sECTION STYLING */
.service-card {
  border-radius: 16px;
  transition: 0.4s;
  background-color: #ffffff;
}
.service-icon {
  background-color: #e9aa1652;
  color: #fff;
}
.service-head {
  font-size: 20px;
  font-weight: 700;
}
.service-para {
  line-height: 1.625;
  color: #6b7280;
}
.service-card:hover {
  transform: translate3d(0, -15px, 20px);
  box-shadow: 0 1px 20px 1px rgba(58, 57, 57, 0.271);
}
.service-card:hover .service-icon {
  background-color:#fdb813;
  color: #fff;
}
.service-card:hover .service-head {
  color:#fdb813;
}

.taxi-card {
  transition: 0.4s;
  background-color: #ffffff;
}

.taxi-card:hover {
  transform: translate3d(0, -1px, 30px);
  box-shadow: 0 1px 15px 5px #21252917;
}
.taxi-btn {
  background-color: #6b7280;
}
.taxi-btn:hover {
  color: #fff;
  background-color: #fdb813;
}
.taxi-image {
  overflow: hidden;

  height: 200px;
}
.taxi-image img {
  transition: 1s;
}

.taxi-card:hover .taxi-image img {
  transform: scale(1.1);
}

.questions-container {
  background-color: #f9fafb;
  padding-bottom: 3rem;
}

.questions-section {
  max-width: 1200px;
  margin: auto;
  padding-top: 4rem;
  width: 100%;

  h3 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin: 0px 0px 18px;
  }
}

.card-section {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #ffffff;
  /* padding: 0px 20px; */
  margin: 0px 30px;
  border: none;
}

.accordion-custom .card-section {
  border-bottom: 1px solid #ffffff;
  /* padding: 12px 0; */
  border: none;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.accordion-custom .card-header {
  cursor: pointer;
  font-weight: 600;
}

.accordion-custom .card-header a {
  font-size: 18px;
  text-decoration: none;
  display: block;
  color: #111827;
}

.accordion-custom .card-body {
  display: none;
  padding: 10px 25px;
  color: #4b5563;
}

.accordion-custom .card-header[aria-expanded="true"] a::after {
  content: " −";
  float: right;
}

.accordion-custom .card-header[aria-expanded="false"] a::after {
  content: " +";
  float: right;
}

.card-header,
.card-body {
  border: 1px solid rgba(0, 0, 0, 0.101);
  p {
    font-size: 16px;
  }
}

.card-header {
  padding: 12px 20px;
  font-size: 18px;

  a {
    color: #e08458;
  }
}

.customer-review-section {
  background-color: #f9fafb;
  min-height: 290px;
  transition: 0.5s;
  border-radius: 15px;
}

.customer-review-section:hover {
  transform: translate3d(0, -1px, 10px);
  box-shadow: 0 1px 5px 1px rgba(58, 57, 57, 0.271);
}
.star {
  color: rgb(255, 191, 0);
}
.icon {
  background-color: #e6a10090;
}
.info-section:hover .icon {
  background-color:#fdb813;
  color: #ffffff;
  transition: 1s;
}
.info-section:hover .why-head {
  color:#fdb813;
}
.why-image-section {
  box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.321);
  transition: 2s;
}
.why-image-section:hover {
  transform: translate3d(0, -10px, 20px);
}
.line {
  width: 100%;
  background-color:#fdb813;
  height: 5px;
}
.taxi-card:hover .line {
  background-color: #212529;
}
