                        body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f2f2f2;
}

/* Header with image */
header {
    background: #1e3a8a;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

header img {
    width: 120px; /* Adjust as needed */
    height: auto;
    border-radius: 10px;
}
.site-footer {
    background: linear-gradient(135deg, #1f3b4d, #2c5364); /* credentials color */
    color: #ffffff;
    text-align: center;
    padding: 18px 10px;
    margin-top: 40px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-footer p {
    margin: 4px 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.site-footer strong {
    color: #ffd700; /* gold touch for credibility */
}
/* Job Cards */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 20px;
    gap: 30px;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 12px 20px;
    color: #fff;
}

.navbar .logo {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.nav-links li a:hover {
    color: #22c55e;
}

/* Mobile Menu */
@media(max-width:768px){
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
.job-card {
    background: white;
    width: 250px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.job-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 30px rgba(0,0,0,0.3);
}

.job-card img {
    width: 100%;
    height: 180px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
}

.job-card h3 {
    margin: 15px 0;
}

.job-card button {
    background: #f59e0b;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px;
}

.job-card button:hover {
    background: #d97706;
}

/* Modal Form */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 400px;
    max-width: 100%;
    position: relative;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    margin: 10px 0 5px;
}

.modal-content input, .modal-content select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.modal-content input[type="file"] {
    padding: 3px;
}

/* Green submit button */
.modal-content button {
    width: 100%;
    margin-top: 15px;
    background: #28a745; /* Green */
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.modal-content button:hover {
    background: #218838;
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Responsive */
@media(max-width: 500px){
    .modal-content { width: 100%; padding: 20px; }
    .container { gap: 15px; padding: 20px 10px; }
    .job-card { width: 100%; max-width: 300px; }
    header { font-size: 22px; padding: 15px; }
    header img { width: 100px; }
}            