.video-showcase-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    padding: 0;
}

.video-showcase-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.video-showcase-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #005BAC;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.video-showcase-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #005BAC, #00A8E8);
    border-radius: 2px;
}

.video-showcase-section .section-title p {
    font-size: 18px;
    color: #666;
    margin-top: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 91, 172, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 91, 172, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 91, 172, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-icon i {
    font-size: 40px;
    color: #fff;
}

.video-card:hover .play-icon {
    background: rgba(0, 91, 172, 1);
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.view-more-wrapper {
    text-align: center;
    margin-top: 20px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #005BAC;
    color: #005BAC;
    background: transparent;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: #005BAC;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 91, 172, 0.3);
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 0;
    }
    
    .video-showcase-section .section-title h2 {
        font-size: 28px;
    }
    
    .video-showcase-section .section-title p {
        font-size: 16px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .video-wrapper {
        height: 250px;
    }
    
    .video-info h3 {
        font-size: 16px;
    }
    
    .video-desc {
        font-size: 13px;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-icon i {
        font-size: 30px;
    }
}