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

:root {
    --primary: #00ff88;
    --secondary: #ff0080;
    --accent: #0080ff;
    --dark: #0d0d0d;
    --darker: #050505;
    --light: #ffffff;
    --gray: #666666;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 80px;
    height: 100vh;
    background: var(--darker);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    z-index: 1000;
    border-right: 1px solid #222;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.nav-item.active,
.nav-item:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--gray);
    border: 1px solid var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-item:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Main Content */
.main-content {
    margin-left: 80px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding: 4rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%2300ff88" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: grid-float 20s linear infinite;
}

@keyframes grid-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.company-tag {
    font-size: 0.9rem;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 3rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.accent {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-visual {
    position: relative;
    height: 300px;
}

.visual-element {
    position: absolute;
    border-radius: 50%;
    animation: orbit 10s linear infinite;
}

.v1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    top: 20%;
    left: 20%;
}

.v2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    top: 60%;
    right: 30%;
    animation-delay: -3s;
}

.v3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    bottom: 20%;
    left: 40%;
    animation-delay: -6s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

.hero-desc p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 30px var(--primary);
}

/* Section Styles */
.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0 4rem;
}

.section-num {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--darker);
}

.about-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 0 4rem;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 3rem;
}

.capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark);
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.cap-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.cap-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--dark);
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--dark);
    border-left: 3px solid var(--primary);
}

.year {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.event {
    font-size: 1rem;
    color: var(--light);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 4rem;
}

.service-card {
    background: var(--darker);
    padding: 3rem;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card.large {
    grid-row: span 2;
}

.service-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.service-num {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(10px);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--darker);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 0 4rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.label {
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.value {
    font-size: 1.3rem;
    color: var(--light);
    font-weight: 600;
}

.contact-form {
    background: var(--dark);
    padding: 3rem;
    border: 1px solid #333;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #333;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
    letter-spacing: 1px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--dark);
    border: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary);
    box-shadow: 0 0 30px var(--secondary);
}

/* Footer */
.footer {
    padding: 2rem 4rem;
    background: var(--dark);
    border-top: 1px solid #333;
    margin-left: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-right span {
    color: var(--gray);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 60px;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .hero-grid,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.large {
        grid-row: span 1;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer {
        margin-left: 60px;
    }
}
