#billboard {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 380px;
    overflow: hidden;
}

.carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: transform 5s ease, opacity 2s ease;
}

.carousel img.active {
    opacity: 1;
    transform: scale(1.1); /* Zoom by 10% */
}

.banner {
    background-size: contain;
    background-position: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-repeat: round;
}
.banner:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.banner-inner {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 5px;
}
.hero-section {
    background: linear-gradient(135deg, #6e8efb 0%, #a777e3 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    color: white;
}

@media screen and (max-width: 1154px) {
    .carousel {
        height: 280px;
    }
}
@media screen and (max-width: 798px) {
    .carousel {
        height: 196px;
    }
}
@media screen and (max-width: 428px) {
    .carousel {
        height: 147px;
    }
}
