/* ==========================================
   GKSchools Centralized Stylesheet (2026)
   ========================================== */

/* ===== 1. Premium Header & Navigation Styles ===== */
:root {
    --header-bg: rgba(255, 255, 255, 0.95);
    --accent: #fdc800;
    --nav-txt: #1e293b;
    --nav-hover: #0d9488;
    --border-color: #e2e8f0;
}

#gkschools-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(to right, var(--accent) 0%, #0d9488 100%);
    z-index: 1100;
    transition: width 0.1s ease-out;
}

.gks-premium-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: padding 0.3s ease;
    padding: 12px 0;
}

.gks-premium-header.scrolled {
    padding: 8px 0;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.brand-logo {
    height: 38px;
    width: auto;
    display: block;
}

.desktop-navbar {
    display: none;
}

@media (min-width: 992px) {
    .desktop-navbar {
        display: block;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-item-link {
    color: var(--nav-txt);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
}

.nav-item-link:hover {
    color: var(--nav-hover);
    text-decoration: none;
}

/* Mega Dropdown Core Styles */
.mega-dropdown {
    position: relative;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    min-width: 550px;
}

.mega-dropdown:hover .mega-menu-content,
.mega-dropdown:focus-within .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.column-title {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 6px;
}

.mega-column a {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.mega-column a:hover {
    color: var(--nav-hover);
}

.standard-drop-link {
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.standard-drop-link:hover {
    background: #f0fdfa;
    color: var(--nav-hover);
    text-decoration: none;
}

/* Actions and CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.action-btn {
    background: transparent;
    border: none;
    color: var(--nav-txt);
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f1f5f9;
    color: var(--nav-hover);
}

.btn-cta-nav {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
    transition: all 0.2s ease;
    text-align: center;
}

.btn-cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(15, 118, 110, 0.3);
    color: #ffffff;
}

.login-nav-link {
    color: #0f766e;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.login-nav-link:hover {
    background: #f0fdfa;
}

/* Avatar & Profile Dropdown */
.profile-dropdown-container {
    position: relative;
}

.profile-avatar-btn {
    background: #0d9488;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.avatar-initials {
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
}

.profile-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1060;
}

.profile-dropdown-container:hover .profile-dropdown-menu,
.profile-dropdown-container:focus-within .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    padding: 8px 16px;
}

.user-greeting {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.profile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.profile-dropdown-menu a:hover {
    background: #f0fdfa;
    color: var(--nav-hover);
}

/* Mobile Hamburger Trigger */
.mobile-hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1020;
}

@media (min-width: 992px) {
    .mobile-hamburger-btn {
        display: none;
    }
}

.mobile-hamburger-btn .bar {
    width: 22px;
    height: 2.5px;
    background: var(--nav-txt);
    border-radius: 100px;
    transition: all 0.2s ease;
}

/* Mobile Sliding Drawer Panel */
.mobile-navigation-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 2000;
    box-shadow: -10px 0 25px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

.mobile-navigation-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f766e;
}

.close-drawer-btn {
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: #1e293b;
    font-weight: 700;
    text-decoration: none;
    background: #f8fafc;
    transition: background 0.15s ease;
}

.mobile-nav-links a:hover {
    background: #f0fdfa;
    color: var(--nav-hover);
}

.collapse-menu {
    list-style: none;
    padding-left: 20px;
    margin: 6px 0 0 0;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.collapse-menu a {
    font-size: 14px;
    font-weight: 600;
    background: transparent;
}

.drawer-item-collapse.active .collapse-menu {
    display: flex;
}

.drawer-item-collapse.active .collapse-toggle i {
    transform: rotate(180deg);
}

.drawer-footer-auth {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 20px;
}

.user-display {
    font-size: 13px;
    color: #64748b;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    display: block;
    opacity: 1;
}

/* Live Search Modal Overlay */
.search-overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: sans-serif;
}

.search-overlay-modal.active {
    display: flex;
}

.search-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.search-modal-body {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.search-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.search-modal-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    transition: all 0.2s ease;
}

.search-modal-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.search-submit-btn {
    background: var(--accent);
    color: #1e293b;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-submit-btn:hover {
    transform: scale(1.03);
}

.popular-searches-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.popular-searches-box .label {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

.popular-searches-box a {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.popular-searches-box a:hover {
    background: var(--accent);
    color: #1e293b;
}


/* ===== 2. Premium Footer Styles ===== */
.gks-premium-footer {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #e2e8f0;
    margin-top: 40px;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Banner */
.footer-cta-banner {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
    padding: 40px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.cta-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-cta-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.footer-cta-btn.primary {
    background: #fdc800;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(253, 200, 0, 0.3);
}

.footer-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(253, 200, 0, 0.4);
}

.footer-cta-btn.secondary {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
}

.footer-cta-btn.secondary:hover {
    background: rgba(255,255,255,0.25);
}

/* Footer Main Grid */
.footer-main {
    background: #0f172a;
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-heading {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s ease, padding-left 0.15s ease;
    display: block;
}

.footer-column ul li a:hover {
    color: #14b8a6;
    padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
    background: #020617;
    padding: 24px 0;
}

.bottom-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-links a {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

.bottom-links a:hover {
    color: #14b8a6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background: #14b8a6;
    color: #ffffff;
    transform: translateY(-2px);
}

.copyright-text {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.copyright-text p {
    font-size: 13px;
    color: #475569;
    margin: 0;
}

.copyright-text a {
    color: #64748b;
    text-decoration: none;
    font-weight: 700;
}

.copyright-text a:hover {
    color: #14b8a6;
}

@media (max-width: 575px) {
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-text h3 {
        font-size: 18px;
    }
    .bottom-grid {
        flex-direction: column;
        text-align: center;
    }
    .bottom-links {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}


/* ===== 3. Dynamic Interactive Quiz Engine Styles ===== */
/* CSS for dynamically adjusted gamified pages */
body.gamified-quiz-active .sidenav.my-content-div2,
body.gamified-quiz-active div[class*="my-content-div2"],
body.gamified-quiz-active .sidenav.my-content-div3,
body.gamified-quiz-active div[class*="my-content-div3"] {
    display: none !important;
}
body.gamified-quiz-active .my-content-div1 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    float: none !important;
}
@media (max-width: 768px) {
    body.gamified-quiz-active .my-content-div1 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Gamified Quiz UI Styles */
.gks-gamified-card, .premium-quiz-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    font-family: 'Outfit', 'Inter', sans-serif;
}

.quiz-intro-section {
    text-align: center;
    padding: 20px 0;
}

.subject-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ccfbf1;
    color: #0f766e;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.meta-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}
@media (min-width: 576px) {
    .meta-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item-box {
    background: #f1f5f9;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}
.stat-item-box .stat-label {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
}
.stat-item-box .stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.btn-start-action, .gks-btn-start {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: white !important;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
    transition: all 0.2s ease;
    width: 100%;
    max-width: 300px;
    display: inline-block;
    text-align: center;
    text-decoration: none !important;
}
.btn-start-action:hover, .gks-btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 118, 110, 0.4);
}

.btn-secondary-action {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 6px;
}
.btn-secondary-action:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.gks-quiz-hud, .quiz-hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid #f1f5f9;
}

.hud-stat-pill, .hud-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
}
.hud-stat-pill.xp {
    background: #fef3c7;
    color: #d97706;
}
.hud-stat-pill.streak {
    background: #fee2e2;
    color: #ef4444;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 100px;
    margin-bottom: 24px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #0f766e 0%, #0d9488 100%);
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gks-question-text, .question-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.gks-options-list, .options-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gks-option-row, .option-interactive-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #334155;
    transition: all 0.2s ease;
}
.gks-option-row:hover, .option-interactive-row:hover {
    border-color: #0d9488;
    background: #f0fdfa;
    transform: translateX(4px);
}
.gks-option-row.disabled, .option-interactive-row.disabled {
    pointer-events: none;
    opacity: 0.8;
}
.gks-option-row.correct, .option-interactive-row.correct {
    border-color: #16a34a;
    background: #dcfce7;
    color: #166534;
}
.gks-option-row.incorrect, .option-interactive-row.incorrect {
    border-color: #dc2626;
    background: #fee2e2;
    color: #991b1b;
}

.opt-icon, .option-icon-indicator {
    font-weight: 800;
    font-size: 16px;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.gks-option-row.correct .opt-icon, .option-interactive-row.correct .option-icon-indicator {
    background: #16a34a;
    color: #ffffff;
}
.gks-option-row.incorrect .opt-icon, .option-interactive-row.incorrect .option-icon-indicator {
    background: #dc2626;
    color: #ffffff;
}

.gks-explanation-card, .explanation-alert-card {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    border-radius: 10px;
    padding: 16px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    display: none;
}

.gks-feedback-title, .feedback-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}
.gks-feedback-title.correct-txt, .feedback-title.correct-txt { color: #16a34a; }
.gks-feedback-title.incorrect-txt, .feedback-title.incorrect-txt { color: #dc2626; }

.gks-btn-next, .btn-next-question {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 16px;
    display: none;
}
.gks-btn-next:hover, .btn-next-question:hover {
    transform: translateY(-1px);
}

.results-dashboard-card {
    text-align: center;
    padding: 40px 20px;
}
.results-score-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    border: 8px solid #0d9488;
}
.results-score-circle .percentage {
    font-size: 32px;
    font-weight: 800;
    color: #0f766e;
}
.results-score-circle .label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
}
.performance-badge {
    font-size: 20px;
    font-weight: 700;
    color: #0f766e;
    margin-bottom: 16px;
}

.gks-results-stat-grid, .results-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px 0;
    justify-content: center;
}

.gks-stat-pill, .result-stat-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 12px 18px;
    border-radius: 10px;
    min-width: 90px;
    text-align: center;
}
.gks-stat-pill .label, .result-stat-pill .label { font-size: 11px; color: #64748b; display: block; margin-bottom: 4px; font-weight: 600; }
.gks-stat-pill .value, .result-stat-pill .value { font-size: 18px; font-weight: 800; color: #0f766e; }

/* ===== 4. Floating Action Buttons ===== */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 99999;
    font-size: 14px;
    border: none;
    outline: none;
    background-color: #0f766e;
    color: white;
    cursor: pointer;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}
#myBtn:hover {
    background-color: #0d9488;
    transform: translateY(-2px);
}

#myBtn1 {
    position: fixed;
    bottom: 80px;
    right: 15px;
    z-index: 99999;
    cursor: pointer;
    transition: all 0.2s ease;
}
#myBtn1:hover {
    transform: scale(1.1);
}

.floating-review-btn {
    position: fixed;
    bottom: 140px;
    right: 15px;
    background: #ffcc00;
    color: #000 !important;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 99999;
    transition: all 0.2s ease;
}
.floating-review-btn:hover {
    transform: translateY(-2px);
    background: #fdc800;
}

@media (max-width: 768px) {
    #myBtn {
        right: 10px;
        bottom: 15px;
        padding: 8px 12px;
        font-size: 12px;
    }
    #myBtn1 {
        right: 10px;
        bottom: 65px;
    }
    #myBtn1 img {
        width: 42px !important;
        height: 42px !important;
    }
    .floating-review-btn {
        right: 10px;
        bottom: 115px;
        padding: 8px 12px;
        font-size: 11px;
    }
}


