/* ===================================
   CYBER THEME - MIRZA USMAN PORTFOLIO
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff41;
    --secondary: #0ff;
    --accent: #ff00ff;
    --bg-dark: #0a0e1a;
    --bg-darker: #050810;
    --bg-card: #0f1420;
    --text: #e0e0e0;
    --text-dim: #8892b0;
    --border: #1a2332;
    --glow: rgba(0, 255, 65, 0.5);
    --glow-cyan: rgba(0, 255, 255, 0.5);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-darker);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cyber Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cyber-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.cyber-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.logo-hexagon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: hexRotate 3s linear infinite;
}

@keyframes hexRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--bg-darker);
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.loader-text {
    font-family: 'Fira Code', monospace;
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 5px 30px rgba(0, 255, 65, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-bracket {
    color: var(--primary);
}

.logo-name {
    color: var(--text);
    margin: 0 5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 40px 80px;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.glitch-wrapper {
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--glow);
    position: relative;
}

.glitch {
    animation: glitch 3s infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    92% {
        transform: translate(-2px, 2px);
    }

    94% {
        transform: translate(2px, -2px);
    }

    96% {
        transform: translate(-2px, -2px);
    }
}

.hero-subtitle {
    font-family: 'Fira Code', monospace;
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
    min-height: 35px;
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tag {
    padding: 8px 16px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    border-radius: 4px;
    font-size: 12px;
    color: var(--primary);
    font-family: 'Fira Code', monospace;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-darker);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--glow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 65, 0.1);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.profile-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto 30px;
}

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary);
}

.frame-corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border: 2px solid var(--primary);
    filter: grayscale(30%) contrast(1.1);
    background: var(--bg-card);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    padding: 15px;
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.title-number {
    font-family: 'Fira Code', monospace;
    font-size: 24px;
    color: var(--primary);
}

.title-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
}

.title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}

/* About Section */
.about {
    padding: 120px 0;
}

.about-intro {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--text);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.expertise-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--primary);
    padding: 30px;
    transition: all 0.3s;
}

.expertise-item:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.1);
}

.expertise-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.expertise-item h3 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 10px;
}

.expertise-item p {
    color: var(--text-dim);
    font-size: 14px;
}

/* Skills Section */
.skills {
    padding: 120px 0;
    background: var(--bg-dark);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
}

.category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.skill-bar {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.skill-info span:first-child {
    color: var(--text);
}

.skill-info span:last-child {
    color: var(--primary);
    font-family: 'Fira Code', monospace;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0;
    transition: width 1.5s ease;
    box-shadow: 0 0 10px var(--glow);
}

.tools-section {
    margin-top: 60px;
}

.tools-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--text);
    text-align: center;
    margin-bottom: 30px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tool-badge {
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dim);
    transition: all 0.3s;
    cursor: pointer;
}

.tool-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 65, 0.2);
}

/* JARVIS Section */
.jarvis {
    padding: 120px 0;
}

.jarvis-intro {
    text-align: center;
    margin-bottom: 60px;
}

.jarvis-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.jarvis-description {
    font-size: 18px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.jarvis-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.jarvis-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.jarvis-stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.2);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    transition: all 0.3s;
}

.feature-category:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.15);
}

.category-header {
    margin-bottom: 20px;
}

.category-icon {
    font-size: 36px;
    margin-bottom: 15px;
    display: block;
}

.category-header h3 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-count {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--primary);
    border-radius: 3px;
    font-size: 12px;
    color: var(--primary);
    font-family: 'Fira Code', monospace;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 20px;
    color: var(--text-dim);
    font-size: 14px;
    position: relative;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.tech-stack {
    margin-top: 80px;
}

.tech-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--text);
    text-align: center;
    margin-bottom: 40px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 30px;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

.tech-card h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-intro {
    font-size: 18px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-text a,
.contact-text span {
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-tagline {
    color: var(--primary);
    font-family: 'Fira Code', monospace;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .skills-grid,
    .features-container,
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jarvis-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .skills-grid,
    .features-container,
    .tech-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .jarvis-stats {
        grid-template-columns: 1fr;
    }

    .stats-panel {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* AGI Section Styles */
.agi-highlight {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 255, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-align: center;
}

.agi-highlight h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    text-shadow: 0 0 20px var(--glow);
}

.agi-highlight p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
}

.agi-section {
    margin-top: 80px;
    padding: 60px;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 12px;
}

.agi-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 20px var(--glow);
}

.agi-description {
    font-size: 18px;
    color: var(--text-dim);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.agi-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.agi-metric {
    background: var(--bg-darker);
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.metric-bar {
    width: 100%;
    height: 30px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-darker);
    box-shadow: 0 0 20px var(--glow);
    animation: fillBar 2s ease-out;
}

@keyframes fillBar {
    from {
        width: 0;
    }
}

.agi-subsystems {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.subsystem-card {
    background: var(--bg-darker);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 25px;
    transition: all 0.3s;
}

.subsystem-card:hover {
    transform: translateX(10px);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.subsystem-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.subsystem-card h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
}

.subsystem-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.agi-agents {
    margin-bottom: 60px;
}

.agents-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 30px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.agent-card {
    background: var(--bg-darker);
    border: 2px solid var(--border);
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.agent-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.3);
}

.agent-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.agent-role {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.agent-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.learning-capabilities {
    background: var(--bg-darker);
    padding: 40px;
    border-radius: 8px;
}

.learning-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
}

.learning-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.learning-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s;
}

.learning-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.learning-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.learning-item strong {
    display: block;
    color: var(--text);
    font-size: 16px;
    margin-bottom: 5px;
}

.learning-item p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* Responsive Updates for AGI Section */
@media (max-width: 1024px) {
    .agi-subsystems {
        grid-template-columns: 1fr;
    }

    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agi-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .agi-section {
        padding: 30px 20px;
    }

    .agents-grid,
    .learning-grid {
        grid-template-columns: 1fr;
    }

    .agi-title {
        font-size: 24px;
    }

    .agi-description {
        font-size: 16px;
    }
}
