    /* Wave canvas styling */
    .wave-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        /* filter: blur(8px); Blur effect for the waves */
    }

    .back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: -2;
        position: fixed;
        background-repeat: no-repeat;
        transition: filter 0.6s ease;
        will-change: transform, filter;
    }

    .back.blurred {
        filter: blur(8px);
    }

    .content {
        position: relative;
        z-index: 1;
        color: white;
        width: 100%;
    }

    /* Rest of the original styles */
    @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@300;400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --primary-blue: #00d4ff;
        --secondary-blue: #0099cc;
        --accent-cyan: #00ffff;
        --warning-red: #ff0040;
        --ultron-red: #dc143c;
        --dark-bg: #000000;
        --darker-bg: #0a0a0a;
        --glass-bg: rgba(255, 255, 255, 0.03);
        --glass-border: rgba(0, 212, 255, 0.2);
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
    }

    body {
        font-family: 'Rajdhani', sans-serif;
        background: var(--dark-bg);
        color: var(--text-primary);
        overflow-x: hidden;
        position: relative;
    }

    /* Loading Screen */
    .loading-screen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 120%;
        background: radial-gradient(ellipse at center, #0a0a1a 0%, #000010 100%);
        z-index: 10000;
        font-family: 'Courier New', monospace;
        transition: opacity 1s ease, visibility 1s ease;
    }

    .loading-screen.hidden {
        opacity: 0;
        visibility: hidden;
    }

    .loading-container {
        position: relative;
        width: 100vw;
        height: 100vh;
    }

    .logo-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 400px;
        height: 600px;
    }

    .initial-dot {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 4px;
        height: 4px;
        background: #f5f5dc;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 20px #f5f5dc, 0 0 40px #f5f5dc, 0 0 60px #f5f5dc;
        animation: pulse 1.5s ease-in-out infinite;
    }

    .logo-svg line,
    .logo-svg polygon {
        stroke-linecap: round;
        stroke-linejoin: round;
        shape-rendering: geometricPrecision;
    }

    .thick-line {
        stroke: #ffffff;
        stroke-width: 0.22;
    }

    .thin-line {
        stroke: #ffffff;
        stroke-width: 0.22;
    }

    .triangle {
        stroke: none;
        stroke-width: 0.05;
        fill: white;
    }

    @keyframes pulse {
        0%, 100% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.5); }
    }

    .logo-svg {
        width: 100%;
        height: 100%;
        opacity: 0;
    }

    .logo-element {
        opacity: 0;
    }

    .grid-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            linear-gradient(rgba(10, 20, 80, 0.2) 1px, transparent 1px),
            linear-gradient(90deg, rgba(10, 20, 80, 0.2) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: gridMove 5s linear infinite;
        opacity: 0.3;
    }

    @keyframes gridMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(50px, 50px); }
    }

    .particles {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .particle {
        position: absolute;
        width: 2px;
        height: 2px;
        background: #ffffff;
        border-radius: 50%;
        animation: float 6s linear infinite;
    }

    @keyframes float {
        0% { transform: translateY(100vh) scale(0); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-100vh) scale(1); opacity: 0; }
    }

    .company-name {
        position: absolute;
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2.5rem;
        color: #ffffff;
        text-shadow: 0 0 20px rgba(65, 105, 225, 0.5);
        opacity: 0;
        letter-spacing: 8px;
        font-weight: 300;
    }

    .tagline {
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.9rem;
        color: #f5f5dc;
        opacity: 0;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .scan-line {
        position: absolute;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(65, 105, 225, 0.8), transparent);
        top: 50%;
        animation: scan 2s ease-in-out infinite;
        opacity: 0.5;
    }

    @keyframes scan {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(100%); }
    }

    .corner-ui {
        position: absolute;
        font-size: 0.7rem;
        color: rgba(65, 105, 225, 0.8);
        font-family: 'Courier New', monospace;
        text-shadow: 0 0 5px rgba(65, 105, 225, 0.5);
    }

    .corner-ui.top-left {
        top: 20px;
        left: 20px;
    }

    .corner-ui.top-right {
        top: 20px;
        right: 20px;
    }

    .corner-ui.bottom-left {
        bottom: 20px;
        left: 20px;
    }

    .corner-ui.bottom-right {
        bottom: 20px;
        right: 20px;
    }

    .loading-bar {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 2px;
        background: rgba(10, 20, 80, 0.5);
        opacity: 0;
    }

    .loading-progress {
        height: 100%;
        background: linear-gradient(90deg, #0a0a2a, #4169e1, #0a0a2a);
        width: 0%;
        box-shadow: 0 0 10px rgba(65, 105, 225, 0.8);
    }

    /* Circuit Background */
    .circuit-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        opacity: 0.1;
        background-image:
            linear-gradient(90deg, transparent 49%, var(--primary-blue) 50%, transparent 51%),
            linear-gradient(0deg, transparent 49%, var(--primary-blue) 50%, transparent 51%);
        background-size: 100px 100px;
        animation: circuitFlow 20s linear infinite;
    }

    @keyframes circuitFlow {
        0% { transform: translate(0, 0); }
        100% { transform: translate(100px, 100px); }
    }

    /* Data Streams */
    .data-streams {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
    }

    .data-stream {
        position: absolute;
        width: 2px;
        height: 100px;
        background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
        animation: dataFlow 3s linear infinite;
    }

    /* AI HUD */
    .ai-hud {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 1;
        opacity: 0.3;
    }

    .hud-corner {
        position: absolute;
        width: 100px;
        height: 100px;
        border: 2px solid var(--primary-blue);
    }

    .hud-corner.top-left {
        top: 20px;
        left: 20px;
        border-right: none;
        border-bottom: none;
        animation: hudPulse 3s ease-in-out infinite;
    }

    .hud-corner.top-right {
        top: 20px;
        right: 20px;
        border-left: none;
        border-bottom: none;
        animation: hudPulse 3s ease-in-out infinite 1s;
    }

    .hud-corner.bottom-left {
        bottom: 20px;
        left: 20px;
        border-right: none;
        border-top: none;
        animation: hudPulse 3s ease-in-out infinite 2s;
    }

    .hud-corner.bottom-right {
        bottom: 20px;
        right: 20px;
        border-left: none;
        border-top: none;
        animation: hudPulse 3s ease-in-out infinite 0.5s;
    }

    @keyframes hudPulse {
        0%, 100% {
            border-color: var(--primary-blue);
            box-shadow: 0 0 10px var(--primary-blue);
        }
        50% {
            border-color: var(--accent-cyan);
            box-shadow: 0 0 20px var(--accent-cyan);
        }
    }

    /* Enhanced Navigation */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        z-index: 1000;
        padding: 1rem 2rem;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        backface-visibility: hidden;
    }

    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
        border-bottom: 2px solid var(--primary-blue);
    }

    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .logo {
        font-family: 'Orbitron', monospace;
        font-size: 2rem;
        font-weight: 900;
        color: var(--primary-blue);
        position: relative;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }

    .logo::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: translateX(-100%);
        transition: transform 0.8s ease;
    }

    .logo:hover::after {
        transform: translateX(100%);
    }

    .logo:hover {
        text-shadow: 0 0 20px var(--primary-blue), 0 0 40px rgba(0, 212, 255, 0.5);
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 3rem;
    }

    .nav-links a {
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        position: relative;
        padding: 0.5rem 1rem;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: 'Orbitron', monospace;
    }

    .nav-links a:hover {
        color: var(--primary-blue);
        text-shadow: 0 0 20px var(--primary-blue);
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-blue);
        transition: width 0.4s ease;
    }

    .nav-links a:hover::before {
        width: 100%;
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--primary-blue);
        transition: all 0.3s ease;
    }

    /* Scroll Progress */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
        z-index: 9999;
        transition: width 0.1s ease;
    }

    .scroll-progress::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
        animation: progressGlow 2s ease-in-out infinite;
    }

    /* Hero Section */
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .hero-interface {
        position: absolute;
        width: 80%;
        height: 80%;
        /* border: 1px solid var(--primary-blue); */
        border-radius: 10px;
        opacity: 0.3;
        animation: interfaceStartup 3s ease-out forwards;
    }

    .hero-content {
        text-align: center;
        z-index: 2;
        position: relative;
        max-width: 1000px;
        padding: 2rem;
    }

    .ai-greeting {
        font-family: 'Orbitron', monospace;
        font-size: 1.2rem;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        opacity: 0;
        animation: textReveal 1s ease 0.5s forwards;
    }

    .hero h1 {
        font-family: 'Orbitron', monospace;
        font-size: clamp(2.5rem, 8vw, 6rem);
        font-weight: 900;
        margin-bottom: 1rem;
        color: var(--text-primary);
        position: relative;
        opacity: 0;
        animation: textReveal 1s ease 1s forwards;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 2rem);
        font-weight: 300;
        margin-bottom: 2rem;
        color: var(--text-secondary);
        opacity: 0;
        animation: textReveal 1s ease 1.5s forwards;
    }

    .hero-description {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 3rem;
        color: var(--text-secondary);
        opacity: 0;
        animation: textReveal 1s ease 2s forwards;
    }

    .system-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }

    .stat-item {
        text-align: center;
        opacity: 0;
        animation: statReveal 1s ease forwards;
    }

    .stat-item:nth-child(1) { animation-delay: 2.5s; }
    .stat-item:nth-child(2) { animation-delay: 2.7s; }
    .stat-item:nth-child(3) { animation-delay: 2.9s; }

    .stat-value {
        font-family: 'Orbitron', monospace;
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-blue);
        display: block;
        position: relative;
    }

    .stat-label {
        color: var(--text-secondary);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 0.5rem;
    }

    /* Sections */
    .section {
        padding: 8rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    .section-title {
        font-family: 'Orbitron', monospace;
        font-size: clamp(2rem, 6vw, 4rem);
        text-align: center;
        margin-bottom: 4rem;
        color: var(--text-primary);
        position: relative;
    }

    .section-title::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
        transform: translateY(-50%);
        animation: titleScan 4s ease-in-out infinite;
    }

    /* About Section */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-interface {
        position: relative;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 3rem;
        overflow: hidden;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Rubik's Cube */
    .cube-container {
        position: relative;
        width: 100%;
        max-width: 500px;
        height: 500px;
        margin: 0 auto;
        perspective: 2000px;
    }

    .cube-stage {
        width: 80%;
        height: 80%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 3s ease-in-out;
        transform: rotateX(-20deg) rotateY(-30deg);
    }

    .cube-face {
        position: absolute;
        width: 80%;
        height: 80%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 8px;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        padding: 10px;
        box-sizing: border-box;
    }

    .cube-sticker {
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Orbitron', monospace;
        font-weight: 600;
        color: #fff;
        background: rgba(0, 212, 255, 0.1);
        border: 1px solid rgba(0, 212, 255, 0.2);
        transition: all 0.3s ease;
    }

    .cube-sticker:hover {
        background: rgba(0, 212, 255, 0.2);
        transform: scale(1.05);
    }

    .cube-sticker .brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .cube-sticker .mark {
        width: 34px;
        height: 34px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        background: var(--primary-blue);
        color: var(--dark-bg);
    }

    .cube-sticker .name {
        font-size: 11px;
        opacity: 0.95;
        color: var(--text-primary);
    }

    /* Face positions */
    .cube-face.front { transform: translateZ(160px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(160px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(160px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(160px); }
    .cube-face.up { transform: rotateX(90deg) translateZ(160px); }
    .cube-face.down { transform: rotateX(-90deg) translateZ(160px); }

    /* Services Section */
    .capabilities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .capability-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 2.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.6s ease;
        cursor: pointer;
    }

    .service-icon-container {
        width: 100%;
        height: 200px;
        background: rgba(0, 212, 255, 0.1);
        border-radius: 15px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        position: relative;
        border: 1px solid var(--glass-border);
    }

    .service-icon {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .capability-card:hover .service-icon {
        transform: scale(1.05);
    }

    .capability-title {
        font-family: 'Orbitron', monospace;
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .capability-description {
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Process Timeline */
    .timeline-container {
        position: relative;
        max-width: 1000px;
        margin: 4rem auto;
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, var(--primary-blue), var(--accent-cyan));
        transform: translateX(-50%);
    }

    .timeline-item {
        position: relative;
        margin: 3rem 0;
        opacity: 0;
        animation: timelineReveal 1s ease forwards;
    }

    .timeline-content {
        width: 45%;
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 2rem;
        position: relative;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 55%;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 55%;
    }

    .timeline-dot {
        position: absolute;
        top: 50%;
        left: 100%;
        width: 20px;
        height: 20px;
        background: var(--primary-blue);
        border: 4px solid var(--dark-bg);
        border-radius: 50%;
        transform: translateY(-50%);
        animation: dotPulse 2s ease-in-out infinite;
    }

    .timeline-dott {
        position: absolute;
        top: 50%;
        right: 100%;
        width: 20px;
        height: 20px;
        background: var(--primary-blue);
        border: 4px solid var(--dark-bg);
        border-radius: 50%;
        transform: translateY(-50%);
        animation: dotPulse 2s ease-in-out infinite;
    }

    /* Portfolio */
    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
    }

    .project-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        transition: all 0.6s ease;
        cursor: pointer;
    }

    .project-image {
        height: 250px;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-info {
        padding: 2rem;
    }

    .project-title {
        font-family: 'Orbitron', monospace;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
    }

    .project-type {
        color: var(--primary-blue);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .project-description {
        color: var(--text-secondary);
        line-height: 1.6;
    }

    /* Testimonials */
    .testimonials-container {
        position: relative;
        width: 100%;
        margin: 2rem 0;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 0 auto;
    }

    .testimonial-card {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 2rem;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: 2rem;
        position: relative;
    }

    .testimonial-quote::before {
        content: '"';
        font-size: 3rem;
        color: var(--primary-blue);
        opacity: 0.3;
        position: absolute;
        top: -20px;
        left: -10px;
        line-height: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-size: cover;
        background-position: center;
        background-color: var(--primary-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark-bg);
        font-weight: bold;
        font-size: 1.2rem;
    }

    .author-info h4 {
        color: var(--text-primary);
        margin-bottom: 0.25rem;
    }

    .author-info p {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    /* Team Section */
    .team-section {
        margin-top: 4rem;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;
    }

    .team-member {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        padding: 2rem;
        display: flex;
        align-items: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .team-member:hover {
        transform: scale(1.02);
        border-color: var(--primary-blue);
    }

    .member-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 2rem;
        border: 3px solid var(--primary-blue);
        transition: all 0.4s ease;
    }

    .team-member:hover .member-image {
        width: 80px;
        height: 80px;
        margin-right: 1rem;
    }

    .member-info {
        flex: 1;
    }

    .member-name {
        font-family: 'Orbitron', monospace;
        font-size: 1.5rem;
        color: var(--text-primary);
        margin-bottom: 0.5rem;
        transition: all 0.4s ease;
    }

    .team-member:hover .member-name {
        margin-bottom: 1rem;
    }

    .member-position {
        color: var(--primary-blue);
        font-weight: 600;
        margin-bottom: 1rem;
        transition: all 0.4s ease;
    }

    .team-member:hover .member-position {
        margin-bottom: 0.5rem;
    }

    .member-bio {
        color: var(--text-secondary);
        line-height: 1.6;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, margin-bottom 0.4s ease;
    }

    .team-member:hover .member-bio {
        max-height: 100px;
        margin-bottom: 1rem;
    }

    .member-social {
        display: flex;
        gap: 1rem;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
    }

    .team-member:hover .member-social {
        opacity: 1;
        transform: translateY(0);
    }

    .social-link {
        color: var(--text-secondary);
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .social-link:hover {
        color: var(--primary-blue);
    }

    /* Contact Section */
    .contact-interface {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 4rem;
        margin: 4rem 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        margin-top: 3rem;
        position: relative;
        z-index: 2;
    }

    .contact-method {
        background: rgba(0, 212, 255, 0.05);
        border: 1px solid var(--primary-blue);
        border-radius: 15px;
        padding: 2rem;
        transition: all 0.6s ease;
        position: relative;
        overflow: hidden;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .contact-icon-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin: 0 auto 1.5rem;
        background: white;
        padding: 15px;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .contact-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .contact-method:hover .contact-img {
        transform: scale(1.1);
    }

    .contact-method:hover .contact-icon-circle {
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    }

    /* Footer */
    .ai-footer {
        background: var(--darker-bg);
        border-top: 1px solid var(--glass-border);
        padding: 3rem 2rem 2rem;
        text-align: center;
        position: relative;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
    }

    .footer-status {
        font-family: 'Orbitron', monospace;
        color: var(--primary-blue);
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    /* Animations */
    @keyframes interfaceStartup {
        0% {
            opacity: 0;
            transform: scale(0.8);
            border-color: transparent;
        }
        50% {
            border-color: var(--primary-blue);
        }
        100% {
            opacity: 0.3;
            transform: scale(1);
        }
    }

    @keyframes textReveal {
        0% {
            opacity: 0;
            transform: translateY(30px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes statReveal {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @keyframes titleScan {
        0%, 100% { opacity: 0; }
        50% { opacity: 0.5; }
    }

    @keyframes iconFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes timelineReveal {
        0% {
            opacity: 0;
            transform: translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes dotPulse {
        0%, 100% {
            box-shadow: 0 0 10px var(--primary-blue);
            transform: translateY(-50%) scale(1);
        }
        50% {
            box-shadow: 0 0 20px var(--primary-blue);
            transform: translateY(-50%) scale(1.2);
        }
    }

    @keyframes progressGlow {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.2); }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .about-grid { grid-template-columns: 1fr; gap: 2rem; }
        .capabilities-grid { grid-template-columns: 1fr; }
        .portfolio-grid { grid-template-columns: 1fr; }
        .cube-container {
            max-width: 400px;
            height: 400px;
        }

        .cube-face {
            transform-style: preserve-3d;
            backface-visibility: visible;
        }

        .cube-face.front { transform: translateZ(200px); }
        .cube-face.back { transform: rotateY(180deg) translateZ(200px); }
        .cube-face.right { transform: rotateY(90deg) translateZ(200px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(200px); }
        .cube-face.up { transform: rotateX(90deg) translateZ(200px); }
        .cube-face.down { transform: rotateX(-90deg) translateZ(200px); }

        .cube-face {
            padding: 8px;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.5s ease;
            z-index: 1000;
            padding-top: 80px;
            border-left: 1px solid var(--glass-border);
        }

        .nav-links.active {
            right: 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .hero h1 { font-size: 2.5rem; }
        .system-stats { flex-direction: column; gap: 1.5rem; }
        .timeline-line { left: 30px; }
        .timeline-content { width: calc(100% - 80px) !important; margin-left: 80px !important; margin-right: 0 !important; }
        .timeline-dot { left: -10px !important; right: auto !important; }
        .timeline-dott { left: -10px !important; right: auto !important; }
        .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
        .cube-container {
            max-width: 300px;
            height: 300px;
        }

        .cube-face.front { transform: translateZ(150px); }
        .cube-face.back { transform: rotateY(180deg) translateZ(150px); }
        .cube-face.right { transform: rotateY(90deg) translateZ(150px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(150px); }
        .cube-face.up { transform: rotateX(90deg) translateZ(150px); }
        .cube-face.down { transform: rotateX(-90deg) translateZ(150px); }

        .cube-sticker .mark {
            width: 24px;
            height: 24px;
            font-size: 12px;
        }

        .cube-sticker .name {
            font-size: 9px;
        }

        /* Responsive testimonials */
        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        /* Responsive team section */
        .team-grid {
            grid-template-columns: 1fr;
        }

        .team-member {
            flex-direction: column;
            text-align: center;
        }

        .member-image {
            margin-right: 0;
            margin-bottom: 1.5rem;
        }

        .team-member:hover .member-image {
            margin-right: 0;
            margin-bottom: 1rem;
        }
    }

    @media (max-width: 480px) {
        .cube-container {
            max-width: 250px;
            height: 250px;
        }

        .cube-face.front { transform: translateZ(125px); }
        .cube-face.back { transform: rotateY(180deg) translateZ(125px); }
        .cube-face.right { transform: rotateY(90deg) translateZ(125px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(125px); }
        .cube-face.up { transform: rotateX(90deg) translateZ(125px); }
        .cube-face.down { transform: rotateX(-90deg) translateZ(125px); }

        .cube-sticker .mark {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

        .cube-sticker .name {
            font-size: 8px;
        }
    }

    /* Intersection Observer Classes */
    .fade-in {
        opacity: 0;
        transform: translateY(50px);
        transition: all 1s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-in-left {
        opacity: 0;
        transform: translateX(-100px);
        transition: all 1s ease;
    }

    .slide-in-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .slide-in-right {
        opacity: 0;
        transform: translateX(100px);
        transition: all 1s ease;
    }

    .slide-in-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .scale-in {
        opacity: 0;
        transform: scale(0.8);
        transition: all 1s ease;
    }

    .scale-in.visible {
        opacity: 1;
        transform: scale(1);
    }

     .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .description {
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 10px;
        }
        
 
        
        .cube-section {
            flex: 1;
            min-width: 300px;
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .controls {
            flex: 1;
            min-width: 300px;
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 10px;
        }
        
        .cube-container {
            width: 300px;
            height: 300px;
            perspective: 1000px;
            margin: 20px auto;
        }
        
        .cube-stage {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(-20deg) rotateY(-30deg);
            transition: transform 0.5s ease;
        }
        
        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 8px;
            background: rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 10px;
            box-sizing: border-box;
        }
        
        .cube-sticker {
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #fff;
            background: rgba(0, 212, 255, 0.2);
            border: 1px solid rgba(0, 212, 255, 0.3);
        }
        
        /* Face positions */
        .cube-face.front { transform: translateZ(150px); }
        .cube-face.back { transform: rotateY(180deg) translateZ(150px); }
        .cube-face.right { transform: rotateY(90deg) translateZ(150px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(150px); }
        .cube-face.up { transform: rotateX(90deg) translateZ(150px); }
        .cube-face.down { transform: rotateX(-90deg) translateZ(150px); }
        
        .control-group {
            margin-bottom: 20px;
        }
        
        h3 {
            margin-bottom: 10px;
            color: #00d4ff;
        }
        
        .slider-container {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        input[type="range"] {
            flex: 1;
            height: 5px;
            -webkit-appearance: none;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 5px;
        }
        
        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #00d4ff;
            cursor: pointer;
        }
        
        .value-display {
            min-width: 40px;
            text-align: center;
            font-weight: bold;
        }
        
        .center-indicator {
            width: 10px;
            height: 10px;
            background: red;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }
        
        .preset-buttons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-top: 20px;
        }
        
        button {
            padding: 10px;
            background: #00d4ff;
            color: #000;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        button:hover {
            background: #00b8e6;
        }
        
        .coordinates {
            margin-top: 20px;
            padding: 10px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 5px;
            font-family: monospace;
        }
        


    
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(20px);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: right 0.5s ease;
            z-index: 1000;
            padding-top: 80px;
            border-left: 1px solid var(--glass-border);
        }

        .nav-links.active {
            right: 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        .hero h1 { font-size: 2.5rem; }
        .system-stats { flex-direction: column; gap: 1.5rem; }
        .timeline-line { left: 30px; }
        .timeline-content { width: calc(100% - 80px) !important; margin-left: 80px !important; margin-right: 0 !important; }
        .timeline-dot { left: -10px !important; right: auto !important; }
        .timeline-dott { left: -10px !important; right: auto !important; }
        .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
        .cube-container {
            max-width: 300px;
            height: 300px;
        }

        .cube-face.front { transform: translateZ(150px); }
        .cube-face.back { transform: rotateY(180deg) translateZ(150px); }
        .cube-face.right { transform: rotateY(90deg) translateZ(150px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(150px); }
        .cube-face.up { transform: rotateX(90deg) translateZ(150px); }
        .cube-face.down { transform: rotateX(-90deg) translateZ(150px); }

        .cube-sticker .mark {
            width: 24px;
            height: 24px;
            font-size: 12px;
        }

        .cube-sticker .name {
            font-size: 9px;
        }

        /* Responsive testimonials */
        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        /* Responsive team section */
        .team-grid {
            grid-template-columns: 1fr;
        }

        .team-member {
            flex-direction: column;
            text-align: center;
        }

        .member-image {
            margin-right: 0;
            margin-bottom: 1.5rem;
        }

        .team-member:hover .member-image {
            margin-right: 0;
            margin-bottom: 1rem;
        }
    }

    @media (max-width: 480px) {
        .cube-container {
            max-width: 250px;
            height: 250px;
        }

        .cube-face.front { transform: translateZ(125px); }
        .cube-face.back { transform: rotateY(180deg) translateZ(125px); }
        .cube-face.right { transform: rotateY(90deg) translateZ(125px); }
        .cube-face.left { transform: rotateY(-90deg) translateZ(125px); }
        .cube-face.up { transform: rotateX(90deg) translateZ(125px); }
        .cube-face.down { transform: rotateX(-90deg) translateZ(125px); }

        .cube-sticker .mark {
            width: 20px;
            height: 20px;
            font-size: 10px;
        }

        .cube-sticker .name {
            font-size: 8px;
        }
    }

    @media (max-width: 1600px){
        .back{
            height: 100%;
        }
        .content{
            margin-top: 1000px;
            width: 100%;
        }
    }
