.home-section{
    width:100%;
    min-height:70vh;
    position:relative;
    overflow:hidden;
}

.video-container{
    position:relative;
    width:100%;
    height:100vh;
}

.hero-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.hero-content{
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:4rem;
    margin-bottom:15px;
}

.hero-content p{
    font-size:1.2rem;
    margin-bottom:25px;
}

.hero-btn{
    display:inline-block;
    padding:14px 30px;
    background:#fff;
    color:#111;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

/* Tablet */
@media (max-width: 768px){

    .video-container{
        height:80vh;
    }

    .hero-content h1{
        font-size:2.3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .hero-btn{
        padding:12px 24px;
    }
}

/* Mobile */
@media (max-width: 480px){

    .video-container{
        height:70vh;
    }

    .hero-content h1{
        font-size:1.8rem;
        line-height:1.2;
    }

    .hero-content p{
        font-size:.95rem;
    }

    .video-overlay{
        padding:15px;
    }
}