/* Additional CSS for job cards */
.job-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.job-card-header {
    background-color: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid #dee2e6;
}

.job-card-header h3 {
    margin-bottom: 5px;
    font-size: 1.25rem;
    color: #3a6ea5;
}

.job-card-body {
    padding: 20px;
    flex-grow: 1;
}

.job-card-footer {
    padding: 15px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #dee2e6;
    margin-top: auto;
}

.job-feature {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.job-feature i {
    color: #6ca0e2;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.job-section {
    margin-bottom: 15px;
}

.job-section h4 {
    color: #3a6ea5;
    font-size: 1.1rem;
    margin-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 5px;
}

.job-section ul {
    padding-left: 20px;
}

.job-section ul li {
    margin-bottom: 5px;
}

.job-section ul li strong {
    color: #198754;
}

.btn-primary {
    background-color: #f0b775;
    border-color: #f0b775;
    color: #3e4a5a;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #e69c3b;
    border-color: #e69c3b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Social media icons */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f0b775;
}

/* Ensure Apply Now button is always visible and properly styled */
.job-card-footer .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 12px;
    border-radius: 6px;
}
