/* General Styles */
body {
    background-color: #f4f4f9; /* Light gray plain background */
    color: #333; /* Dark text color for readability */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #333; /* Consistent dark color for titles */
}

/* Navbar */
.navbar {
    background-color: #031233; /* Dark background for the top navbar */
    padding: 10px 0;
}

.offcanvas {
    background-color: #031233; /* Dark background for the off-canvas menu */
    color: #fff;
}

.offcanvas .offcanvas-title {
    color: #ff9800; /* Orange title for branding */
}

.navbar-toggler {
    border: none;
}

.offcanvas-body .nav-link {
    color: #ddd;
    font-size: 1rem;
    transition: color 0.3s;
}

.offcanvas-body .nav-link:hover {
    color: #ff9800; /* Orange on hover */
}

/* Hero Section Styling */
.career-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    width: 100%;
    background: url('/src/img/logo.png') center center / cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 11, 80, 0.419); /* Dark overlay */
    background: linear-gradient(135deg, rgba(20, 203, 206, 0.5), rgba(239, 112, 33, 0.5)); /* Gradient overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 20px;
}

.career-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.career-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.explore-btn {
    display: inline-block;
    background-color: #ff9800;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.explore-btn:hover {
    background-color: #ffb74d;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2.2rem;
    }

    .career-hero p {
        font-size: 1rem;
    }
}
/* Job Listings Section */
.job-listings {
    padding: 40px 20px;
    text-align: center;
}

.job {
    background-color: #ffffff; /* White background for cards */
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 500px;
    border: 1px solid #ddd; /* Light border for contrast */
}

.job h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.job p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.apply-btn {
    color: #ffffff;
    background-color: #ff9800;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.apply-btn:hover {
    background-color: #ffb74d;
}

/* CV Submission Form */
/* .cv-form {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cv-form h2 {
    margin-bottom: 20px;
}

.cv-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cv-form label {
    font-size: 1rem;
    text-align: left;
}

.cv-form input[type="text"],
.cv-form input[type="email"],
.cv-form input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

.submit-btn {
    background-color: #ff9800;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    transform: skew(-10deg);
}

.submit-btn:hover {
    background-color: #ffb74d;
} */
/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer h5 {
    color: #ff9800;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer p {
    margin: 0;
    color: #ddd;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ff9800; /* Orange on hover */
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: #ddd;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff9800; /* Orange on hover */
}


/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 1.8rem;
    }

    .apply-btn {
        font-size: 0.9rem;
    }

    .job p {
        font-size: 0.9rem;
    }
}