* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
}


/* NAVBAR */

.navbar {
    background: #111827;
    padding: 15px 0;
}


.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    color: white;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}


.nav-menu {
    list-style: none;

    display: flex;
    gap: 30px;
}


.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}


.nav-menu a:hover,
.nav-menu a.active {
    color: #38bdf8;
}


/* HERO */

.hero {
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(15, 23, 42, 0.85),
            rgba(15, 23, 42, 0.85)
        ),
        url("images/company.jpg");

    background-size: cover;
    background-position: center;
}


.hero-content {
    color: white;
    max-width: 800px;
}


.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
}


.hero p {
    font-size: 22px;
    margin-bottom: 35px;
}


/* BUTTON */

.btn {
    display: inline-block;

    padding: 13px 25px;

    background: #0284c7;
    color: white;

    text-decoration: none;

    border: none;
    border-radius: 6px;

    cursor: pointer;

    font-size: 16px;
}


.btn:hover {
    background: #0369a1;
}


.btn-secondary {
    background: #475569;
    margin-left: 10px;
}


.btn-secondary:hover {
    background: #334155;
}


/* HOME */

.home-section {
    padding: 70px 10%;
    text-align: center;
}


.home-section h2 {
    font-size: 35px;
    margin-bottom: 40px;
}


.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}


.card {
    background: white;

    padding: 30px;

    width: 30%;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}


.card h3 {
    margin-bottom: 15px;
    color: #0284c7;
}


/* PAGE HEADER */

.page-header {
    background: #0f172a;
    color: white;

    text-align: center;

    padding: 70px 20px;
}


.page-header h1 {
    font-size: 45px;
    margin-bottom: 10px;
}


/* ABOUT */

.about-section {
    width: 80%;
    max-width: 900px;

    margin: 50px auto;

    background: white;

    padding: 40px;

    border-radius: 10px;
}


.about-section h2 {
    margin-top: 25px;
    margin-bottom: 10px;

    color: #0284c7;
}


.about-section p {
    line-height: 1.8;
}


/* JOBS */

.jobs-section {
    width: 85%;
    max-width: 1000px;

    margin: 50px auto;
}


.job-card {
    background: white;

    padding: 30px;

    margin-bottom: 25px;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}


.job-card h2 {
    color: #0284c7;

    margin-bottom: 20px;
}


.job-card p {
    margin-bottom: 15px;

    line-height: 1.6;
}


/* FORM */

.form-section {
    width: 90%;
    max-width: 700px;

    margin: 50px auto;

    background: white;

    padding: 40px;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}


form label {
    display: block;

    margin-top: 15px;
    margin-bottom: 7px;

    font-weight: bold;
}


form input,
form select,
form textarea {
    width: 100%;

    padding: 12px;

    border: 1px solid #ccc;

    border-radius: 5px;

    font-size: 15px;
}


form textarea {
    resize: vertical;
}


form button {
    margin-top: 25px;
}


/* SUCCESS */

.success-box {
    width: 90%;
    max-width: 600px;

    margin: 150px auto;

    background: white;

    padding: 50px;

    text-align: center;

    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.success-box h1 {
    color: #16a34a;

    margin-bottom: 20px;
}


.success-box p {
    margin-bottom: 30px;
}


/* FOOTER */

footer {
    background: #111827;

    color: white;

    text-align: center;

    padding: 25px;

    margin-top: 50px;
}


/* RESPONSIVE */

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 40px;
    }

    .cards {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }

}