/* careers.css */

/* Section Title */
.section-title {
    color: #003366;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
}

.section-title-bar {
    width: 120px;
    height: 4px;
    background: #ffcc00;
    margin: 0 auto 1rem auto;
}

.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 0.95rem;
    max-width: 750px;
    margin: 0 auto 30px;
}

/* Job Tabs */
.nav-pills .btn {
    font-size: 14px;
    border-radius: 30px;
    font-weight: 500;
    padding: 8px 18px;
    transition: 0.3s ease;
}

.nav-pills .btn.active,
.nav-pills .btn:hover {
    background-color: #0d47a1;
    color: #fff;
    border-color: #0d47a1;
}

/* Cards for Jobs */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .nav-pills .btn {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}