/* Updated styles.css */

/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('pexels-jplenio-1103970.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #ffffff;
}

/* Navbar Styling */
.navbar {
    background-color: #90ee90;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 70px;
    width: auto;
}

.navbar nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.navbar nav ul li a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: bold;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 2rem;
    margin: 1rem auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    max-width: 900px;
    border-radius: 10px;
}

.services-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.service-item {
    max-width: 200px;
    text-align: center;
}

.service-image {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}


/* Notification and Modal Styling */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    text-align: center;
    z-index: 1000;
    border: 2px solid #ffffff;
}

.notification-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notification button {
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.allow-btn {
    background-color: #28a745;
    color: white;
}

.deny-btn {
    background-color: #dc3545;
    color: white;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 1rem;
    background-color: #90ee90;
    color: white;
    margin-top: 2rem;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 500px;
    width: 80%;
}

/* Career Section */
.career {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 80vh;
    background: none;
    padding: 40px;
    color: #fff;
}

.career h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.job-opening {
    background: none;
    border: none;
}

.apply-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.career p {
    font-size: 1.2rem;
    color: #666;
    margin: 0.2rem 0;
}

.apply-btn {
    background-color: #0000ff;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #3333ff;
}

.job-listing-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.job-opening {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Application Form Styling */
.application-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 400px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.form-container {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="file"] {
    padding: 10px;
    border: 1px solid #ffff;
    border-radius: 5px;
    width: 100%;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.submit-btn {
    background-color: #007bff;
    color: #ffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.close-btn {
    background-color: #dc3545;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #a71d2a;
}
