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

:root {
    --primary-blue: #00D9FF;
    --secondary-blue: #0077FF;
    --accent-blue: #00FFFF;
    --dark-blue: #003D7A;
    --space-blue: #001E3D;
    --deep-blue: #000D1A;
    --light-blue: #E6F4FF;
    --text-light: #FFFFFF;
    --text-bright: #FFFFFF;
    --glow-blue: #00D9FF;
    --glow-cyan: #00FFFF;
    --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #0077FF 100%);
    --gradient-space: linear-gradient(180deg, #000D1A 0%, #001E3D 25%, #003D7A 50%, #0056B3 100%);
    --gradient-glow: linear-gradient(45deg, #00D9FF, #00FFFF, #0077FF);
    --gradient-bg: linear-gradient(135deg, #001E3D 0%, #003D7A 50%, #0056B3 100%);
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--gradient-bg);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated Star Background */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stars {
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9IndoaXRlIi8+PC9zdmc+') repeat;
    background-size: 1px 1px;
    animation: animateStars 200s linear infinite;
    opacity: 0.6;
    filter: blur(0.5px);
}

.stars2 {
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSIyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIyIiBoZWlnaHQ9IjIiIGZpbGw9IndoaXRlIi8+PC9zdmc+') repeat;
    background-size: 2px 2px;
    animation: animateStars 150s linear infinite;
    opacity: 0.3;
}

.stars3 {
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMyIgaGVpZ2h0PSIzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIzIiBoZWlnaHQ9IjMiIGZpbGw9IndoaXRlIi8+PC9zdmc+') repeat;
    background-size: 3px 3px;
    animation: animateStars 100s linear infinite;
    opacity: 0.1;
}

@keyframes animateStars {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(-1000px) rotate(360deg); }
}

/* Floating Particles for Footer */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 15s infinite;
    box-shadow: 0 0 10px var(--primary-blue);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 6s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 9s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 12s;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        bottom: -10px;
        transform: translateX(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        bottom: 100%;
        transform: translateX(100px) rotate(600deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    height: 50px;
    transition: all 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 10px var(--primary-blue));
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    box-shadow: 0 0 10px var(--glow-cyan);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark-blue);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.15) 0%, transparent 60%),
                linear-gradient(180deg, rgba(0, 56, 179, 0.3) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
    to { box-shadow: 0 0 20px rgba(0, 217, 255, 0.8); }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.5);
    text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(230, 244, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 5px 30px rgba(0, 217, 255, 0.4);
}

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

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover .btn-glow {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(0, 217, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--glow-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

/* Orbital System Animation */
.orbital-system {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 100px;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    top: 50px;
    left: 50px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 500px;
    height: 500px;
    top: 0;
    left: 0;
    animation-duration: 40s;
}

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

.satellite {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--glow-cyan);
    border-radius: 50%;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.core-node {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--glow-cyan) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    width: 60px;
    height: 60px;
    background: var(--glow-cyan);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--glow-cyan);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Mission Section */
.mission {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 61, 122, 0.3) 50%, transparent 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--glow-cyan);
    text-shadow: 0 0 30px var(--glow-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
}

/* Capabilities Section */
.capabilities {
    padding: 100px 0;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(224, 247, 255, 0.7);
    margin-bottom: 3rem;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.capability-card {
    background: rgba(0, 61, 122, 0.25);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 10px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 119, 255, 0.1);
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: var(--glow-cyan);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capability-card:hover .card-glow {
    opacity: 1;
}

.capability-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    position: relative;
}

.icon-hologram {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: hologramRotate 5s linear infinite;
}

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

.hologram-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--glow-cyan);
    border-radius: 10px;
    box-shadow: 0 0 20px var(--glow-cyan);
}

.hologram-layer:nth-child(1) {
    transform: translateZ(10px);
}

.hologram-layer:nth-child(2) {
    transform: translateZ(0px);
    opacity: 0.7;
}

.hologram-layer:nth-child(3) {
    transform: translateZ(-10px);
    opacity: 0.4;
}

.capability-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capability-card p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.capability-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Technology Stack */
.tech-stack {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 86, 179, 0.2) 50%, transparent 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.tech-category h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.tech-item {
    padding: 1rem 1.5rem;
    background: rgba(0, 77, 153, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 217, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    border-color: var(--glow-cyan);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
}

/* Future Vision */
.future-vision {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 119, 255, 0.2) 0%, transparent 60%),
                linear-gradient(180deg, transparent 0%, rgba(0, 86, 179, 0.3) 100%);
}

.vision-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-glowing {
    background: transparent;
    color: var(--text-bright);
    border: 2px solid var(--glow-cyan);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glowing:hover {
    color: var(--space-black);
    background: var(--glow-cyan);
    box-shadow: 0 0 40px var(--glow-cyan);
    transform: scale(1.05);
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 244, 255, 0.98) 100%);
    padding: 4rem 0;
    border-top: 2px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 -20px 40px rgba(0, 119, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: footerPulse 4s ease-in-out infinite;
}

@keyframes footerPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 40px;
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.footer-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--primary-blue));
}

.footer-text {
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.footer-links a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.footer-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

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

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

    .orbital-system {
        width: 350px;
        height: 350px;
        margin-top: 3rem;
    }

    .orbit-1 {
        width: 200px;
        height: 200px;
        top: 75px;
        left: 75px;
    }

    .orbit-2 {
        width: 280px;
        height: 280px;
        top: 35px;
        left: 35px;
    }

    .orbit-3 {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 217, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .orbital-system {
        width: 300px;
        height: 300px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
        top: 75px;
        left: 75px;
    }

    .orbit-2 {
        width: 225px;
        height: 225px;
        top: 37.5px;
        left: 37.5px;
    }

    .orbit-3 {
        width: 300px;
        height: 300px;
    }
}