/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

/* Careers Section */
#careers {
    padding: 5rem 0;
    background: #ffffff; /* Neutral white background */
    margin-top: 120px; /* Ensure space for the fixed header */
    border-top: 4px solid #007BFF;
}

/* Career List */
.career-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 3rem;
}

/* Career Item */
.career-item {
    background: #f1f1f1; /* Soft background */
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; /* Flexible height to accommodate content */
}

.career-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Container */
.icon-container {
    background-color: #064a94; /* Light blue background for icon */
    color: white;
    font-size: 3rem;
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.career-item h3 {
    font-size: 1.8rem;
    color: #064a94;
    margin-bottom: 1rem;
}

.career-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.career-item ul {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
}

.career-item ul li {
    margin-bottom: 0.5rem;
}

.apply-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: #064a94;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.apply-button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

header {
    position: fixed; /* Keeps header fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    background: #fff; /* White background */
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    margin-left: 1rem;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav a:hover {
    color: #064a94;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}
