
        :root {
            --primary: #00d4ff;
            --secondary: #001f3f;
            --bg-dark: #121212;
            --bg-card: #000000;
            --text-light: #e0e0e0;
            --accent: #00ffcc;
            --glow: 0 0 15px rgba(0, 212, 255, 0.6);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        h1, h2, h3, .logo-text {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            right: 0;
            min-height: 74px;
            opacity: 1;
            visibility: visible;
            transform: translateZ(0);
            z-index: 1000;
            background: #000000;
            transition: var(--transition);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

        header.scrolled {
            padding: 5px 0;
            background: #000000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img {
            height: 50px;
            filter: none;
            transition: var(--transition);
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            text-shadow: var(--glow);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
            box-shadow: var(--glow);
        }

        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--primary);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Page Header */
        .page-header {
            padding: 180px 0 100px;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            text-align: center;
        }

        .page-header h1 {
            font-size: 4rem;
            color: var(--primary);
            text-shadow: var(--glow);
            letter-spacing: 5px;
        }

        /* Sections General */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .section-title .underline {
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 0 auto;
            border-radius: 2px;
            box-shadow: var(--glow);
        }

        /* About Content */
        .about-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #ccc;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            border: 1px solid var(--primary);
            box-shadow: var(--glow);
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        /* Mission & Vision */
        .mission-vision {
            background-color: var(--bg-dark);
        }

        .mv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .mv-card {
            background: var(--bg-card);
            padding: 50px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            position: relative;
            overflow: hidden;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
            pointer-events: none;
        }

        .mv-card:hover::before {
            transform: translateX(100%);
        }

        .mv-card:hover {
            transform: translateY(-15px);
            background: rgba(0, 212, 255, 0.05);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mv-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
            text-shadow: var(--glow);
            transition: var(--transition);
            display: inline-block;
        }

        .mv-card:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .mv-card h3 {
            margin-bottom: 20px;
            font-size: 1.6rem;
        }

        /* Founder Message */
        .founder-section {
            text-align: center;
        }

        .founder-card {
            max-width: 900px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 80px 60px;
            border-radius: 30px;
            position: relative;
            border: 1px solid rgba(0, 212, 255, 0.1);
            transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            overflow: hidden;
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
            pointer-events: none;
        }

        .founder-card:hover::before {
            transform: translateX(100%);
        }

        .founder-card:hover {
            transform: translateY(-15px);
            background: rgba(0, 212, 255, 0.05);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .founder-card i.quote-icon {
            font-size: 4rem;
            color: rgba(0, 212, 255, 0.1);
            position: absolute;
            top: 30px;
            left: 30px;
            transition: var(--transition);
        }

        .founder-card:hover i.quote-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .founder-card p {
            font-style: italic;
            font-size: 1.4rem;
            margin-bottom: 40px;
            color: #eee;
            line-height: 1.8;
        }

        .founder-info h4 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .founder-info span {
            color: var(--accent);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .team-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(0, 212, 255, 0.1);
            transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
            position: relative;
            overflow: hidden;
        }

        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.05), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
            pointer-events: none;
        }

        .team-card:hover::before {
            transform: translateX(100%);
        }

        .team-card:hover {
            transform: translateY(-15px);
            background: rgba(0, 212, 255, 0.05);
            border-color: var(--primary);
            box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 25px;
            border: 2px solid var(--primary);
            padding: 5px;
            object-fit: cover;
            filter: grayscale(100%);
            transition: var(--transition);
        }

        .team-card:hover .team-img {
            filter: grayscale(0%);
            transform: scale(1.1);
            box-shadow: var(--glow);
        }

        .team-info h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--text-light);
        }

        .team-info .role {
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .team-info p {
            font-size: 0.95rem;
            color: #aaa;
            margin-bottom: 20px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .team-social a {
            color: #666;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .team-social a:hover {
            color: var(--primary);
            text-shadow: var(--glow);
        }

        /* Footer */
        footer {
            background-color: #050505;
            padding: 55px 0 20px;
            position: relative;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.03);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.3rem;
        }

        .social-links a:hover {
            background: var(--primary);
            color: var(--bg-dark);
            box-shadow: var(--glow);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
            color: #555;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-content { flex-direction: column; text-align: center; }
            .about-text .section-title { text-align: center !important; }
            .about-text .underline { margin: 0 auto !important; }
            .page-header h1 { font-size: 3rem; }
        }

        @media (max-width: 768px) {
            nav {
                min-height: 72px;
            }

            .logo img {
                height: 42px;
                flex-shrink: 0;
            }

            .logo-text {
                font-size: 1rem;
                line-height: 1.2;
            }

            .nav-links {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                padding: 0 24px;
                pointer-events: none;
                text-align: center;
                transform: translateY(-16px);
                border-bottom: 1px solid var(--primary);
                backdrop-filter: blur(20px);
                box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45);
                transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
            }

            .nav-links.active {
                max-height: 420px;
                opacity: 1;
                padding: 26px 24px;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links li {
                width: 100%;
                opacity: 0;
                transform: translateY(-8px);
                transition: opacity 0.28s ease 0.05s, transform 0.28s ease 0.05s;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links a {
                display: block;
                padding: 14px 0;
            }

            .hamburger {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 44px;
                height: 44px;
            }

            .page-header h1 {
                font-size: 2.5rem;
                letter-spacing: 2px;
                line-height: 1.15;
            }

            .page-header p {
                font-size: 1.35rem !important;
                line-height: 1.55;
                margin-left: auto;
                margin-right: auto;
                max-width: 320px;
            }

            .page-header { background-attachment: scroll; }
            .mv-grid { grid-template-columns: 1fr; }
            .founder-card { padding: 40px 25px; }
            .founder-card p { font-size: 1.1rem; }
            .section-title h2 { font-size: 2rem; }
            .about-content { gap: 30px; }
        }
    

