.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    margin-bottom: 2rem;

}

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

.job-card h4 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    color: #fff;
    
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        text-align: center;
    }

    .job-card .btn {
        margin-top: 1rem;
        width: 100%;
    }
}


.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-bottom: 5px solid #ffb703;
}

.card-header h2 {
    font-size: 1.5rem;
    color: #fff;
}

.card-header p {
    font-size: 1rem;
    color: #fff;
}

 

.section-title {
    font-size: 1.75rem;
    color: #0056b3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-primary {
    color: #0056b3 !important;
}

.highlight {
    color: #ffb703;
    font-weight: bold;
    font-size: 1.25rem;

}

.icon-list {
    padding-left: 0;
    list-style: none;
}

.icon-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.icon-list li::before {
    content: '✔';
    font-size: 1.2rem;
    color: #007bff;
    margin-right: 10px;
    font-weight: bold;
}

.btn-cta {
    background-color: #ffb703;
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: bold;
    transition: transform 0.2s, background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #ff9e00;
    transform: scale(1.05);
}

.text-muted {
    color: #6c757d !important;
}
