.hero-contact-section {
    background-image: url('../assets/images/get-quote.webp');
    background-position: center center; 
}
.cunsoltation-main {
    background-image: url('../assets/images/startup.webp'); 
}
.hero-contact-content {
    max-width: 900px;
}
.industries-feature-card-2 {
    justify-content: flex-start;
    gap: 30px;
}
.devops-main {
    height: auto;
    gap: 30px;
    justify-content: flex-start;
}

.devops-main .card-content p {
    min-height: 90px;
}
.devops-pipeline {
    flex-wrap: wrap;
}

/* ====card css =========*/
/* ========== Jobs Grid ========== */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ========== Job Card ========== */
.job-card {
    height: 380px;
    border: 2px solid #f0f0f0;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

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

/* ========== Job Header ========== */
.job-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222222;
}

.job-meta {
    display: flex;
    align-items: center;
    font-size: 13px;
    gap: 8px;
    color: #444444;
    font-weight: 400;
    margin: 10px 0 0 0;
}

.job-meta i {
    margin-right: 5px;
}

.security-level {
    background: #3d54b8;
    color: #ffffff;
    padding: 6px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

/* ========== Job Description ========== */
.job-card p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
}

/* ========== Skills Tags ========== */
.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.job-skills span {
    font-size: 12px;
    font-weight: 400;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(61, 84, 184, 0.13);
    color: #3d54b8;
}

/* ========== Actions ========== */
.job-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.salary {
    font-size: 20px;
    font-weight: 600;
    color: #222;
}

/* ========== Responsive ========== */
@media (max-width: 1360px){
    .jobs-grid{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 950px){
    .jobs-grid{
        grid-template-columns: repeat(1,1fr);
    }
}
@media (max-width: 600px) {
    .job-card{
        height: auto;
        gap: 30px;
    }
    .job-meta{
        flex-wrap: wrap;
    }
    .job-header h3 {
        font-size: 1rem;
    }

    .job-apply-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .salary {
        font-size: 0.9rem;
    }
}
