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

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, #1a1a2e 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #16213e 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, #0f3460 0%, transparent 50%);
    z-index: -1;
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 500;
    font-size: 1.5rem;
    color: #ff8c00;
    text-shadow: 
        0 0 5px #ff8c00,
        0 0 10px #ff8c00,
        0 0 15px #ff8c00,
        0 0 20px #ff4500;
    animation: neonGlow 2s ease-in-out infinite alternate;
    letter-spacing: 1px;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 5px #ff8c00,
            0 0 10px #ff8c00,
            0 0 15px #ff8c00,
            0 0 20px #ff4500;
    }
    to {
        text-shadow: 
            0 0 10px #ff8c00,
            0 0 20px #ff8c00,
            0 0 30px #ff8c00,
            0 0 40px #ff4500;
    }
}

.logo-img {
    filter: drop-shadow(0 0 10px #ff8c00) drop-shadow(0 0 20px #ff4500);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 10px #ff8c00) drop-shadow(0 0 20px #ff4500);
    }
    to {
        filter: drop-shadow(0 0 25px #ff8c00) drop-shadow(0 0 40px #ff4500) drop-shadow(0 0 60px #ff6347);
    }
}

.logo-img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-family: 'Orbitron', monospace;
    text-decoration: none;
    color: #00ffff;
    font-weight: 400;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: #ff00ff;
    text-shadow: 0 0 10px #ff00ff;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, #00ffff22 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #ff00ff22 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    font-family: 'Orbitron', monospace;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: white;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    position: relative;
}

.btn-secondary:hover {
    background: #00ffff;
    color: #0a0a0a;
    box-shadow: 0 0 20px #00ffff;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot {
    animation: float 3s ease-in-out infinite;
}

.mascot img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 15px #ff8c00) drop-shadow(0 0 30px #ff4500);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.services h2 {
    font-family: 'Orbitron', monospace;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #00ffff;
    text-shadow: 0 0 20px #00ffff;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00ffff;
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #00ffff;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
    letter-spacing: 1px;
    line-height: 1.2;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

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

.stat-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.stat-card.large {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
}

.stat-card.expertise {
    grid-column: span 2;
}

.stat-card:hover {
    border-color: #ff00ff;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
    transform: translateY(-5px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 500;
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
    position: relative;
    z-index: 1;
}

.large .stat-number {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.stat-label {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.large .stat-label {
    font-size: 1.1rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-sublabel {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.3;
}

.expertise-list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.expertise-list span {
    background: rgba(255, 0, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ff00ff;
    border: 1px solid rgba(255, 0, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #16213e 0%, #0f3460 100%);
    color: white;
    text-align: center;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff00ff, transparent);
}

.contact h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-options {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.contact-icon {
    font-size: 2rem;
}

.contact-method h3 {
    font-family: 'Orbitron', monospace;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-method p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0f3460 0%, #0a0a0a 100%);
    color: #00ffff;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card.large {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-card.expertise {
        grid-column: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .mascot img {
        width: 150px;
        height: 150px;
    }
}