.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    border-radius: 10px; /* Rounded corners */
}

.banner-title {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px; /* Spacing between letters */
}

.banner-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.5; /* Improved line spacing */
}

.banner-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white; /* White border */
    background: transparent; /* Transparent background */
    color: white; /* White text */
}

.banner-btn:hover {
    background: white; /* Background color on hover */
    color: black; /* Text color on hover */
}
/* Tablets (≤1048px) */
@media (max-width: 1048px) {
    .banner-title {
        font-size: 2.3rem !important;
    }

    .banner-subtitle {
        font-size: 1.2rem !important;
    }

    .banner-btn {
        padding: 10px 25px !important;
        font-size: 1rem !important;
    }

    .banner-content {
        padding: 1.5rem !important;
    }
}

/* Mobile Devices (≤768px) */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2rem !important;
        letter-spacing: 1.5px !important;
    }

    .banner-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        max-width: 90% !important;
        margin: 0 auto 1.5rem !important;
    }

    .banner-btn {
        padding: 10px 22px !important;
        font-size: 0.95rem !important;
    }

    .banner-content {
        padding: 1.2rem !important;
        border-radius: 8px !important;
        width: 90% !important;
        margin: auto !important;
    }
}

/* Small Devices (≤500px) */
@media (max-width: 500px) {
    .banner-title {
        font-size: 1.6rem !important;
        letter-spacing: 1px !important;
    }

    .banner-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        max-width: 100% !important;
    }

    .banner-btn {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
        width: 100% !important;
        max-width: 260px !important;
    }

    .banner-content {
        padding: 1rem !important;
        border-radius: 6px !important;
        width: 95% !important;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}