.banner-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.banner-area .container {
    position: relative;
    z-index: 2;
}

.banner-text {
    color: #ffffff;
    padding: 0;
}

.banner-text span {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.banner-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.1rem;
    margin: 1rem 0 2rem;
    line-height: 1.6;
}

.banner-btn {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .banner-text h1 {
        font-size: 2.5rem;
    }

    .banner-text p {
        font-size: 1rem;
    }
}

/* Ensure the video section aligns properly */
.video-section {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding-right: 2rem;
}

@media (max-width: 991px) {
    .video-section {
        display: none;
    }
}