/* ==== Global Reset ==== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f7f7f7;
}


/* ==== Navbar ==== */

.navbar {
    padding: 15px 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: #2d4bf0 !important;
}

.nav-link {
    margin-left: 18px;
    font-weight: 500;
}


/* ==== Hero Section ==== */

.hero {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
}

.hero .btn-primary {
    padding: 14px 30px;
    font-size: 18px;
    border-radius: 6px;
}


/* ==== Job Cards ==== */

.job-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    transition: 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.job-card h4 {
    font-size: 22px;
    font-weight: 600;
}

.job-card span {
    background: #eaf0ff;
    color: #2d4bf0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 6px;
}

.job-card .btn {
    margin-top: 12px;
}


/* ==== Login/Register Box ==== */

.auth-box {
    width: 420px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    margin: 60px auto;
}

.auth-box h3 {
    text-align: center;
    margin-bottom: 25px;
}


/* ==== Footer ==== */

footer {
    background: #0d0f26;
    color: #dcdcdc;
    padding: 40px 0;
    margin-top: 40px;
    text-align: center;
}

footer p {
    font-size: 15px;
}