/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #0a0f24;
    color: white;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: cyan;
    text-shadow: 0 0 10px cyan;
}

/* Careers Section */
.careers {
    text-align: center;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: cyan;
    text-shadow: 0 0 10px cyan;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Job Cards */
.job-listings {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.job-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: 0.3s;
    width: 300px;
    text-align: center;
}

.job-card:hover {
    box-shadow: 0 0 20px cyan;
    transform: scale(1.05);
}

.apply-btn {
    background: cyan;
    color: #0a0f24;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px;
    font-size: 1rem;
}

.apply-btn:hover {
    background: #00cccc;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.modal-content button {
    width: 100%;
    background: cyan;
    border: none;
    padding: 10px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
}

.close-btn {
    background: red;
}
