.jobs-section {
    padding: 4rem 0;
    background: var(--qutbee-light);
}

.jobs-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1rem;
}

/* Header */
.jobs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.jobs-title {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: 700;
}

.jobs-description {
    font-size: 1.25rem;
    color: var(--gray-600);
}

/* Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Card */
.jobs-section .job-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

/* Shine effect */
.jobs-section .job-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0, 168, 255, 0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.jobs-section .job-card:hover::before {
    opacity: 1;
}

.jobs-section .job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Badge */
.job-badge {
    display: inline-block;
    background: rgba(0, 87, 184, 0.1);
    color: var(--qutbee-blue);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Text */
.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    word-break: break-word;
}

.job-location {
    color: var(--qutbee-blue);
    font-weight: 600;
    margin: 0.5rem 0;
}

.job-description {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Button */
.job-btn {
    background: var(--qutbee-blue);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
    min-height: 44px;
    position: relative;
    
}

.job-btn:hover {
    background: var(--qutbee-dark);
    transform: scale(1.05);
}

/* ===================== */
/* Responsive */
/* ===================== */

/* Tablet */
@media (max-width: 768px) {
    .jobs-section {
        padding: 3rem 0;
    }

    .jobs-description {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .jobs-container {
        padding: 0 0.8rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 1.5rem;
    }

    .job-description {
        font-size: 0.9rem;
    }

    .job-btn {
        width: 100%;
    }
}

/* Extra Small (320px safe) */
@media (max-width: 360px) {

    .jobs-title {
        font-size: 1.6rem;
    }

    .job-card {
        padding: 1.2rem;
    }

    .job-title {
        font-size: 1rem;
    }

    .job-description {
        font-size: 0.85rem;
    }

    .job-btn {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
}