/* Ataraxian Studios - Modern CSS Styling */
:root {
    --primary: #6a11cb;
    --secondary: #2575fc;
    --accent: #00f2fe;
    --dark: #0f0c29;
    --darker: #090717;
    --light: #f0f9ff;
    --text: #e6f7ff;
    --glow: 0 0 15px rgba(106, 17, 203, 0.7);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(9, 7, 23, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo h2 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.logo span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
}

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

.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent);
}

.nav-menu a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 50%, #000a1f 100%);
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(106, 17, 203, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106, 17, 203, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) rotateZ(-45deg);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0, 242, 254, 0.5);
    animation: floatParticle 8s infinite ease-in-out;
}

.particle.big {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle.medium {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary), 0 0 30px rgba(37, 117, 252, 0.5);
    animation-delay: 2s;
}

.particle.small {
    width: 8px;
    height: 8px;
    top: 40%;
    left: 70%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary), 0 0 20px rgba(106, 17, 203, 0.5);
    animation-delay: 4s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.7;
    }
    25% {
        transform: translate(20px, -30px);
        opacity: 1;
    }
    50% {
        transform: translate(40px, 10px);
        opacity: 0.5;
    }
    75% {
        transform: translate(-20px, 40px);
        opacity: 0.8;
    }
}

.vr-cube-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%);
}

.vr-cube {
    position: absolute;
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
    transform: translate(-50%, -50%) rotateX(-25deg) rotateY(-25deg);
    animation: rotateCube 25s infinite linear;
}

.vr-cube:nth-child(2) {
    width: 80px;
    height: 80px;
    animation: rotateCube 30s infinite linear reverse;
    top: 45%;
    left: 55%;
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.8;
    border: 1px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
}

.cube-face::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: 5px;
}

.vr-cube:nth-child(2) .cube-face {
    width: 80px;
    height: 80px;
}

.front {
    transform: rotateY(0deg) translateZ(60px);
}

.back {
    transform: rotateY(180deg) translateZ(60px);
}

.right {
    transform: rotateY(90deg) translateZ(60px);
}

.left {
    transform: rotateY(-90deg) translateZ(60px);
}

.top {
    transform: rotateX(90deg) translateZ(60px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(60px);
}

@keyframes rotateCube {
    0% {
        transform: translate(-50%, -50%) rotateX(-25deg) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(-25deg) rotateY(360deg);
    }
}

.motion-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.motion-circle,
.motion-triangle,
.motion-diamond {
    position: absolute;
    border: 2px solid var(--accent);
    opacity: 0.2;
    animation: float 15s infinite ease-in-out;
}

.motion-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation: float 18s infinite ease-in-out;
}

.motion-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid transparent;
    border-bottom-color: var(--accent);
    top: 70%;
    left: 80%;
    opacity: 0.15;
    animation: float 16s infinite ease-in-out reverse;
}

.motion-diamond {
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    top: 30%;
    left: 75%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(20px, 20px) rotate(-5deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(3deg);
    }
}

.wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--darker), transparent);
    z-index: -1;
    opacity: 0.7;
}

.wave-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230f0c29' fill-opacity='1' d='M0,224L48,218.7C96,213,192,203,288,181.3C384,160,480,128,576,128C672,128,768,160,864,170.7C960,181,1056,171,1152,149.3C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
    animation: waveMove 12s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-100%) translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    animation: highlightSlide 2s ease-in-out;
}

@keyframes highlightSlide {
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn.primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--glow);
}

.btn.secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn.secondary:hover {
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-circle {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.scroll-circle i {
    color: var(--accent);
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, var(--dark), transparent);
    z-index: -1;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 25px;
    max-width: 600px;
    font-size: 1.1rem;
}

.capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.capability {
    background: rgba(15, 12, 41, 0.4);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(106, 17, 203, 0.3);
    transition: var(--transition);
}

.capability:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.capability i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.capability h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.capability p {
    color: #b0b0e0;
    font-size: 0.9rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--accent);
}

.stat p {
    font-size: 1rem;
    color: #a0a0d0;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.vr-setup {
    position: relative;
    width: 300px;
    height: 250px;
}

