    .under-construction-banner {
    width: 100%;
    min-height: 100vh; /* Full screen height */
    background: 
    url('assets/img/banner.png'); /* banner image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0px;
}
@media (max-width: 480px) {
    .under-construction-banner {
        min-height: 80vh; /* full screen on mobile */
        
        /* Better mobile image handling */
        background-size: cover; /* or 'contain' if image cuts */
        background-position: top center;

        padding: 20px;
    }
}
.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.banner-content span {
    font-size: 1rem;
    background: #ff9800;
    padding: 8px 20px;
    border-radius: 25px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
}