/* Internship Video Section */
.internship-focus {
    padding: 80px 0;
    background: #0aa291;
    color: #fff;
}

.section-title h1 span {
    color: #24ff80;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
}

.video-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-card video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #000;
}

.video-controls {
    position: absolute;
    bottom: 110px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.video-controls button {
    background: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.video-controls button:hover {
    background: #2ecc71;
}

.video-info {
    padding: 15px;
}

.video-info h5 {
    margin-bottom: 8px;
    color: #2ecc71;
}

.video-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}
