.custom-carousel .swiper-slide {
    display: flex;
    justify-content: center;
}

.custom-carousel .carousel-card {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.custom-carousel .swiper-slide-active .carousel-card {
    transform: scale(1.05);
}

.custom-carousel .btn {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}