.carousel-box {
    display: block;
    width: 350px;
    height: 450px;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    background:white;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-box:hover {
    transform: translateY(-10px);
}

.carousel {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    height: auto;
    padding: 20px;
}

.carousel-box img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.15);
    padding: 20px;
}

.carousel-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color:black;
}

.carousel-box p {
    font-size: 1rem;
    color: black;
}
