        .video-gallery-section {
            padding: 4rem 0;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .title-wrapper {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .title-wrapper h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
        }

        .title-wrapper h2 span {
            color: #FF6B35;
        }

        .title-wrapper p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        .video-item {
            margin-bottom: 0;
        }

        .video-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            background: #000;
            height: 100%;
        }

        .video-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
        }

        .gallery-video {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
            background-color: #000;
        }

        .video-wrapper:hover .gallery-video {
            transform: scale(1.03);
        }

        .video-controls {
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-wrapper:hover .video-controls {
            opacity: 1;
        }

        .mute-btn {
            background: rgba(0, 0, 0, 0.7);
            border: 2px solid #FF6B35;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            padding: 0;
            position: relative;
        }

        .mute-btn:hover {
            background: #FF6B35;
            transform: scale(1.1);
        }

        .mute-btn.muted .mute-icon {
            display: none;
        }

        .mute-btn.muted .unmute-icon {
            display: inline-block !important;
        }

        .mute-btn:not(.muted) .mute-icon {
            display: inline-block !important;
        }

        .mute-btn:not(.muted) .unmute-icon {
            display: none !important;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 2rem;
            opacity: 1;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .video-wrapper:hover .video-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
        }

        .overlay-content {
            text-align: center;
            color: white;
            z-index: 2;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .play-icon {
            font-size: 2.5rem;
            color: #FF6B35;
            margin-bottom: 10px;
            display: inline-block;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            opacity: 0.9;
        }

        .video-caption {
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            color: white;
        }

        /* Video Popup Styles */
        .video-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
        }

        .popup-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
        }

        .popup-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .popup-content {
            position: relative;
            width: 90%;
            max-width: 1200px;
            z-index: 10000;
        }

        .popup-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 3rem;
            cursor: pointer;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
            z-index: 10001;
        }

        .popup-close:hover {
            color: #FF6B35;
        }

        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 107, 53, 0.8);
            border: none;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            font-size: 2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
            backdrop-filter: blur(5px);
        }

        .nav-arrow:hover {
            background: #FF6B35;
            transform: translateY(-50%) scale(1.1);
        }

        .prev-arrow {
            left: -80px;
        }

        .next-arrow {
            right: -80px;
        }

        .popup-video-container {
            width: 100%;
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .popup-video {
            width: 100%;
            height: auto;
            max-height: 80vh;
            display: block;
        }

        .popup-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 1.5rem;
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
            text-align: center;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .prev-arrow {
                left: 20px;
            }

            .next-arrow {
                right: 20px;
            }
        }

        @media (max-width: 992px) {
            .title-wrapper h2 {
                font-size: 2.8rem;
            }

            .gallery-video {
                height: 280px;
            }
        }

        @media (max-width: 768px) {
            .title-wrapper h2 {
                font-size: 2.5rem;
            }

            .gallery-video {
                height: 250px;
            }

            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                display: none !important;
                pointer-events: none;
            }

            .popup-caption {
                font-size: 1.2rem;
                padding: 1.5rem;
            }

            .popup-close {
                top: -40px;
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .video-grid {
                gap: 1.5rem;
            }

            .gallery-video {
                height: 220px;
            }

            .nav-arrow {
                display: none !important;
                pointer-events: none;
            }

            .video-caption {
                font-size: 1.1rem;
            }

            .play-icon {
                font-size: 2rem;
            }

            .popup-content {
                width: 95%;
            }

            .mute-btn {
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 400px) {
            .gallery-video {
                height: 200px;
            }

            .title-wrapper h2 {
                font-size: 2.2rem;
            }

            .nav-arrow {
                display: none !important;
                pointer-events: none;
            }

            .title-wrapper p {
                font-size: 1.1rem;
            }
        }