       /* Animated Background */
        .media-section {
            background: linear-gradient(to bottom,rgba(33,35,44,255) , rgba(43,46,59,255));
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }



        /* Floating Particles Background */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(0, 212, 255, 0.1);
            border-radius: 50%;
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Mouse Cursor Effect */
        .cursor-glow {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.8) 0%, rgba(0, 212, 255, 0.2) 50%, transparent 100%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.1s ease;
            mix-blend-mode: screen;
        }

        .cursor-trail {
            position: fixed;
            width: 6px;
            height: 6px;
            background: #00d4ff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
            border: 2px solid #00ffff;
        }

        .video-section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .video-section-title h2 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: 700;
            text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        @keyframes titleGlow {
            from { text-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
            to { text-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 0 40px rgba(0, 212, 255, 0.3); }
        }

        .video-section-title p {
            color: #00d4ff;
            font-size: 1.1rem;
            margin: 0;
        }

        /* Media Container - Mobile First (Stacked) */
        .media-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* Video Resume Section */
        .video-resume-section {
            background: rgba(52, 73, 94, 0.9);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .video-resume-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
        }

        .video-header {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .video-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .video-header h3 {
            color: white;
            font-size: 1.5rem;
            margin: 0;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 300px;
            background: #2c3e50;
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Coming Soon Placeholder */
        .coming-soon {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #00d4ff;
            text-align: center;
            padding: 40px 20px;
        }

        .coming-soon-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.7;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
        }

        .coming-soon h4 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .coming-soon p {
            color: #bdc3c7;
            font-size: 1rem;
            margin: 0;
        }

        /* Photo Gallery Section */
        .photo-gallery-section {
            background: rgba(52, 73, 94, 0.9);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .photo-gallery-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
        }

        .gallery-header {
            background: linear-gradient(135deg, #00d4ff, #0099cc);
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .gallery-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite 1.5s;
        }

        .gallery-header h3 {
            color: white;
            font-size: 1.5rem;
            margin: 0;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        /* Smooth Overlapping Gallery Carousel */
        .gallery-carousel {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .gallery-viewport {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .gallery-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
            z-index: 1;
        }

        .gallery-slide.current {
            opacity: 1;
            visibility: visible;
            z-index: 2;
        }

        .gallery-slide.transitioning {
            visibility: visible;
            z-index: 3;
        }

        .gallery-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Smooth Transition Effects - All with proper overlapping */
        
        /* 1. Fade Transition */
        .transition-fade {
            opacity: 0;
            transition: opacity 1.5s ease;
        }
        .transition-fade.active {
            opacity: 1;
        }

        /* 2. Slide Up */
        .transition-slide-up {
            transform: translateY(100%);
            transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-slide-up.active {
            transform: translateY(0);
        }

        /* 3. Slide Down */
        .transition-slide-down {
            transform: translateY(-100%);
            transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-slide-down.active {
            transform: translateY(0);
        }

        /* 4. Slide Left */
        .transition-slide-left {
            transform: translateX(100%);
            transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-slide-left.active {
            transform: translateX(0);
        }

        /* 5. Slide Right */
        .transition-slide-right {
            transform: translateX(-100%);
            transition: transform 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-slide-right.active {
            transform: translateX(0);
        }

        /* 6. Rotate */
        .transition-rotate {
            transform: rotate(360deg) scale(0.3);
            opacity: 0;
            transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-rotate.active {
            transform: rotate(0deg) scale(1);
            opacity: 1;
        }

        /* 7. Zoom In */
        .transition-zoom-in {
            transform: scale(0);
            opacity: 0;
            transition: all 1.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-zoom-in.active {
            transform: scale(1);
            opacity: 1;
        }

        /* 8. Zoom Out */
        .transition-zoom-out {
            transform: scale(3);
            opacity: 0;
            transition: all 1.6s ease-out;
        }
        .transition-zoom-out.active {
            transform: scale(1);
            opacity: 1;
        }

        /* 9. Flip Horizontal */
        .transition-flip-h {
            transform: rotateY(180deg);
            opacity: 0;
            transition: all 1.5s ease;
        }
        .transition-flip-h.active {
            transform: rotateY(0deg);
            opacity: 1;
        }

        /* 10. Flip Vertical */
        .transition-flip-v {
            transform: rotateX(180deg);
            opacity: 0;
            transition: all 1.5s ease;
        }
        .transition-flip-v.active {
            transform: rotateX(0deg);
            opacity: 1;
        }

        /* 11. Spiral */
        .transition-spiral {
            transform: rotate(720deg) scale(0);
            opacity: 0;
            transition: all 2.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-spiral.active {
            transform: rotate(0deg) scale(1);
            opacity: 1;
        }

        /* 12. Bounce */
        .transition-bounce {
            transform: scale(0) translateY(-100px);
            opacity: 0;
            transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-bounce.active {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        /* 13. Swing */
        .transition-swing {
            transform: rotate(-30deg) scale(0.5);
            transform-origin: top center;
            opacity: 0;
            transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-swing.active {
            transform: rotate(0deg) scale(1);
            opacity: 1;
        }

        /* 14. Elastic */
        .transition-elastic {
            transform: scaleX(0.1) scaleY(2);
            opacity: 0;
            transition: all 2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-elastic.active {
            transform: scaleX(1) scaleY(1);
            opacity: 1;
        }

        /* 15. Skew */
        .transition-skew {
            transform: skewX(60deg) scale(0.3);
            opacity: 0;
            transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .transition-skew.active {
            transform: skewX(0deg) scale(1);
            opacity: 1;
        }

        /* 16. Matrix */
        .transition-matrix {
            transform: matrix(0.2, 0.8, -0.8, 0.2, 0, 0) scale(0);
            opacity: 0;
            transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-matrix.active {
            transform: matrix(1, 0, 0, 1, 0, 0) scale(1);
            opacity: 1;
        }

        /* 17. Wave */
        .transition-wave {
            transform: translateX(-100%) rotateZ(20deg) scale(0.5);
            opacity: 0;
            transition: all 1.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .transition-wave.active {
            transform: translateX(0) rotateZ(0deg) scale(1);
            opacity: 1;
        }

        /* 18. Fold */
        .transition-fold {
            transform: rotateY(-120deg) scale(0.3);
            transform-origin: left center;
            opacity: 0;
            transition: all 1.7s ease;
        }
        .transition-fold.active {
            transform: rotateY(0deg) scale(1);
            opacity: 1;
        }

        /* 19. Unfold */
        .transition-unfold {
            transform: rotateX(-120deg) scale(0.3);
            transform-origin: center top;
            opacity: 0;
            transition: all 1.7s ease;
        }
        .transition-unfold.active {
            transform: rotateX(0deg) scale(1);
            opacity: 1;
        }

        /* 20. Twist */
        .transition-twist {
            transform: rotate(270deg) scaleX(0) scaleY(0.1);
            opacity: 0;
            transition: all 1.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-twist.active {
            transform: rotate(0deg) scaleX(1) scaleY(1);
            opacity: 1;
        }

        /* 21. Diagonal Slide */
        .transition-diagonal {
            transform: translate(-100%, -100%) rotate(45deg) scale(0.5);
            opacity: 0;
            transition: all 1.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-diagonal.active {
            transform: translate(0, 0) rotate(0deg) scale(1);
            opacity: 1;
        }

        /* 22. Heartbeat */
        .transition-heartbeat {
            transform: scale(0);
            opacity: 0;
            transition: all 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .transition-heartbeat.active {
            transform: scale(1);
            opacity: 1;
            animation: heartbeat 1.8s ease-in-out;
        }

        @keyframes heartbeat {
            0% { transform: scale(0); }
            25% { transform: scale(1.2); }
            50% { transform: scale(0.9); }
            75% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* 23. Circular Wipe */
        .transition-circular {
            clip-path: circle(0% at 50% 50%);
            transition: clip-path 1.5s ease-in-out;
        }
        .transition-circular.active {
            clip-path: circle(150% at 50% 50%);
        }

        /* 24. Split Reveal */
        .transition-split {
            clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
            transition: clip-path 1.5s ease-in-out;
        }
        .transition-split.active {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 30px 20px 20px;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.5s ease 0.5s;
        }

        .gallery-slide.current .slide-caption,
        .gallery-slide.transitioning.active .slide-caption {
            transform: translateY(0);
        }

        /* Gallery Navigation */
        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 212, 255, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .gallery-nav:hover {
            background: #00d4ff;
            transform: translateY(-50%) scale(1.2);
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
        }

        .gallery-nav.prev {
            left: 15px;
        }

        .gallery-nav.next {
            right: 15px;
        }

        /* Gallery Dots */
        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            padding: 20px;
            background: rgba(44, 62, 80, 0.9);
        }

        .gallery-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .gallery-dot:hover {
            background: rgba(0, 212, 255, 0.7);
            transform: scale(1.3);
        }

        .gallery-dot.active {
            background: #00d4ff;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .gallery-dot.active::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid rgba(0, 212, 255, 0.3);
            border-radius: 50%;
            animation: dotPulse 2s infinite;
        }

        @keyframes dotPulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        /* Auto-scroll indicator */
        .auto-scroll-indicator {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(0, 212, 255, 0.9);
            color: white;
            padding: 5px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: indicatorGlow 2s ease-in-out infinite;
        }

        @keyframes indicatorGlow {
            0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.3); }
            50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.8); }
        }

        .auto-scroll-indicator.active {
            opacity: 1;
        }

        /* Transition Name Display */
        .transition-name {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: #00d4ff;
            padding: 8px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
            font-weight: 600;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        .transition-name.show {
            opacity: 1;
        }

        /* Desktop Layout (Side by Side) */
        @media (min-width: 768px) {
            .media-container {
                flex-direction: row;
                gap: 30px;
            }

            .video-resume-section,
            .photo-gallery-section {
                flex: 1;
            }

            .video-container,
            .gallery-carousel {
                height: 400px;
            }

            .video-section-title h2 {
                font-size: 3rem;
            }
        }

        /* Large Desktop */
        @media (min-width: 1024px) {
            .video-container,
            .gallery-carousel {
                height: 450px;
            }

            .gallery-nav {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .gallery-nav.prev {
                left: 20px;
            }

            .gallery-nav.next {
                right: 20px;
            }
        }

        /* Mobile Specific */
        @media (max-width: 767px) {
            .media-section {
                padding: 60px 0;
            }

            .video-section-title h2 {
                font-size: 2rem;
            }

            .video-section-title {
                margin-bottom: 40px;
            }

            .video-header h3,
            .gallery-header h3 {
                font-size: 1.3rem;
            }

            .coming-soon-icon {
                font-size: 3rem;
            }

            .coming-soon h4 {
                font-size: 1.3rem;
            }

            .cursor-glow,
            .cursor-trail {
                display: none;
            }
        }

        /* Hide cursor effects on touch devices */
        @media (hover: none) and (pointer: coarse) {
            .cursor-glow,
            .cursor-trail {
                display: none;
            }
        }
