
        :root {
            --bg-dark: #0A0F1E;
            --bg-dark-blue: #081024;
            --neon-cyan: #00FFFF;
            --electric-blue: #2c79ff;
            --neon-purple: #a239ea;
            --glow-cyan: rgba(0, 255, 255, 0.5);
            --glow-blue: rgba(44, 121, 255, 0.5);
            --glow-purple: rgba(162, 57, 234, 0.5);
            --transition-fast: all 0.3s ease;
            --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            --text-light: #E0E0E0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-dark);
            color: #E0E0E0;
            overflow-x: hidden;
            background-image: 
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23081024' fill-opacity='0.6'%3E%3Crect x='0' y='0' width='100' height='100'/%3E%3Cg fill='%230A0F1E'%3E%3Cpolygon points='0 100 100 100 100 0 50 0 0 50'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        /* Animated background elements */
        body::before, body::after {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            z-index: -2;
        }

        body::before {
            background-image: 
                linear-gradient(to right, rgba(44, 121, 255, 0.1) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(44, 121, 255, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: pan-grid 60s linear infinite;
        }

        body::after {
            background: radial-gradient(ellipse at 20% 80%, var(--glow-blue) 0%, transparent 50%),
                        radial-gradient(ellipse at 80% 30%, var(--glow-purple) 0%, transparent 50%);
            animation: aurora 20s infinite alternate;
        }

        @keyframes pan-grid {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }
        
        @keyframes aurora {
            from { opacity: 0.5; }
            to { opacity: 1; }
        }

        /* General Styling */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        section { padding: 120px 0; position: relative; overflow: hidden; }
        h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; text-shadow: 0 0 10px var(--glow-blue); }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-title { font-size: 3rem; margin-bottom: 1rem; }
        .section-subtitle { font-size: 1.1rem; color: #b0c4de; max-width: 600px; margin: auto; }

        /* Header - Enhanced with CSS-only animations */
        header {
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            z-index: 1000;
            background: rgba(10, 15, 30, 0.5);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--glow-blue);
            transition: var(--transition-slow);
            transform: translateY(0);
        }

        /* Scroll effect using :target pseudo-class */
        #section1:target ~ header {
            background: rgba(10, 15, 30, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            padding: 5px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            transition: var(--transition-fast);
        }

        #section1:target ~ header .nav-container {
            padding: 8px 0;
        }

        .logo { 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            text-decoration: none; 
            font-family: 'Orbitron', sans-serif; 
            font-weight: 700; 
            font-size: 1.8rem; 
            color: white; 
            transition: var(--transition-fast); 
            z-index: 1001; 
        }

        .logo i { 
            animation: flicker 3s infinite; 
        }

        @keyframes flicker {
            0%, 100% { 
                color: var(--neon-cyan); 
                text-shadow: 0 0 10px var(--neon-cyan); 
            }
            50% { 
                color: white; 
                text-shadow: none; 
            }
        }

        .logo span {
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition-fast);
        }

        /* Desktop Navigation */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu li a {
            color: #E0E0E0;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: var(--transition-fast);
        }

        .nav-menu li a:hover {
            color: var(--neon-cyan);
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neon-cyan);
            box-shadow: 0 0 5px var(--neon-cyan);
            transition: var(--transition-fast);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        /* Desktop Action Buttons */
        .nav-actions {
            display: flex;
            gap: 15px;
        }

        .btn { 
            padding: 10px 20px; 
            border-radius: 8px; 
            text-decoration: none; 
            font-weight: 700; 
            transition: var(--transition-fast); 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            font-family: 'Orbitron', sans-serif; 
            font-size: 0.9rem; 
        }

        .btn-login {
            color: var(--neon-cyan);
            border: 1px solid var(--neon-cyan);
            box-shadow: 0 0 10px var(--glow-cyan);
        }

        .btn-login:hover {
            background: rgba(0, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .btn-primary {
            position: relative;
            border: 2px solid transparent;
            background: linear-gradient(var(--bg-dark-blue), var(--bg-dark-blue)) padding-box, 
                        linear-gradient(90deg, var(--neon-cyan), var(--neon-purple)) border-box;
            color: white;
        }

        .btn-primary:hover {
            box-shadow: 0 0 20px var(--glow-purple);
            transform: translateY(-3px);
        }

        /* Mobile Menu Toggle - CSS Only */
        #mobile-toggle {
            display: none;
        }

        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition-fast);
            z-index: 1001;
        }

        .hamburger:hover {
            color: var(--neon-cyan);
            transform: scale(1.1);
        }

        /* Mobile Menu - CSS Only */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(10, 15, 30, 0.98);
            backdrop-filter: blur(15px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            transition: var(--transition-slow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
        }

        #mobile-toggle:checked ~ .mobile-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mobile-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu li {
            margin: 1.5rem 0;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-slow);
        }

        #mobile-toggle:checked ~ .mobile-menu li {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu li:nth-child(5) { transition-delay: 0.5s; }
        .mobile-menu li:nth-child(6) { transition-delay: 0.6s; }
        .mobile-menu li:nth-child(7) { transition-delay: 0.7s; }

        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: var(--transition-fast);
            display: block;
            padding: 0.5rem 1rem;
            position: relative;
        }

        .mobile-menu a:hover {
            color: var(--neon-cyan);
            transform: scale(1.1);
        }

        .mobile-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--neon-cyan);
            box-shadow: 0 0 5px var(--neon-cyan);
            transition: var(--transition-fast);
        }

        .mobile-menu a:hover::after {
            width: 80%;
        }

        .mobile-menu-actions {
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-slow);
        }

        #mobile-toggle:checked ~ .mobile-menu .mobile-menu-actions {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.8s;
        }

        .mobile-menu-actions .btn {
            width: 200px;
            justify-content: center;
        }

        .close-menu {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        .close-menu:hover {
            color: var(--neon-cyan);
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
        .hero-content { z-index: 2; }
        .hero .title-main {
            font-size: clamp(3rem, 10vw, 6rem);
            letter-spacing: 0.1em;
            background: linear-gradient(90deg, var(--neon-cyan), white, var(--neon-purple));
            -webkit-background-clip: text; color: transparent;
            background-size: 300% 300%;
            animation: gradient-flow 6s ease-in-out infinite;
        }
        @keyframes gradient-flow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
        .hero .title-sub { font-size: 1.5rem; letter-spacing: 0.5em; }

        /* Rotating 3D Cube in Hero */
        .hero-visual { position: absolute; width: 100%; height: 100%; top: 0; left: 0; perspective: 1000px; z-index: 1; pointer-events: none; }
        .cube { width: 200px; height: 200px; position: absolute; top: 50%; left: 50%; margin-left: 240px; margin-top: -100px; transform-style: preserve-3d; animation: rotate-cube 20s infinite linear; }
        .face { position: absolute; width: 200px; height: 200px; border: 1px solid var(--neon-cyan); background: rgba(0, 255, 255, 0.05); box-shadow: inset 0 0 20px var(--glow-cyan); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--neon-cyan); }
        .front  { transform: translateZ(100px); } .back   { transform: rotateY(180deg) translateZ(100px); } .right  { transform: rotateY(90deg) translateZ(100px); } .left   { transform: rotateY(-90deg) translateZ(100px); } .top    { transform: rotateX(90deg) translateZ(100px); } .bottom { transform: rotateX(-90deg) translateZ(100px); }
        @keyframes rotate-cube { from { transform: rotateX(0deg) rotateY(0deg); } to { transform: rotateX(360deg) rotateY(360deg); } }

        /* Card Styles */
        .card-glow-border {
            border-radius: 16px; position: relative; background: var(--bg-dark-blue); padding: 2px; overflow: hidden; z-index: 1; transition: var(--transition-slow);
            height: 100%; /* Ensure all cards have the same height */
            display: flex;
            flex-direction: column;
        }
        .card-glow-border:hover { transform: translateY(-10px) scale(1.02); }
        .card-glow-border::before {
            content: ""; position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; z-index: -1;
            background: conic-gradient( transparent, var(--neon-purple), var(--electric-blue), transparent 30% );
            animation: rotate-glow 5s linear infinite;
        }
        .card-glow-border .card-content { 
            background: var(--bg-dark-blue); 
            padding: 2rem; 
            border-radius: 14px; 
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        @keyframes rotate-glow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .card-glow-border:hover::before { animation-duration: 2s; }
        .card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

        /* Buttons */
        .btn { padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 700; transition: var(--transition-slow); display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Orbitron', sans-serif; }
        .btn-primary {
            position: relative; border: 2px solid transparent;
            background: linear-gradient(var(--bg-dark-blue), var(--bg-dark-blue)) padding-box, linear-gradient(90deg, var(--neon-cyan), var(--neon-purple)) border-box;
            color: white;
        }
        .btn-primary:hover { box-shadow: 0 0 20px var(--glow-purple); transform: scale(1.05); }
        .btn-secondary {
            background: transparent;
            color: var(--neon-cyan);
            border: 1px solid var(--neon-cyan);
            box-shadow: 0 0 10px var(--glow-cyan);
        }
        .btn-secondary:hover { background: rgba(0, 255, 255, 0.1); transform: scale(1.05); }

        /* Timeline */
        .journey-timeline { position: relative; border-left: 2px solid; border-image: linear-gradient(to bottom, var(--electric-blue), var(--neon-purple)) 1; }
        .timeline-item { position: relative; padding-left: 2rem; margin-bottom: 2rem; }
        .timeline-item::before {
            content: ''; position: absolute; left: -9px; top: 5px; width: 16px; height: 16px; border-radius: 50%;
            background: var(--bg-dark-blue); border: 2px solid var(--electric-blue); transition: var(--transition-fast);
        }
        .timeline-item:hover::before { background: var(--neon-cyan); border-color: var(--neon-cyan); box-shadow: 0 0 15px var(--neon-cyan); transform: scale(1.2); }
        .timeline-content { background: rgba(10, 15, 30, 0.5); padding: 1.5rem; border-radius: 8px; transition: var(--transition-fast); }
        .timeline-item:hover .timeline-content { box-shadow: inset 0 0 20px rgba(44, 121, 255, 0.2); }

        /* Code Terminal */
        .code-terminal {
            background: rgba(10, 15, 30, 0.7);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--glow-cyan);
            transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
            transition: var(--transition-slow);
            border: 1px solid rgba(0, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .code-terminal:hover {
            transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--neon-cyan);
        }

        .terminal-header {
            background: rgba(20, 25, 45, 0.8);
            padding: 1.2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }

        .terminal-dots {
            display: flex;
            gap: 0.6rem;
        }

        .terminal-dots span {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #ff5f56;
            box-shadow: 0 0 5px #ff5f56;
        }

        .terminal-dots span:nth-child(2) {
            background: #ffbd2e;
            box-shadow: 0 0 5px #ffbd2e;
        }

        .terminal-dots span:nth-child(3) {
            background: #27ca3f;
            box-shadow: 0 0 5px #27ca3f;
        }

        .terminal-content {
            padding: 2rem;
            font-family: 'Courier New', monospace;
            background: rgba(5, 10, 20, 0.5);
            min-height: 250px;
        }

        .code-line {
            margin-bottom: 0.8rem;
            color: #b0c4de;
            display: flex;
            align-items: center;
        }

        .prompt {
            color: var(--neon-cyan);
            margin-right: 0.8rem;
            font-weight: 600;
            text-shadow: 0 0 5px var(--neon-cyan);
        }

        /* Stats */
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 3rem;
            justify-content: center;
        }

        .stat {
            text-align: center;
            transition: var(--transition-fast);
        }

        .stat:hover {
            transform: scale(1.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--neon-cyan);
            display: block;
            line-height: 1;
            text-shadow: 0 0 10px var(--neon-cyan);
        }

        .stat-label {
            color: #b0c4de;
            font-size: 0.95rem;
            margin-top: 0.5rem;
        }

        /* Team Section - Fixed */
        .team-section {
            width: 100%;
            padding: 50px 0;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .team-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .team-header h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--neon-cyan);
            margin-bottom: 6px;
            letter-spacing: -0.5px;
            text-shadow: 0 0 10px var(--neon-cyan);
        }

        .team-header p {
            color: #b0c4de;
            font-size: 1rem;
        }

        .team-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .member-cards {
            display: grid;
            gap: 22px;
        }

        .member-card {
            background: rgba(10, 15, 30, 0.5);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 22px;
            transition: var(--transition-slow);
            border: 1px solid rgba(44, 121, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        .member-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-blue);
        }

        .profile-pic {
            width: 90px;
            height: 90px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
            transition: var(--transition-fast);
        }

        .member-card:hover .profile-pic {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
        }

        .member-info {
            flex: 1;
        }

        .member-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .member-role {
            color: var(--neon-cyan);
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .member-bio {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #b0c4de;
            margin-bottom: 8px;
        }

        .member-timeline {
            color: var(--neon-cyan);
            font-weight: 500;
            font-size: 0.9rem;
        }

        /* Acknowledgements Card */
        .credits {
            background: rgba(10, 15, 30, 0.5);
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            padding: 22px;
            width: 100%;
            border: 1px solid rgba(44, 121, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: var(--transition-slow);
        }

        .credits:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-cyan);
        }

        .credits h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.2rem;
            color: var(--neon-cyan);
            margin-bottom: 14px;
        }

        .credits-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .credits-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            transition: var(--transition-fast);
        }

        .credits-item:hover {
            transform: translateX(5px);
        }

        .credits-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--neon-cyan);
            margin-top: 5px;
            box-shadow: 0 0 5px var(--neon-cyan);
        }

        .credits-text {
            color: #b0c4de;
            font-size: 0.95rem;
        }

        /* Footer */
        .footer {
            background: rgba(5, 10, 20, 0.8);
            padding: 5rem 0 2.5rem;
            border-top: 1px solid rgba(44, 121, 255, 0.2);
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 5rem;
            margin-bottom: 4rem;
        }

        .footer-brand .logo {
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .footer-brand p {
            color: #b0c4de;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1.2rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(10, 15, 30, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b0c4de;
            text-decoration: none;
            transition: var(--transition-fast);
            font-size: 1.3rem;
            border: 1px solid rgba(44, 121, 255, 0.2);
        }

        .social-links a:hover {
            background: var(--neon-cyan);
            color: var(--bg-dark);
            transform: translateY(-5px);
            box-shadow: 0 0 15px var(--neon-cyan);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .link-group h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 0.5rem;
            font-family: 'Orbitron', sans-serif;
        }

        .link-group h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--neon-cyan);
            box-shadow: 0 0 5px var(--neon-cyan);
        }

        .link-group a {
            display: block;
            color: #b0c4de;
            text-decoration: none;
            margin-bottom: 0.8rem;
            transition: var(--transition-fast);
            padding: 0.3rem 0;
        }

        .link-group a:hover {
            color: var(--neon-cyan);
            transform: translateX(8px);
            text-shadow: 0 0 5px var(--neon-cyan);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(44, 121, 255, 0.2);
            color: #b0c4de;
            font-size: 1rem;
        }

        /* Improved Card Alignment */
        .features-grid, .courses-grid, .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            align-items: stretch;
        }
        
        .card-content {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .card-content h3 {
            margin-bottom: 1rem;
            min-height: 3rem;
            display: flex;
            align-items: center;
        }
        
        .card-content p {
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }
        
        .course-meta {
            margin-top: auto;
        }

        /* Course Images */
        .course-image {
            width: 100%;
            height: 200px;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            position: relative;
        }
        
        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card-glow-border:hover .course-image img {
            transform: scale(1.05);
        }
        
        /* Journey Logos */
        .journey-logos {
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .journey-logo {
            width: 120px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(10, 15, 30, 0.5);
            border-radius: 8px;
            padding: 10px;
            border: 1px solid rgba(44, 121, 255, 0.2);
            transition: var(--transition-fast);
        }
        
        .journey-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .journey-logo img {
            max-width: 100%;
            max-height: 100%;
            filter: brightness(0) invert(1);
        }
        
        /* Contact Form */
        .contact-form {
            background: rgba(10, 15, 30, 0.5);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(44, 121, 255, 0.2);
            backdrop-filter: blur(10px);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--neon-cyan);
            font-weight: 600;
        }
        
        .form-input, .form-textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            background: rgba(5, 10, 20, 0.7);
            border: 1px solid rgba(44, 121, 255, 0.3);
            color: white;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition-fast);
        }
        
        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 10px var(--glow-cyan);
        }
        
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
            border: none;
            border-radius: 8px;
            color: white;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            cursor: pointer;
            transition: var(--transition-fast);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .hero-description {
                max-width: 100%;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .about-visual {
                position: static;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .team-content {
                grid-template-columns: 1fr;
            }
            
            .title-main {
                font-size: 3.5rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .cube {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                display: none;
            }
            
            .nav-actions {
                display: none;
            }
            
            .nav {
                flex-wrap: wrap;
            }
            
            .title-main {
                font-size: 3rem;
            }
            
            .title-sub {
                font-size: 1.5rem;
            }
            
            .hero-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .growth-stats {
                grid-template-columns: 1fr 1fr;
                gap: 1.5rem;
            }
            
            .courses-grid, .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
            
            .cta-content h2 {
                font-size: 2.8rem;
            }
            
            .member-card {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .profile-pic {
                margin: 0 auto;
            }
            
            .community-container {
                padding: 20px;
                gap: 15px;
            }
            
            .card {
                width: 100%;
                max-width: 280px;
            }
            
            .journey-logos {
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .title-main {
                font-size: 2.5rem;
            }
            
            .title-sub {
                font-size: 1.3rem;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-large, .btn-xlarge {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .cta-content h2 {
                font-size: 2.3rem;
            }
            
            .cta-content p {
                font-size: 1.1rem;
            }
            
            .team-header h1 {
                font-size: 2rem;
            }
            
            .journey-timeline {
                padding-left: 1rem;
            }
            
            .timeline-item {
                padding-left: 1.5rem;
            }
            
            .timeline-year {
                left: -2.5rem;
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }
            
            .timeline-content {
                padding: 1.5rem;
            }
            
            .growth-stats {
                grid-template-columns: 1fr;
            }
            
            .footer-links {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .journey-logos {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }
        }
  