/* RESET */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: #f3f6f8;
    margin: 0;
    padding: 0;
}

/* NAVBAR (FINAL - BLUE) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0a66c2;
    color: white;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.nav-links a {
    margin-left: 15px;
    text-decoration: none;
    font-weight: 600;
    color: white;
}

.btn-primary {
    background: white;
    color: #0a66c2 !important;
    padding: 8px 16px;
    border-radius: 8px;
}

.btn-secondary {
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 8px;
    color: white;
}

/* CONTAINER */
.container {
    width: 400px;
    margin: 80px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

/* HEADING */
h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* LABELS */
label {
    font-weight: 600;
    color: #444;
    display: block;
    margin-top: 10px;
}

/* INPUTS */
input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus, textarea:focus {
    border-color: #0a66c2;
    outline: none;
}

/* BUTTON */
button {
    width: 100%;
    padding: 10px;
    background: #0a66c2;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
}

button:hover {
    background: #004182;
}

/* LINKS */
a {
    color: #0a66c2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* SUCCESS MESSAGE */
.success-msg {
    background: #e6f4ea;
    color: #137333;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

/* TOP BAR */
.top-bar {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* PROFILE BUTTON */
.profile-btn {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: #0a66c2;
    padding: 8px 14px;
    border-radius: 20px;
}

.profile-btn:hover {
    background: #004182;
}

/* NOTIFICATION BUTTON */
.notify-btn {
    background: #ff9800;
    color: white;
    padding: 8px 10px;
    border-radius: 50%;
    text-decoration: none;
}

/* USER INFO */
.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.username {
    color: white;
    font-weight: 600;
}

/* PAGE TITLE */
.page-title {
    text-align: center;
    color: #333;
    margin-top: 30px;
}

/* JOB GRID */
.jobs-container {
    width: 85%;
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* JOB CARD */
.job-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.job-card:hover {
    box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
}

.job-card h3 {
    color: #0a66c2;
}

/* APPLY BUTTON */
.apply-btn {
    display: inline-block;
    margin-top: 10px;
    background: #0a66c2;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #004182;
}

/* ACTION BUTTONS */
.accept-btn {
    background: #28a745;
    color: white;
    padding: 7px 12px;
    border-radius: 5px;
    border: none;
}

.reject-btn {
    background: #dc3545;
    color: white;
    padding: 7px 12px;
    border-radius: 5px;
    border: none;
}

/* LOGOUT */
.logout-btn {
    display: block;
    text-align: center;
    background: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
}

.logout-btn:hover {
    background: #a71d2a;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 100px 20px;
    color: white;
    background: linear-gradient(135deg, #5a67d8, #764ba2);
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    color: #e2e8f0;
}

/* SEARCH BAR */
.search-bar {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

.search-bar input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    width: 220px;
}

.search-bar button {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: #ff7a18;
    color: white;
    font-weight: bold;
}

.search-bar button:hover {
    background: #e66a00;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}
