.video_section {
    background-color: var(--body-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 100px;
    position: relative;
    overflow: hidden;

    h1 {
        font-size: clamp(0.7rem, 3.5vw, 2rem);
        color: var(--text-secondary-invert);
        font-family: 'DG Trika', sans-serif;
        margin-bottom: 20px;
    }

    .video_content {
        border-radius: 30px;
        width: 80vw;
        max-width: 1345px;
        position: relative;

        /* ✅ ODOO-STYLE FIX */
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #000;
        .hero_video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #000;
        }
        
        

        .video_control {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 100px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            border: none;
            background: var(--text-primary);
            color: #fff;
            font-size: 28px;
            cursor: pointer;
            z-index: 10;
        }
    }
}

@media screen and (max-width:768px) {
    .video_section {
        .video_content {
            border-radius: 16px;

            .video_control {
                width: 50px;
                height: 36px;
                font-size: 14px;
                border-radius: 12px;
            }
        }
    }
}
