.video-thumbnail {
            position: relative;
            width: 300px;
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
            display: block;
            background: transparent;
			margin-bottom: 20px;
        }

        .video-thumbnail:hover {
            transform: scale(1.05);
        }
 .video-thumbnail img {
            width: 300px !important;
            height: auto !important;
            display: block !important;
            object-fit: cover !important;
            border-radius: 8px !important;
            margin: 0 !important;
            padding: 0 !important;
            vertical-align: top !important;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .video-thumbnail:hover .play-button {
            background: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid #ff0000;
            border-top: 11px solid transparent;
            border-bottom: 11px solid transparent;
            margin-left: 4px;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            transition: background 0.3s ease;
        }

        .video-thumbnail:hover .overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .lightbox.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .lightbox-content {
            position: relative;
            width: 90%;
            max-width: 900px;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .lightbox-content iframe {
            width: 100%;
            aspect-ratio: 16 / 9;
            border: none;
            border-radius: 8px;
        }

        .close-button {
            position: absolute;
            top: -50px;
            right: 0;
            width: 40px;
            height: 40px;
            background: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .close-button:hover {
            background: #ff0000;
            color: #fff;
            transform: rotate(90deg);
        }	
		
		
@media (max-width: 968px) {
			.video-thumbnail {
                width: 100%;
                max-width: 100%;
            }

            .video-thumbnail img {
                width: 100% !important;
            }

            .lightbox-content {
                width: 95%;
            }

            .close-button {
                top: -45px;
                width: 35px;
                height: 35px;
                font-size: 20px;
            }
}