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

:root {
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFD93D;
    --dark: #2C3E50;
    --light: #ECF0F1;
    --purple: #E056FD;
    --orange: #FFA502;
    --green: #95E1D3;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.logo-rocket {
    animation: bounce 2s infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 80px 10px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, white, transparent),
        radial-gradient(1px 1px at 110px 40px, white, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: stars-move 120s linear infinite;
}

@keyframes stars-move {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: calc(100vh - 100px);
    position: relative;
    z-index: 2;
}

.hero-text {
    color: white;
}

.glitch {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    text-shadow:
        0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow:
            0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    25% {
        text-shadow:
            -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow:
            0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    75% {
        text-shadow:
            -0.025em 0 0 rgba(255, 0, 0, 0.75),
            -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
            -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.subtitle {
    font-size: 24px;
    color: var(--accent);
    margin: 10px 0;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin: 20px 0 30px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary), var(--orange));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.button-rocket {
    animation: rocket-fly 2s ease-in-out infinite;
}

@keyframes rocket-fly {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Hero Animation */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rocket-container {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

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

.main-rocket {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.fire {
    animation: flicker 0.5s ease-in-out infinite alternate;
}

.fire1 { animation-delay: 0s; }
.fire2 { animation-delay: 0.1s; }
.fire3 { animation-delay: 0.2s; }

@keyframes flicker {
    from { opacity: 0.8; transform: scaleY(1); }
    to { opacity: 1; transform: scaleY(1.1); }
}

/* Planets */
.planets {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.planet {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--secondary), var(--purple));
}

.planet1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation: orbit 20s linear infinite;
}

.planet2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 5%;
    background: radial-gradient(circle at 30% 30%, var(--accent), var(--orange));
    animation: orbit 30s linear infinite reverse;
}

.planet3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 20%;
    background: radial-gradient(circle at 30% 30%, var(--green), var(--secondary));
    animation: orbit 25s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(20px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: white;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

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

.about-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

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

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 20px;
    display: inline-block;
    animation: rotate 4s linear infinite;
}

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

.about-card h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services .section-title {
    color: var(--dark);
}

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

.service-item {
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    box-shadow: 20px 20px 60px #d1d1d1, -20px -20px 60px #ffffff;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.05);
}

.service-icon {
    margin-bottom: 20px;
    display: inline-block;
}

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

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

.service-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(45deg, var(--primary), var(--orange));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    display: inline-block;
}

.stat-suffix {
    font-size: 36px;
    font-weight: bold;
    display: inline-block;
}

.stat-label {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #0F2027 0%, #203A43 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

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

.contact-info {
    display: grid;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 24px;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:last-child {
    border-bottom: none;
}

.address {
    line-height: 1.8;
    font-size: 18px;
}

.contact-btn {
    background: linear-gradient(45deg, var(--secondary), var(--green));
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.4);
}

/* Contact Animation */
.contact-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-container {
    width: 300px;
    height: 300px;
    position: relative;
}

.central-planet {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, var(--accent), var(--orange));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px rgba(255, 215, 61, 0.5);
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit1 {
    width: 150px;
    height: 150px;
    animation: spin 10s linear infinite;
}

.orbit2 {
    width: 200px;
    height: 200px;
    animation: spin 15s linear infinite reverse;
}

.orbit3 {
    width: 250px;
    height: 250px;
    animation: spin 20s linear infinite;
}

.satellite {
    width: 15px;
    height: 15px;
    background: var(--secondary);
    border-radius: 50%;
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: var(--primary);
}

.footer-text {
    color: #999;
}

.footer-tagline {
    color: var(--secondary);
    font-style: italic;
}

/* Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .glitch {
        font-size: 32px;
    }

    .nav-links {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .orbit-container {
        width: 200px;
        height: 200px;
    }

    .orbit1 { width: 100px; height: 100px; }
    .orbit2 { width: 140px; height: 140px; }
    .orbit3 { width: 180px; height: 180px; }
}