.btn-marg{
      margin-bottom: 50px!important;
}
a{
  text-decoration: none!important;
}
.list-group {
        max-height: 200px;
        overflow-y: auto;
        border: 1px solid #e5e7eb;
        border-radius: 0.5rem;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      }
      .list-group-item {
        cursor: pointer;
        padding: 0.75rem;
        transition: background-color 0.2s;
      }
      .list-group-item:hover {
        background-color: #f3f4f6;
      }
      .list-group-item h5 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
      }
      .list-group-item p {
        margin-bottom: 0.25rem;
        font-size: 0.875rem;
      }
      .list-group-item small {
        color: #6b7280;
        font-size: 0.75rem;
      }
      .btn-primary {
            background: linear-gradient(to right, #1eaf47, #46eb9c);
        transition: transform 0.2s, box-shadow 0.2s;
            border: none!important;
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      }
      .swiper-slide img {
        transition: filter 0.3s;
      }
      .swiper-slide img:hover {
        filter: grayscale(0);
      }
      .fixed-button {
        z-index: 1000; /* Higher z-index to ensure it stays above sections */
        position: fixed;
      }
      .font-semibold{
            font-size: 20px;
      }
      .space-x-4{
        display: flex;
        flex-direction: column;
      }
      .bottom-mobile{
  padding: 1rem!important;
}

@media (max-width: 480px) {
               .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 24px!important;
    position: relative;
    left: -14px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    position: relative;
    font-size: 20px!important;
    right: -14px;
}
.btn-marg{
      padding: 0px;
}
.btn-primary{
      font-size: 22px!important;
}
.bottom-mobile{
  padding: 1rem!important;
}
.py-16 {
    padding-top: 2rem!important;
    padding-bottom: 3rem!important;
}
.pad-bottom{
      margin-bottom: 3rem!important;
}
        }

  /* Fixed button at bottom of mobile screen */
  .fixed-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1eaf47; /* golden-yellow */
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    text-decoration: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
  }

  /* Optional hover effect */
  .fixed-call-btn:hover {
    background-color: #d49c00;
  }

  /* Only show on mobile */
  @media (min-width: 768px) {
    .fixed-call-btn {
      display: none;
    }
  }

