.breadcrumb {
  padding: 10px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  padding-left: 30px;
  background: linear-gradient(132deg, #614d4d, #f2f2f200);
  z-index: 1;
}

.breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.breadcrumb li {
  font-size: 14px;
  color: #fff;
}

.breadcrumb a {
  color: #fff;
  font-weight: 600;
}

.fleet-banner {
  background-image: url(../../images/fleet/fleet-banner.webp);
  height: 350px;
  z-index: -1;
}

.bg-control::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.514);
  position: absolute;
  top: 0;
  left: 0;
}

h1 {
  font-size: 70px;
  background: linear-gradient(45deg, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
  text-align: center;
}

.banner-text p {
  color: #fff !important;
  margin: 20px 0;
}

.btns-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.btns-wrapper a:nth-of-type(1) {
  background-color: transparent;
  border: 1px solid #fff;
}

.our-services {
  background: linear-gradient(135deg, #CAF0F8, #90E0EF);
}

.services-row,
.location-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-card,
.location-card {
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.services-card:hover {
  transform: translateY(-10px);
}

.services-card .img-box {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  height: 250px;
}

.services-card .img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.3s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.services-card:hover .img-box::before {
  left: 0;
}

.services-card .img-box img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s ease-in-out;
}

.services-card .text-content {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-card h3 {
  font-size: 22px;
  color: #27158f;
}

.services-card p {
  color: #36446a;
  font-weight: 700;
}

.location-card:hover h3,
.location-card:hover p {
  color: #fff;
}

.services-card ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.services-card li {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #CAF0F8;
  padding: 6px 10px;
  border-radius: 30px;
  transition: all 0.4s ease-in-out;
}

.services-card li:hover {
  background-color: #055eff;
  color: #fff;
  transform: translateY(-4px);
}

.services-card .price {
  font-size: 22px;
  font-weight: bold;

}

.services-card .btn {
  width: 100%;
  border-radius: 10px;
  text-align: center;
  justify-content: center;
}

.our-location {
  background-color: #fff;

}

.location-card {
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
}

.location-card i {
  font-size: 30px;

}

.location-card h3 {
  margin: 20px 0;
}

.location-card .icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  background-color: #27158f;
  color: #fff;
  margin: 0 auto;
}

.location-card:hover .icon {
  color: #000;
  position: relative;
  z-index: 1;
  background: #fff;
}

.location-card {
  position: relative;
  overflow: hidden;
}

.location-card .content {
  position: relative;
  z-index: 1;
}

.location-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #27158f;
  position: absolute;
  left: 0;
  bottom: -100%;
  border-radius: 20px;

  transition: all 0.4s ease-in-out;
}

.location-card:hover:after {
  bottom: 0;
}

.location-card:hover:after .content h3,
.location-card:hover:after .content p {
  color: #fff;
}

/* common section css */
.accordion-common .at-tab {
  display: none;
  padding: 15px;

}

.accordion-common .at-title {
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease-in-out;
  border-bottom: 1px solid #ddd;
}

.accordion-common .at-title:hover {
  background-color: #e0e0e0;
}

.accordion-common .at-title:after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: all 0.3s ease;
  font-size: 24px;
}

.accordion-common .at-title.active:after {
  content: "-";
}

.accordion-common .at-item {
  border-radius: 5px;
}

.accordion-common .at-item:nth-last-of-type(1) .at-title {
  border-bottom: none;
}

.accordion-common .at-title .tittle-name {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin: 0;
}

.accordion-common .accordion-header {
  text-align: center;
  background-color: #222222;
  color: white;
  padding: 20px 0;
}

.accordion-common .at-tab h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.accordion-common .at-tab p {
  font-size: 15px;
  list-style: 1.6;
  margin-bottom: 20px;
}

.accordion-common .at-tab ul {
  padding-left: 30px;
}

.accordion-common .at-tab ul li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  list-style: disc;
}

@media (max-width:1140px) {
  .services-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-card .img-box {
    height: 340px;
  }
}

@media (max-width:1024px) {
  h1 {
    font-size: 40px;
  }

  .services-card .img-box {
    height: 250px;
  }
}

@media (max-width:850px) {
  .location-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {
  .services-card .img-box {
    height: 169px;
  }

  .services-card ul {
    flex-wrap: wrap;
  }

}

@media (max-width:580px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .services-row,
  .location-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .services-card .img-box {
    height: auto;
  }

  .services-card ul {
    gap: 10px;
  }
}

.search-filter-sec {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.search-filter-form {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.search-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}

.search-filter-grid .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-filter-grid .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.search-filter-grid .form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8fafc;
}

.search-filter-grid .form-control:focus {
  outline: none;
  border-color: #27158f;
  box-shadow: 0 0 0 3px rgba(39, 21, 143, 0.1);
  background: #fff;
}

.search-filter-grid .form-group-btn {
  display: flex;
  gap: 10px;
  flex-direction: row;
}

.search-filter-grid .btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-filter-grid .btn:first-child {
  background: #27158f;
  color: #fff;
  border: none;
}

.search-filter-grid .btn:first-child:hover {
  background: #1a0d6b;
}

.search-filter-grid .btn-reset {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  text-decoration: none;
}

.search-filter-grid .btn-reset:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 16px;
  grid-column: 1 / -1;
}

.no-results p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .search-filter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .search-filter-grid {
    grid-template-columns: 1fr;
  }

  .search-filter-grid .form-group-btn {
    flex-direction: column;
  }

  .search-filter-grid .btn {
    width: 100%;
  }
}