

/* ====================== CONTENT SECTION - SMART PREPARATION ====================== */

.qh-content-section {
    background: var(--qh-bg);
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--qh-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
}

.qh-section-title {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--qh-headings);
}

/* Content Text */
.content-text p {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--qh-text);
    margin-bottom: 1.25rem;
}

.content-text strong {
    color: var(--qh-headings);
    font-weight: 600;
}

/* Image Styling */
.image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid var(--qh-border);
}

.image-badge strong {
    font-size: 1.1rem;
    color: var(--qh-primary);
}

.image-badge small {
    color: var(--qh-muted);
    display: block;
    margin-top: 2px;
}

/* Dark Mode */
.dark-mode .image-badge {
    background: rgba(15, 23, 42, 0.95);
    border-color: #1e343b;
}

.dark-mode .content-text p {
    color: var(--qh-text);
}


/* ====================== INTERVIEW PREPARATION SECTION ====================== */

.qh-content-section {
    background: var(--qh-bg);
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--qh-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
}

/* Title */
.qh-section-title {
    font-size: 2.35rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--qh-headings);
}

/* Content */
.content-text p {
    font-size: 1.07rem;
    line-height: 1.78;
    color: var(--qh-text);
    margin-bottom: 1.3rem;
}

.content-text strong {
    color: var(--qh-headings);
    font-weight: 600;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper img {
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.04);
}

/* Image Badge */
.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid var(--qh-border);
    text-align: center;
}

.image-badge strong {
    font-size: 1.15rem;
    color: var(--qh-primary);
    display: block;
}

.image-badge small {
    color: var(--qh-muted);
    font-size: 0.95rem;
}

/* Dark Mode */
.dark-mode .image-badge {
    background: rgba(15, 23, 42, 0.95);
    border-color: #1e343b;
}

/* Buttons */
.qh-btn-primary {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 14px;
}


.qh-about-section {
    background: 
        linear-gradient(var(--qh-gradeint1),var(--qh-gradeint2)),
        url("../../uploads/images/st9.jpg") center/cover no-repeat;
}

.qh-about-section .section-badge {
    background: rgba(37, 99, 235, 0.08);
    color: var(--qh-primary);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
}

/* Make feature icon consistent with your design */
.feature-icon {
    width: 58px;
    height: 58px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--qh-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.dark-mode .feature-icon {
    background: rgba(11, 234, 237, 0.12);
    color: var(--qh-nav-hover);
}
.faq-section {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.faq-item p {
    color:var(--qh-text);
    line-height: 1.6;
}
