/* Hero Video Styles */
.hero-video-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

/* Ensure the hero section has proper positioning */
.neutron-hero-section {
    position: relative;
    overflow: hidden;
}

/* Make sure the text content stays on the left */
.div-block-29 {
    position: relative;
    z-index: 2;
    width: 50%;
    padding-right: 20px;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .hero-video-container {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    
    .div-block-29 {
        width: 100%;
        padding-right: 0;
        text-align: center;
    }
    
    .neutron-h1.left {
        text-align: center;
    }
    
    .neutron-s1 {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-video-container {
        height: 250px;
    }
}
