
/* ====================== MODERN MCQ CAROUSEL SECTION ====================== */

.qh-mcqs-section {
   background: 
        linear-gradient(var(--qh-gradeint1),var(--qh-gradeint2)),
        url("../../uploads/images/st10.jpg") center/cover no-repeat;
    position: relative;
    
}

.qh-mcqs-section .qh-section-title {
    font-size: 1.75rem;
    font-weight: 700;
}

/* Main Card */
.qh-mcq-card {
    max-width: 780px;
    margin: 0 auto;
    background: var(--qh-surface);
    border: 1px solid var(--qh-border);
    border-radius: var(--qh-radius-lg);
    padding: 32px 35px;
    box-shadow: var(--qh-shadow);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.qh-mcq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.15);
}

/* Category */
.qh-mcq-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--qh-primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

/* Question */
.qh-mcq-question {
    font-size: 1.35rem;
    line-height: 1.55;
    font-weight: 700;
    color: var(--qh-headings);
    margin-bottom: 28px;
    flex: 1;
}

/* Options */
.qh-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.qh-option {
    padding: 14px 18px;
    background: var(--qh-surface1);
    border: 1.5px solid var(--qh-border);
    border-radius: 14px;
    font-size: 1.02rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.qh-option:hover {
    background: rgba(37, 99, 235, 0.06);
    border-color: var(--qh-primary);
    transform: translateX(6px);
}

/* Carousel Improvements */
.qh-mcq-card {
    background: var(--qh-surface);
    border: 1px solid var(--qh-border);
    border-radius: 20px;
    padding: 28px;
    max-width: 720px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    animation: fadeInUp 0.5s ease;
}

.qh-mcq-card:hover {
    transform: translateY(-4px);
}

.qh-mcq-category {
    display: inline-block;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(37,99,235,0.08);
    color: var(--qh-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.qh-mcq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.5;
}

.qh-options .qh-option {
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 12px;
    border: 1px solid var(--qh-border);
    background: var(--qh-surface1);
    transition: 0.2s ease;
    cursor: pointer;
}

.qh-options .qh-option:hover {
    border-color: var(--qh-primary);
    transform: translateX(4px);
    background: rgba(37,99,235,0.06);
}

/* Smooth Framer-like animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}