/* Video Showcase Section Styles */
.video-showcase-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-padding30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.single-video-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.single-video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #e74c3c;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-btn:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 25px;
}

.video-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.4;
}

.video-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.video-duration {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Section Title Styles */
.section-tittle h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.section-tittle p {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modal Customization */
.modal-content {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 15px 15px 0 15px;
}

.modal-header .close {
    padding: 0;
    margin: 0;
    font-size: 28px;
    font-weight: 300;
    color: #6c757d;
    opacity: 0.8;
}

.modal-header .close:hover {
    opacity: 1;
    color: #e74c3c;
}

.modal-body {
    padding: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 0;
    }
    
    .section-tittle h2 {
        font-size: 32px;
    }
    
    .video-thumbnail img {
        height: 200px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .video-thumbnail img {
        height: 180px;
    }
    
    .video-content h4 {
        font-size: 15px;
    }
    
    .video-content p {
        font-size: 13px;
    }
}

/* Animation for video items */
.single-video-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.single-video-item:nth-child(1) { animation-delay: 0.1s; }
.single-video-item:nth-child(2) { animation-delay: 0.2s; }
.single-video-item:nth-child(3) { animation-delay: 0.3s; }
.single-video-item:nth-child(4) { animation-delay: 0.4s; }
.single-video-item:nth-child(5) { animation-delay: 0.5s; }
.single-video-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
