/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Orbitron", sans-serif;
}

/* Background Video */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: -1;
}

/* HEADER */
.header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.7);
    color: #00eaff;
    border-bottom: 3px solid #00eaff;
    backdrop-filter: blur(8px);
}

.header nav a {
    margin-left: 25px;
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.header nav a:hover,
.header nav a.active {
    color: #00eaff;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    color: white;
}

.hero h2 {
    font-size: 32px;
    color: #00eaff;
    margin-bottom: 10px;
}

.hero p {
    font-size: 16px;
    color: #e6e6e6;
}

/* CONTACT BOXES */
.contact-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 20px;
}

.box {
    width: 280px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #00eaff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    color: white;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px #00eaff;
}

.box h3 {
    color: #00eaff;
    font-size: 22px;
    margin-bottom: 10px;
}

.box p {
    color: #ccc;
    margin-bottom: 20px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 12px 18px;
    background: #00eaff;
    color: black;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
}

.btn:hover {
    background: #009fc7;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: #00eaff;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    margin-top: 40px;
}
