/* ===== CAREER INTELLIGENCE - JOB QUIZ & OFFLINE RESUME ===== */
.quiz-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #38ef7d, #11998e);
    width: 0%;
    transition: width 0.4s ease;
}

.quiz-question-container {
    padding: 20px 0;
    animation: fadeIn 0.4s ease;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quiz-option:hover {
    background: rgba(56, 239, 125, 0.1);
    border-color: #38ef7d;
    transform: translateX(5px);
}

.quiz-option i {
    font-size: 1.2rem;
    color: #38ef7d;
}

.quiz-result-card {
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.1), rgba(17, 153, 142, 0.1));
    border: 2px dashed #38ef7d;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
    animation: scaleIn 0.5s ease;
}

/* Offline Resume Indicator */
.offline-resume-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(17, 153, 142, 0.1);
    border: 1px solid #11998e;
    border-radius: 12px;
    color: #11998e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 10px 0;
    transition: 0.3s;
}

.offline-resume-link:hover {
    background: #11998e;
    color: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}