/* CSS: Styling the Video Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    /* Ensures the video covers the entire banner area */
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 0;
}



.banner-overlay-join-our {
    font-size: 60px;
    font-weight: 600;
    line-height: 0;
    text-align: left;
    margin: 0;
    padding: 0;
}

.banner-overlay-innovation {
    font-size: 78px;
    font-weight: 700;
    line-height: 110px;
    text-align: left;
    margin: 0;
    padding: 0;
}

.banner-overlay-paragraph {
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
}

.banner-overlay-paragraph .banner-overlay-paragraph-span {
    font-size: 28px;
    font-weight: 600;
    line-height: 30px;
}

.explore-more-button {
    margin-top: 50px;
}




/* Mobile View Adjustments */
@media (max-width: 768px) {
    .video-banner {
        height: 80vh;
        /* Reduce the height for smaller screens */
    }

    .banner-overlay-join-our {
        font-size: 40px;
        /* Adjust font size for smaller screens */
        text-align: center;
    }

    .banner-overlay-innovation {
        font-size: 50px;
        /* Adjust font size for smaller screens */
        line-height: 70px;
        text-align: center;
    }

    .banner-overlay-paragraph {
        font-size: 18px;
        line-height: 24px;
        text-align: center;
        padding: 0 15px;
    }

    .banner-overlay-paragraph .banner-overlay-paragraph-span {
        font-size: 18px;
        line-height: 22px;
    }

    .banner-overlay-paragraph .banner-overlay-paragraph-span {
        font-size: 20px;
        line-height: 24px;
    }

    .explore-more-button {
        margin-top: 30px;
        /* Reduce margin */
    }
}

/* Additional Adjustments for Very Small Screens */
@media (max-width: 480px) {
    .video-banner {
        height: 80vh;
        /* Further reduce the height for very small screens */
    }

    .banner-overlay-join-our {
        font-size: 30px;
        /* Further reduce font size */
        text-align: center;
    }

    .banner-overlay-innovation {
        font-size: 40px;
        /* Further reduce font size */
        line-height: 55px;
        text-align: center;
    }

    .banner-overlay-paragraph {
        font-size: 16px;
        line-height: 20px;
        text-align: center;
    }

    .banner-overlay-paragraph .banner-overlay-paragraph-span {
        font-size: 20px;
        line-height: 22px;
    }

    .explore-more-button {
        margin-top: 20px;
        /* Further reduce margin */
    }
}