  /* prev vacant */
  
  :root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --border-radius: 8px;
}



.career-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    bottom: 0;
    left: 15%;
    border-radius: 2px;
}

.job-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.job-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.job-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.job-header::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -75px;
    right: -75px;
}

.job-header::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -40px;
    left: 30px;
}

.job-body {
    padding: 1.5rem;
    background-color: white;
}

.job-body p {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.job-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.job-date {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
}

.job-date i {
    margin-right: 5px;
}

.job-status {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.job-status.closed {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--accent-color);
}

.job-status.active {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #2980b9, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    color: white;
}

.job-card .job-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .career-section {
        padding: 2rem 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .job-header h3 {
        font-size: 1.2rem;
    }
}
.nav-link{
    color: #ffff !important;
}
.nav-link:hover{
    color: red !important;
}


