/* Section Background */
.section-container {
    background: linear-gradient(to right, #f8f9fa, #e3e7ec);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}

/* Flex Layout for Alignment */
.content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Video Container */
.video-container {
    flex: 1;
    min-width: 480px;
    max-width: 550px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.15);
}

/* Prevent Screenshot */
.no-screenshot {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

/* Text Section */
.text-content {
    flex: 1;
    font-family: "Poppins", sans-serif;
    color: #333;
    text-align: left;
}

.text-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #6a1b9a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.text-content h2 span {
    color: #000000;
    font-weight: 800;
}

.text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.text-content .highlight {
    background: rgba(255, 214, 102, 0.3);
    padding: 12px 18px;
    border-left: 5px solid #ff9800;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Course Link Button */
.course-link {
    margin-top: 25px;
}

.course-link a {
    display: inline-block;
    background: linear-gradient(135deg, #6a1b9a, #9f44b4);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(106, 27, 154, 0.3);
}

.course-link a:hover {
    background: linear-gradient(135deg, #8e24aa, #ba68c8);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(142, 36, 170, 0.3);
}


/* Video Player Theme */
.vjs-theme-modern {
    --vjs-theme-primary: #6a1b9a;
    --vjs-theme-secondary: #ffffff;
    border-radius: 12px;
}

/* Play Button */
.vjs-theme-modern .vjs-big-play-button {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 42px;
    line-height: 75px;
    color: var(--vjs-theme-primary);
    transition: all 0.3s ease;
}

.vjs-theme-modern .vjs-big-play-button:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Control Bar */
.vjs-theme-modern .vjs-control-bar {
    height: 52px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0 0 12px 12px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .video-container {
        min-width: 100%;
    }

    .text-content {
        max-width: 100%;
        text-align: center;
        >h2{
            font-size: 25px;
        }
    }

    .course-link {
        font-size: small;
        text-align: center;
    }
}
