   .banner-img {
    width: 100%;
    height: 550px; /* Let it adjust height automatically */
    display: block;
    margin-top: 70px;
    
}

    .search-box-wrapper {
        position: absolute;
        bottom: -90px; /* Push it a bit lower */
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        z-index: 10;
    }

      .section-title h2 {
        font-weight: 700;
        color: rgb(245, 138, 50);
        font-size: 2rem;
        /* border-bottom: 2px solid rgb(245, 138, 50); */
        display: inline-block;
        padding-bottom: 6px;
    }

 

    .input-group {
        height: 45px;
    }

    .input-group .form-control,
    .input-group .input-group-text,
    .input-group select {
        height: 45px;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .selectpicker {
        height: 45px !important;
    }

    button.btn {
        height: 45px;
        white-space: nowrap;
    }

    @media (max-width: 767.98px) {
        .search-box-wrapper form .col-md-5,
        .search-box-wrapper form .col-md-2,
        .search-box-wrapper form .col-md-3,
        .search-box-wrapper form .col-md-4,
        .search-box-wrapper form .col-md-1 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        #swapBtn {
            margin: 10px 0;
        }
    }

    .text-shadow {
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

.search-box-wrapper {
    position: absolute;
    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    z-index: 10;
   
}

.search-card {
    background-color: var(--my-bg-color);
    padding: 25px 30px;
    border-radius: 20px;
     border: 1px solid orange;
    color: black;
}

.search-card .form-label,
.search-card .input-group-text,
.search-card .form-select,
.search-card .form-control,
.search-card i {
    color: black;
}

.search-card .input-group-text {
    background-color:  var(--my-text-color);;
}

.search-btn {
    background-color: black;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.search-btn .bi-search {
    color: white;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: white;
    color: black;
}

.search-btn:hover .bi-search {
    color: black;
}

.today-btn,
.tomorrow-btn {
    border: 1px solid black;
    color: black;
}

.search-card select,
.search-card input {
    height: 45px;
}

.input-group {
    height: 45px;
}

button.btn {
    height: 45px;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .search-box-wrapper form .col-md-2,
    .search-box-wrapper form .col-md-1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    #swapBtn {
        margin: 10px 0;
    }
}
.ab-btn{
     background-color:  var(--my-bg-color);
}
.testimonial-section .carousel-item {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
 .horizontal-scroll {
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE */
    scrollbar-width: none;     /* Firefox */
    padding-left: 10px;
    padding-right: 10px;
  }

  .horizontal-scroll::-webkit-scrollbar {
    display: none;             /* Chrome, Safari */
  }

  .route-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 1rem; /* ⭐ Add space below card */
}

.route-card img {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.route-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}


.horizontal-scroll {
  overflow: hidden;
  position: relative;
}

.scroll-inner {
  display: flex;
  gap: 1rem;
  animation: scrollRoutes 30s linear infinite;
}

.scroll-inner:hover {
  animation-play-state: paused; /* Pause on hover */
}

@keyframes scrollRoutes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.route-card {
  background: #fff;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
  min-width: 250px;
}

.route-card:hover {
  transform: translateY(-5px);
}

.ab-btn {
  background-color: var(--my-bg-color);
  color: #fff;
  transition: background-color 0.3s ease;
}
.icon-color{
  color: var(--my-bg-color);
}
.ab-btn:hover {
  background-color: #cc5c00;
  color: #fff;
}

/* Mobile: vertical layout */
@media (max-width: 768px) {
  .scroll-inner {
    flex-direction: column;
    animation: none;
  }

  .route-card {
    width: 100% !important;
    min-width: 100% !important;
  }

  .horizontal-scroll {
    overflow-x: hidden;
  }
}

  
  @media (max-width: 767.98px) {
        .hero-banner {
            min-height: 550px; /* ⬅️ increased from 300px to 450px */
            position: relative;
        }

        .search-box-wrapper {
            margin-top: 0 !important;
            padding-top: 3.5rem !important; /* ⬅️ extra push down */
        }
    }
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 60% 60%; /* smaller arrow inside */
    background-color: #343a40; /* dark background */
    border-radius: 50%;
}

