* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top, #0a1a3a, #020817);
    color: #e0e6ff;
}

html {
    scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    background: rgba(0, 10, 40, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #9fb7ff;
    text-decoration: none;
}

.navbar a:hover {
    color: #ffffff;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
}

.hero p {
    margin: 20px 0;
    opacity: 0.8;
}

.btn {
    padding: 12px 30px;
    border: 1px solid #4a6cff;
    color: #4a6cff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #4a6cff;
    color: #000;
}

/* SECTIONS */
.section {
    min-height: 100vh;
    padding: 120px 15%;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(20, 40, 100, 0.4);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

/* JOBS */
.jobs li {
    margin-bottom: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #020817;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

.delay { animation-delay: 0.5s; }
.delay2 { animation-delay: 1s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-anim {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    will-change: transform, opacity;
    transition: transform 0.08s linear, opacity 0.08s linear;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.card {
    transition: transform 0.1s linear;
}
