:root {
    --vivid-azure: #00BFFF;
    --orange: #FF6B35;
}
.banner-container {
    position: relative;
    width: 100%;
}

    .banner-container img {
        width: 100%;
        display: block;
    }

/* Overlay box */
.overlay-content {
    position: absolute;
    bottom: -5%;
    left: 0;
    margin-left: 50px;
    height: 150px;
    width: 500px;
    background-color: white;
    padding: 20px 30px;
    border-top: 6px solid var(--orange);
    border-right: 1px solid var(--orange);
    border-bottom: none;
    border-left: none;
    border-top-right-radius: 180px;
    border-top-left-radius: 5px;
    z-index: 2;
}

/* Title inside the overlay */
.title-box h1 {
    color: var(--vivid-azure);
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

/* Animations */
.scroll-zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .scroll-zoom-in.visible {
        opacity: 1;
        transform: scale(1);
    }

.scroll-pan-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    .scroll-pan-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
