.event-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

body {
    background-color: #f4f4f9;
}

.event-box {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
}

.event-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-box:hover img {
    transform: scale(1.1);
}

.event-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


/*  */

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.feature-image-1 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: none;
}

@media (max-width: 768px) {
    .event-box {
        height: 250px;
    }
    .feature-image {
        width: 100%;
        height: 16vh;
        object-fit: cover;
        object-position: center;
    }
    .feature-image-1 {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}