:root {
            --bg: #0f1724;
            --card: #0b1220;
            --muted: #94a3b8;
            --accent: #7c3aed;
            --accent-2: #06b6d4;
            --glass: rgba(255, 255, 255, 0.04);
            --max-width: 1200px;
            --header-height: 80px;
            color-scheme: dark;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
            background: linear-gradient(180deg, #071427 0%, #07101a 60%);
            color: #e6eef8;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(11, 18, 32, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 100%;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: white;
            font-size: 16px;
        }

        .brand-text h1 {
            font-size: 16px;
            font-weight: 800;
        }

        .brand-text p {
            font-size: 11px;
            color: var(--muted);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 16px;
        }

        nav a {
            color: var(--muted);
            text-decoration: none;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        nav a:hover, nav a.active {
            color: white;
            background: var(--glass);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 60px;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 40px;
            align-items: center;
        }

        .hero-content h2 {
            color: var(--accent);
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 12px;
        }

        .hero-content h1 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #fff 0%, var(--accent-2) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-content p {
            color: var(--muted);
            font-size: 16px;
            margin-bottom: 30px;
        }

        .hero-stats {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .stat {
            background: var(--glass);
            padding: 10px 14px;
            border-radius: 8px;
            color: var(--muted);
            font-weight: 600;
            font-size: 14px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent), var(--accent-2));
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .hero-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--muted);
            font-size: 14px;
        }

        .contact-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-2px);
        }

        /* Section Styles */
        section {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(90deg, #fff 0%, var(--accent-2) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle {
            color: var(--muted);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        .card {
            background: var(--card);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 24px;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.7;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .quote-block {
            background: linear-gradient(90deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
            border-left: 4px solid var(--accent);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
            font-size: 16px;
        }

        .about-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Journey Section */
        .journey-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .journey-timeline::before {
            content: '';
            position: absolute;
            left: 25px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent), var(--accent-2));
        }

        .timeline-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }

        .timeline-marker {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            z-index: 2;
            border: 2px solid var(--accent);
            flex-shrink: 0;
        }

        .timeline-content {
            flex: 1;
            background: var(--card);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .timeline-year {
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .timeline-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .timeline-description {
            color: var(--muted);
            font-size: 14px;
        }

        /* Achievements Section */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .achievement-card {
            background: var(--card);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }

        .achievement-card:hover {
            transform: translateY(-5px);
        }

        .achievement-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 20px;
        }

        .achievement-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .achievement-description {
            color: var(--muted);
            font-size: 14px;
        }

        /* Gallery Section */
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            height: 220px;
            cursor: pointer;
        }

        .gallery-item img, .gallery-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img, .gallery-item:hover video {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 16px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        /* Documents Section */
        .documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
        }

        .document-card {
            background: var(--card);
            border-radius: 12px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .document-card:hover {
            transform: translateY(-5px);
        }

        .document-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            background: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 14px;
            font-size: 20px;
            color: var(--accent);
        }

        .document-title {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 16px;
        }

        .document-description {
            color: var(--muted);
            font-size: 13px;
            margin-bottom: 14px;
        }

        .document-download {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        /* Footer */
        footer {
            background: var(--card);
            padding: 50px 0 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--muted);
            font-size: 14px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            max-width: 100%;
            max-height: 100%;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .modal-content img, .modal-content video {
            width: 100%;
            height: auto;
            display: block;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            z-index: 2001;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 16px;
            }
            
            nav ul {
                display: none;
                position: fixed;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background: rgba(11, 18, 32, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
                border-top: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                width: 100%;
            }
            
            nav a {
                display: block;
                padding: 12px 16px;
                border-radius: 8px;
                margin-bottom: 8px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 120px 0 40px;
                gap: 30px;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 15px;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .stat {
                width: 100%;
                text-align: center;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-subtitle {
                font-size: 15px;
            }
            
            .card {
                padding: 20px;
            }
            
            .about-text {
                font-size: 15px;
            }
            
            .quote-block {
                font-size: 15px;
                padding: 16px;
            }
            
            .journey-timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                flex-direction: column;
            }
            
            .timeline-marker {
                margin-right: 0;
                margin-bottom: 12px;
                width: 44px;
                height: 44px;
            }
            
            .achievements-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
            
            .gallery-item {
                height: 200px;
            }
            
            .documents-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            
            .hero {
                padding: 110px 0 30px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content h2 {
                font-size: 14px;
            }
            
            .hero-content p {
                font-size: 14px;
            }
            
            .stat {
                font-size: 13px;
                padding: 8px 12px;
            }
            
            .btn {
                padding: 10px 16px;
                font-size: 13px;
            }
            
            .section-title {
                font-size: 24px;
            }
            
            .section-subtitle {
                font-size: 14px;
            }
            
            .card-title {
                font-size: 16px;
            }
            
            .contact-item {
                font-size: 13px;
            }
            
            .contact-icon {
                width: 32px;
                height: 32px;
            }
            
            .social-link {
                width: 36px;
                height: 36px;
            }
            
            .timeline-title {
                font-size: 16px;
            }
            
            .timeline-description {
                font-size: 13px;
            }
            
            .achievement-title {
                font-size: 16px;
            }
            
            .achievement-description {
                font-size: 13px;
            }
            
            .document-title {
                font-size: 15px;
            }
            
            .document-description {
                font-size: 12px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: var(--accent);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }