 .swiper-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        
        width: 100%;
        height: 100%;
    }

    .custom-card-box {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between; /* Ensures even spacing */
        text-decoration: none;
        color: inherit;
        border-radius: 10px;
        overflow: hidden;
        padding: 10px;
        background: #fff;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .custom-card-image {
        width: 100%;
        height: 200px; /* Consistent image size */
        object-fit: contain;
        border-radius: 10px;
    }

    .card-content {
        flex-grow: 1; /* Allows text to expand but keeps buttons at the bottom */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        padding: 10px 0;
    }

    /* h4, p {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    } */

    .cta-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        width: 100%;
        padding: 10px 0;
    }

    .cta-buttons a {
        flex: 1;
        padding: 8px 15px;
        border-radius: 5px;
        font-size: 14px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-call {
        background-color: #28a745;
        color: white;
    }

    .btn-fee {
        background-color: #00609e;
        color: white;
    }

   

    #swiperProgress {
        height: 100%;
        width: 0%;
        background-color: #FFC107;
        transition: width 5s linear;
    }

    /* .swiper-button-next,
    .swiper-button-prev {
        color: #ffcc00 !important;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    } */

    .swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 204, 0, 0.9); /* soft yellow with slight transparency */
  color: black !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #ffcc00; /* solid yellow on hover */
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

    /* Optional: style pagination dots */
    .swiper-pagination-bullet {
        background-color: rgba(255, 255, 255, 0.7);
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background-color: #ffcc00;
    }

    .card:hover img {
        transform: scale(1.05);
    }