.career-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.career-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    width: calc(33% - 20px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    color: White;
}

.job-title {
    font-size: 1.2em;
    margin-bottom: 8px;
	Color: #053b7f !important;
}

.job-category {
    color: #666;
    margin-bottom: 12px;
}

.apply-btnn {
    display: inline-block;
    padding: 6px 14px;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.apply-btn:hover {
    background: #005177;
    color: white !important;
}

.job-title {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: #053b7f;
}


.job-title a {
    color: #053b7f !important;
	text-decoration: none;
}

/* Title color when hovering the whole card */
.career-card:hover .job-title a {
    color: #053b7f !important;
}

/* Optional: title color when hovering only the text */
.job-title a:hover {
    color: #053b7f !important;
}

/* Responsive: stack cards on mobile */
@media (max-width: 768px) {
    .career-card {
        width: 100%;
    }
}
