/* Video Section Styling */
.video-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.video-section h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.video-section h1 span {
    color: #689F38;
    position: relative;
    display: inline-block;
}

.video-section .video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-section .video-container:hover {
    transform: translateY(-5px);
}

.video-section .ratio-16x9 {
    border-radius: 10px;
    overflow: hidden;
}

.video-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Feature Icons */
.video-section .btn-lg-square {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.video-section .btn-lg-square i {
    transition: transform 0.3s;
}

.video-section .btn-lg-square:hover i {
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .video-section .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 2rem;
    }
    
    .video-section h1 {
        font-size: 2rem;
    }
}
