

.slide-container{
    max-width: 1120px;
    width: 100%;
    padding: 40px 0;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
  }
  .card{
    border-radius: 25px;
    background-color: #FFF;
  }
  .image-content,
  .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }
  .image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
  }
  .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070F4;
    border-radius: 25px 25px 0 25px;
  }
  .overlay::before,
  .overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070F4;
  }
  .overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #FFF;
  }
  .card-image{
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #FFF;
    padding: 3px;
  }
  .card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070F4;
  }
  
  .swiper-navBtn{
    color: #e98039;
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: #e98039;
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
  }
  .swiper-button-prev{
    left: 0;
  }
  
  .swiper-pagination-bullet{
    background-color: #e98039;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: #0d8097;
  }

  .input-group {
    position: relative;
}

.input-group .input-group-text {
    position: absolute;
    left: 15px; /* Move the icon to the right side */
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #aaa;
    pointer-events: none; /* Ensures clicks focus the input */
    z-index: 10; /* Ensures icon stays above the input field */
}

  .on-demand-filter {
    background-color: #fff;
    border: 1px solid black;
    padding: 10px 10px 10px 40px;
    width: 100%;
    border-radius: 10px;
    outline: none;
    box-shadow: none;
  }

  .on-demand-filter:focus {
    background-color: #fff;
    border: 1px solid black;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }

  
  
  @media screen and (max-width: 768px) {
    .slide-content{
      margin: 0 20px;
    }
    .swiper-navBtn{
      display: none;
    }
  }

  @media screen and (max-width: 767px) {
    .on-demand-wrp {
        padding: 0;
        justify-content: center !important;
    }
    .on-demand-wrp #viewAllBtn {
       display: none;
    }
  }
