        :root {
            --primary-blue: #202af5;
            --primary-purple: #3a006c;
            --primary-dark: #130053;
            --gradient-primary: linear-gradient(135deg, #202af5 0%, #3a006c 50%, #130053 100%);
            --gradient-secondary: linear-gradient(45deg, #202af5, #02006c);
    --gradient-hero: linear-gradient(135deg, #e9f3fb 0%, #dde8fb 50%, #d7eefb 100%);
            --gradient-mesh: linear-gradient(45deg, #202af5 0%, #02006c 25%, #130053 50%, #202af5 75%, #3a006c 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            --text-light: #ffffff;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --text-light-gray: #999999;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --bg-dark: #0f0f23;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
            --shadow-glow: 0 12px 40px rgba(32, 42, 245, 0.3);
            --border-radius: 12px;
            --border-radius-large: 20px;
            --border-radius-xl: 30px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Gallery Section Wrapper */
        .gallery-section-wrapper {
            position: relative;
            background: var(--gradient-hero);
            padding: 2rem;
        }

        /* Animated Background - Only for Gallery Section */
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: var(--gradient-hero);
            pointer-events: none;
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
            animation: meshMove 20s ease-in-out infinite;
            opacity: 0.6;
        }

        @keyframes meshMove {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-5%, 5%) rotate(120deg); }
            66% { transform: translate(5%, -5%) rotate(240deg); }
        }

        /* Navbar - Keep on top with light background */
        .navbar {
            position: relative;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
        }

        /* Footer - Light background */
        .footer {
            background: var(--bg-light);
            position: relative;
            z-index: 10;
            margin-bottom: 0;
            padding-bottom: 2rem;
        }

        /* Remove extra space after footer */
        body {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        html {
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .gallery-section-wrapper .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .footer .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Section */
        header {
            text-align: center;
            color: var(--text-dark);
            padding: 80px 20px 60px;
            animation: fadeInDown 0.8s ease;
            animation-fill-mode: forwards;
            opacity: 1 !important;
            visibility: visible !important;
        }

        header h1 {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #1e293b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #1e293b;
            opacity: 1 !important;
            visibility: visible !important;
        }

        header p {
            font-size: 1.3rem;
            color: #64748b;
            font-weight: 400;
            opacity: 1 !important;
            visibility: visible !important;
            letter-spacing: 2px;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 60px;
            flex-wrap: wrap;
            animation: fadeIn 1s ease 0.2s both;
        }

        .filter-tab {
            padding: 12px 30px;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: var(--border-radius);
            color: #475569;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .filter-tab:hover {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            border-color: transparent;
        }

        .filter-tab.active {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            border-color: transparent;
        }

        /* Gallery Grid */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            animation: fadeIn 1s ease 0.4s both;
            margin-bottom: 80px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-large);
            cursor: pointer;
            transition: var(--transition);
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            aspect-ratio: 1;
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 2;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.3);
        }

        .gallery-item img,
        .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .gallery-item:hover img,
        .gallery-item:hover video {
            transform: scale(1.1);
        }

        /* Media Type Badge */
        .media-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 3;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Video Section */
        .video-section {
            margin: 80px 0;
            padding: 60px 0;
            position: relative;
        }

        .video-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .video-card {
            position: relative;
            border-radius: var(--border-radius-large);
            overflow: hidden;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-glow);
        }

        .video-card video {
            width: 100%;
            display: block;
        }

        .video-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: var(--text-light);
            transform: translateY(100%);
            transition: var(--transition);
        }

        .video-card:hover .video-overlay {
            transform: translateY(0);
        }

        .video-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .video-overlay p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex !important;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-content img,
        .modal-content video {
            max-width: 100%;
            max-height: 90vh;
            border-radius: var(--border-radius-large);
            box-shadow: 0 30px 90px var(--shadow-glow);
        }

        .close-modal {
            position: absolute;
            top: 0;
            right: -60px;
            color: var(--text-light);
            font-size: 45px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 300;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            border-radius: 50%;
            border: 1px solid var(--glass-border);
        }

        .close-modal:hover {
            transform: rotate(90deg);
            background: var(--gradient-secondary);
            box-shadow: var(--shadow-glow);
        }

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: var(--transition);
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            z-index: 1000;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .scroll-top.visible {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.7);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 3rem;
            }

            .gallery {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 15px;
            }

            .video-showcase {
                grid-template-columns: 1fr;
            }

            .filter-tabs {
                gap: 10px;
            }

            .filter-tab {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 2.2rem;
            }

            .gallery {
                grid-template-columns: 1fr;
            }
        }





/* Mobile Menu Styles for Gallery Page */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

       .close-modal {
            position: absolute;
            top: -60px;
            right: 0;}

    .mobile-menu {
        display: flex !important;
    }

    .nav-links.mobile-active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-cta.mobile-active {
        display: flex !important;
        position: absolute;
        top: calc(100% + 380px);
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        padding: 1rem 2rem;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar.mobile-open {
        background: rgba(255, 255, 255, 0.98);
    }
}