.vr-headset {
    position: relative;
    width: 250px;
    height: 120px;
    background: linear-gradient(135deg, var(--dark), #1a153a);
    border-radius: 50px 50px 20px 20px;
    border: 2px solid var(--accent);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.vr-headset::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: var(--darker);
    border-radius: 10px;
    border: 1px solid var(--accent);
}

.lens {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--darker);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lens::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: conic-gradient(transparent, var(--secondary), transparent 30%);
    animation: rotate 4s linear infinite;
}

.motion-controllers {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 150px;
    z-index: 1;
}

.controller {
    width: 20px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary), var(--darker));
    border-radius: 10px;
    border: 1px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
}

.controller::before {
    content: '';
    width: 80%;
    height: 30px;
    background: var(--accent);
    border-radius: 50%;
    margin-bottom: 5px;
}

.controller::after {
    content: '';
    width: 100%;
    height: 20px;
    background: rgba(106, 17, 203, 0.5);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.left { 
    left: 0; 
}

.right { 
    right: 0; 
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 117, 252, 0.1), transparent 40%);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: rgba(15, 12, 41, 0.6);
    border: 1px solid rgba(106, 17, 203, 0.3);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 17, 203, 0.2);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(106, 17, 203, 0.4);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.service-card p {
    color: #b0b0e0;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.feature {
    background: rgba(106, 17, 203, 0.2);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(106, 17, 203, 0.5);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(106, 17, 203, 0.4);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(0, 242, 254, 0.05), transparent 40%);
    z-index: -1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    background: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(37, 117, 252, 0.3);
    backdrop-filter: blur(10px);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.portfolio-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.vr-app {
    position: relative;
    width: 180px;
    height: 140px;
    perspective: 1000px;
}

.vr-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.7);
    border-radius: 10px;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-10deg);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.vr-content {
    width: 90%;
    height: 80%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    animation: contentPulse 4s infinite;
}

.vr-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 5px,
        transparent 5px,
        transparent 10px
    );
}

.vr-content.space {
    background: linear-gradient(135deg, #0f0c29, #302b63);
    background: radial-gradient(circle at center, #0f0c29 0%, #302b63 50%, #000428 100%);
}

.vr-content.space::before {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 10%);
}

.vr-content.combat {
    background: linear-gradient(135deg, #8E0E00, #1F1C18);
}

.vr-content.combat::before {
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.1) 3px,
        transparent 3px,
        transparent 6px
    );
}

@keyframes contentPulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.vr-controllers {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 10;
}

.controller {
    width: 20px;
    height: 60px;
    background: rgba(106, 17, 203, 0.7);
    border-radius: 10px;
    border: 1px solid var(--accent);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.portfolio-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--accent);
}

.portfolio-item p {
    color: #b0b0e0;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.tech {
    background: rgba(37, 117, 252, 0.2);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    border: 1px solid rgba(37, 117, 252, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 17, 203, 0.1), transparent 50%);
    z-index: -1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: rgba(15, 12, 41, 0.6);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(106, 17, 203, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-family: serif;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial p {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.client h4 {
    color: var(--accent);
    margin-bottom: 5px;
}

.client p {
    color: #b0b0e0;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.05), transparent 40%);
    z-index: -1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.contact-info p {
    margin-bottom: 30px;
    max-width: 400px;
    color: #b0b0e0;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(106, 17, 203, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(106, 17, 203, 0.3);
    background: rgba(15, 12, 41, 0.6);
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--darker);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(106, 17, 203, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #b0b0e0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: #b0b0e0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-column a:before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent);
    padding-left: 20px;
}

.footer-column a:hover:before {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #b0b0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text p {
        margin: 0 auto 25px;
    }
    
    .stats {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: var(--dark);
        width: 250px;
        height: calc(100vh - 80px);
        padding: 40px 20px;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats {
        gap: 20px;
    }
    
    .vr-goggles {
        width: 250px;
        height: 120px;
    }
    
    .lens {
        width: 80px;
        height: 80px;
    }
}