/* ===== 5. Web Stories Gallery Styles ===== */

   .desktop_7 * {
  font-family: Nunito, sans-serif;
}

.desktop_7 .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.desktop_7 .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.desktop_7 .responsive-container-block.bigContainer {
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
}

.desktop_7 .responsive-container-block.Container {
  max-width: 980px;
  flex-direction: column;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
  margin-top: 80px;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;
}

.desktop_7 .text-blk.headingText {
  font-size: 36px;
  line-height: 50px;
  font-weight: 900;
}

.desktop_7 .text-blk.active {
  font-size: 20px;
  line-height: 34px;
  font-weight: 400;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #03a9f4;
}

.desktop_7 .text-blk.list {
  font-size: 20px;
  line-height: 34px;
  cursor: pointer;
}

.desktop_7 .text-blk.all {
  margin-right: 20px;
  margin-left: 0px;
}

.desktop_7 .text-blk.list {
  margin-left: 0px;
  margin-right: 20px;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.desktop_7 .text-blk.list.active {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
}

.desktop_7 .squareImg {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  width: 225px;
  height: 225px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
}

.desktop_7 .responsive-container-block.imageContainer {
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.desktop_7 .responsive-container-block.optionsContainer {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  min-height: auto;
}

.desktop_7 .project {
  display: inline-block;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.desktop_7 button {
  cursor: pointer;
}

.desktop_7 img {
  cursor: pointer;
}

.desktop_7 img:hover {
  transform: scale(1.02);
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: all;
}

.desktop_7 .hdImg {
  display: none;
}

.desktop_7 .btn-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.desktop_7 .project:hover .btn-box {
  display: block;
}

.desktop_7 .imageContainer {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.desktop_7 .project {
  position: relative;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
}

.desktop_7 .overlay {
  position: fixed;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(71, 69, 69, 0.7);
  height: 100%;
  width: 100%;
  max-height: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
  display: none;
}

.desktop_7 .overlay-inner {
  top: 50%;
  right: 0px;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
  opacity: 1;
  width: fit-content;
  max-width: 50%;
  max-height: 85%;
}

.desktop_7 .close {
  position: absolute;
  top: 3px;
  right: 10px;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
  color: #474545;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: initial;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.desktop_7 .overlay-inner .hdImgs {
  width: fit-content;
  height: calc(85% - 55px);
  display: flex;
}

.desktop_7 .overlay-inner img {
  max-height: 100%;
  max-width: 100%;
  transform: none;
}

.desktop_7 .squareImg.one {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.two {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.three {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.four {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.desktop_7 .squareImg.five {
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 15px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

@media (max-width: 1024px) {
  .desktop_7 .Container {
    width: 690px;
  }

  .desktop_7 .squareImg {
    width: 170px;
    height: 170px;
  }

  .desktop_7 .squareImg.one {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.two {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.three {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.four {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .squareImg.five {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .overlay-inner {
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    width: 80%;
  }

  .desktop_7 .close {
    font-size: 14px;
    top: 2px;
    right: 5px;
  }

  .desktop_7 .overlay {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .desktop_7 .squareImg {
    width: 225px;
    height: 225px;
  }

  .desktop_7 .responsive-container-block.Container {
    max-width: 450px;
  }

  .desktop_7 .responsive-container-block.optionsContainer {
    max-width: 380px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list.all.active {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.headingText {
    text-align: center;
  }

  .desktop_7 .text-blk.list {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list.all.active {
    margin-top: 0px;
    margin-right: 14.4219px;
    margin-bottom: 10px;
    margin-left: 14.4219px;
  }

  .desktop_7 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 500px) {
  .desktop_7 .text-blk.list.all.active {
    font-size: 14px;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 0px;
    padding-left: 15px;
    line-height: 34px;
  }

  .desktop_7 .text-blk.list {
    font-size: 14px;
  }

  .desktop_7 .responsive-container-block.optionsContainer {
    min-height: auto;
  }

  .desktop_7 .responsive-container-block.imageContainer {
    padding-top: 10px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-left: 5px;
  }

  .desktop_7 .responsive-container-block.optionsContainer {
    max-width: 330px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list.all.active {
    font-size: 17px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .text-blk.list {
    font-size: 17px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
  }

  .desktop_7 .squareImg {
    width: 100%;
    height: 25%;
  }

  .desktop_7 .project {
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    width: 100%;
    height: 25%;
  }

  .desktop_7 .overlay-inner {
    margin-top: 20px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    padding-top: 25px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    width: 100%;
  }

  .desktop_7 .overlay {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }

  .desktop_7 .overlay-inner hdImgs {
    width: 90%;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}

/* ===== 5. Premium Student Learning Panel Sidebar Styles ===== */
@media (min-width: 992px) {
    .my-content-right1 {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        padding-bottom: 20px;
    }
    .my-content-right1::-webkit-scrollbar {
        display: none;
    }
    .my-content-right1 {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

.gks-widget-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    font-family: 'Outfit', 'Inter', sans-serif;
    text-align: left;
}
.gks-widget-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.gks-widget-card.challenge-card {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
    color: #ffffff;
    border: none;
}
.gks-widget-card.challenge-card .gks-widget-title {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.gks-widget-card.challenge-card p {
    color: #e2f1f0;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.gks-widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f766e;
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gks-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gks-widget-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}
.gks-widget-item:hover {
    background: #f0fdfa;
    border-color: #99f6e4;
    transform: translateX(3px);
}
.gks-widget-link {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.gks-widget-item:hover .gks-widget-link {
    color: #0f766e;
}

.gks-widget-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}
.gks-widget-badge.easy { background: #dcfce7; color: #166534; }
.gks-widget-badge.medium { background: #fef3c7; color: #d97706; }
.gks-widget-badge.hard { background: #fee2e2; color: #991b1b; }
.gks-widget-badge.new { background: #e0f2fe; color: #0369a1; }

.gks-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.gks-sidebar-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}
.gks-sidebar-tag:hover {
    background: #0f766e;
    color: #ffffff;
    border-color: #0f766e;
}

.gks-progress-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}
.gks-progress-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}
.gks-progress-box .num {
    font-size: 16px;
    font-weight: 800;
    color: #0f766e;
    display: block;
}
.gks-progress-box .label {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.gks-sidebar-btn {
    background: #ffffff;
    color: #0f766e !important;
    border: 1px solid #0f766e;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none !important;
    font-size: 14px;
}
.gks-sidebar-btn:hover {
    background: #0f766e;
    color: #ffffff !important;
}

.gks-sidebar-btn.primary {
    background: #ffffff;
    color: #0f766e !important;
    border: none;
}
.gks-sidebar-btn.primary:hover {
    background: #e2f1f0;
    color: #0f766e !important;
}