:root {
    --navy: #082a55;
    --navy-dark: #031c3e;
    --navy-soft: #0d396f;
    --gold: #e8a823;
    --gold-dark: #c8890a;
    --ink: #082041;
    --muted: #607086;
    --border: #e7edf5;
    --bg: #f8fbff;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #fff;
    color: var(--ink);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.top-strip {
    background: linear-gradient(90deg, var(--navy-dark), var(--navy));
    color: #fff;
    font-size: 13px;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
}

.top-left,
.top-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

    .top-left span {
        opacity: 0.95;
    }

.top-register {
    background: var(--gold);
    padding: 13px 22px;
    margin-right: -1px;
    color: #fff;
    font-weight: 700;
}

.main-nav {
    background: #fff;
    box-shadow: 0 8px 26px rgba(4, 28, 62, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-inner {
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

/* REMOVE OLD SPIRAL STYLE */
/*
.brand-seal {
    ...
}
*/

/* NEW LOGO STYLE */
.brand-logo img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
}

/* TEXT AREA */
.brand-text h1 {
    font-size: 30px;
    line-height: 0.95;
    margin: 0;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
}

.brand-text p {
    margin: 6px 0 0;
    font-size: 13px;
    color: #666;
    letter-spacing: 0.4px;
}

.brand .brand-text h1 {
    font-family: Georgia, serif;
}

.brand .brand-text p {
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 27px;
    font-weight: 700;
    font-size: 13px;
}

    .nav-links a {
        padding: 37px 0;
        position: relative;
    }

        .nav-links a.active:after,
        .nav-links a:hover:after {
            content: "";
            height: 3px;
            background: var(--gold);
            position: absolute;
            left: 0;
            right: 0;
            bottom: 24px;
            border-radius: 4px;
        }

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

    .social-icons a {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: grid !important;
        place-items: center;
        background: var(--navy);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        transition: 0.25s ease;
    }

        .social-icons a:hover {
            background: var(--gold);
            color: var(--navy-dark);
        }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-decoration: none;
        transition: 0.3s ease;
        font-size: 15px;
        font-weight: 700;
    }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--navy-dark);
            transform: translateY(-4px);
        }

.hero-section {
    height: 560px;
    background: linear-gradient( 90deg, rgba(3, 28, 62, 0.96) 0%, rgba(3, 28, 62, 0.88) 35%, rgba(3, 28, 62, 0.35) 68%, rgba(3, 28, 62, 0.15) 100% ), url("/images/BannerUniversity.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 14px;
}

.hero-content h2 {
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1.04;
    margin: 10px 0 20px;
}

    .hero-content h2 span {
        color: var(--gold);
    }

.hero-text {
    font-size: 20px;
    line-height: 1.8;
    color: #e6edf7;
    max-width: 560px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 15px 28px;
    font-weight: 800;
    font-size: 14px;
    transition: 0.25s;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f7bd3b);
    color: #fff;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(232, 168, 35, 0.32);
    }

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

    .btn-outline:hover {
        background: #fff;
        color: var(--navy);
    }

.stat-panel {
    margin-top: -42px;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 15px 38px rgba(6, 34, 74, 0.22);
    border: 1px solid rgba(232, 168, 35, 0.55);
    overflow: hidden;
}

.stat-card {
    padding: 28px 34px;
    color: #fff;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

    .stat-card:last-child {
        border-right: 0;
    }

    .stat-card span {
        grid-row: span 2;
        color: var(--gold);
        font-size: 36px;
    }

    .stat-card strong {
        font-size: 30px;
        line-height: 1;
    }

    .stat-card p {
        font-size: 13px;
        color: #dce8f8;
    }

.feature-grid {
    padding: 56px 0 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    padding: 34px 26px;
    box-shadow: 0 14px 30px rgba(8, 42, 85, 0.07);
    transition: 0.25s;
}

    .feature-card:hover,
    .course-card:hover,
    .guru-card:hover {
        transform: translateY(-6px);
    }

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: #f0f4fa;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: var(--navy);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 9px;
}

.feature-card p {
    font-size: 14px;
    color: #51657b;
}

.courses-section {
    padding: 20px 0 30px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 18px;
}

.left-head span {
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 2px;
}

.section-head h2,
.section-title h2,
.journey-section h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    color: var(--ink);
}

.link-btn {
    border: 1px solid var(--gold);
    color: var(--gold-dark);
    border-radius: 5px;
    padding: 10px 17px;
    font-weight: 800;
    font-size: 13px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.course-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(8, 42, 85, 0.07);
    transition: 0.25s;
}

.course-img {
    height: 92px;
    background-size: cover;
    background-position: center;
}

.img-books {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12)), url("https://images.unsplash.com/photo-1519682337058-a94d519337bc?auto=format&fit=crop&w=600&q=80");
}

.img-book-open {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12)), url("https://images.unsplash.com/photo-1507842217343-583bb7270b66?auto=format&fit=crop&w=600&q=80");
}

.img-certificate {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.12)), url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=600&q=80");
}

.course-body {
    padding: 0 24px 24px;
    position: relative;
}

.course-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    margin-top: -34px;
    border: 1px solid var(--gold);
    font-size: 28px;
}

    .course-icon.purple {
        color: #764bb7;
    }

    .course-icon.gold {
        color: var(--gold-dark);
    }

    .course-icon.green {
        color: #13824d;
    }

.course-body h3 {
    font-size: 18px;
    margin-top: 12px;
}

.course-body p {
    font-size: 13px;
    color: #5d6f80;
    margin: 4px 0 18px;
}

.course-meta {
    font-size: 12px;
    color: #6b7788;
    margin-bottom: 12px;
}

.course-body a {
    background: var(--navy);
    color: #fff;
    border-radius: 5px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    float: right;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    margin: 28px 0 24px;
}

    .section-title span {
        height: 1px;
        width: 150px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .section-title h2 {
        text-transform: uppercase;
        font-size: 23px;
        letter-spacing: 0.8px;
    }

.guru-section {
    padding: 5px 0 22px;
}

.guru-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.guru-card {
    text-align: center;
    transition: 0.25s;
}

    .guru-card img {
        width: 100%;
        height: 255px;
        object-fit: cover;
        object-position: top;
        border-radius: 8px;
        box-shadow: 0 14px 26px rgba(8, 42, 85, 0.12);
    }

    .guru-card h3 {
        font-size: 14px;
        margin-top: 14px;
    }

    .guru-card p {
        font-size: 13px;
        font-weight: 700;
        color: #1d3152;
    }

.blessings-section {
    padding: 0 0 28px;
}

.blessing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    align-items: start;
}

    .blessing-grid img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        border: 5px solid #d89c3c;
        box-shadow: 0 14px 30px rgba(8, 42, 85, 0.13);
    }

    .blessing-grid figcaption {
        text-align: center;
        font-weight: 700;
        margin-top: 10px;
        font-size: 14px;
    }

.journey-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 44px 0 48px;
    color: #fff;
    text-align: center;
}

    .journey-section h2 {
        color: #fff;
        margin-bottom: 35px;
    }

.center {
    text-align: center;
}

.journey-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

    .journey-line:before {
        content: "";
        position: absolute;
        top: 47px;
        left: 10%;
        right: 10%;
        border-top: 1px dashed rgba(232, 168, 35, 0.55);
    }

    .journey-line article {
        position: relative;
        z-index: 1;
    }

    .journey-line div {
        font-size: 12px;
        color: #fff;
        margin-bottom: -5px;
    }

    .journey-line span {
        width: 72px;
        height: 72px;
        border: 2px solid var(--gold);
        border-radius: 50%;
        display: grid;
        place-items: center;
        margin: 0 auto 10px;
        background: var(--navy);
        color: var(--gold);
        font-size: 28px;
    }

    .journey-line h3 {
        font-size: 16px;
    }

    .journey-line p {
        font-size: 12px;
        color: #dce8f8;
        max-width: 135px;
        margin: auto;
    }

.why-section {
    padding: 38px 0 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    text-align: center;
}

    .why-grid article {
        border-right: 1px solid var(--border);
        padding: 0 14px;
    }

        .why-grid article:last-child {
            border-right: 0;
        }

    .why-grid div {
        width: 64px;
        height: 64px;
        margin: 0 auto 12px;
        background: #f1f5fb;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 28px;
        color: var(--navy);
    }

    .why-grid h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .why-grid p {
        font-size: 12px;
        color: #627388;
    }

.cta-card {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    border-radius: 14px;
    color: #fff;
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 32px 38px;
    margin-bottom: 42px;
}

.cta-icon {
    width: 72px;
    height: 72px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 32px;
}

.cta-card h2 {
    font-family: Georgia, serif;
    font-size: 27px;
}

.cta-card p {
    color: #dce8f8;
}

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

.footer {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    color: #fff;
    padding: 54px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr 1.2fr;
    gap: 42px;
}

.footer-logo {
    margin-bottom: 20px;
}

    .footer-logo .brand-logo img {
        width: 72px;
        height: 72px;
        object-fit: contain;
    }

    .footer-logo .brand-text h1 {
        color: #fff;
        font-size: 22px;
        line-height: 0.95;
    }

    .footer-logo .brand-text p {
        color: #cfe0f3;
        font-size: 12px;
        margin-top: 6px;
    }

.footer-brand > p {
    font-size: 14px;
    color: #d9e7f6;
    margin: 18px 0;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 18px;
}

.footer a,
.footer p {
    display: block;
    color: #d9e7f6;
    font-size: 14px;
    margin-bottom: 9px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 40px;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    color: #d9e7f6;
}

@media (max-width: 980px) {
    .nav-links,
    .social-icons {
        display: none;
    }

    .stat-panel,
    .feature-grid,
    .course-grid,
    .guru-grid,
    .blessing-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-section {
        height: auto;
        padding: 70px 0 90px;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .journey-line {
        grid-template-columns: 1fr;
    }

        .journey-line:before {
            display: none;
        }

    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-icon {
        margin: auto;
    }

    .cta-actions {
        justify-content: center;
    }

    .top-left {
        display: none;
    }

    .top-strip-inner {
        justify-content: flex-end;
    }
}

@media (max-width: 640px) {
    .stat-panel,
    .feature-grid,
    .course-grid,
    .guru-grid,
    .blessing-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .brand .brand-text h1 {
        font-size: 19px;
    }

    .brand-logo img {
        width: 58px;
        height: 58px;
    }

    .nav-inner {
        height: 82px;
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .section-head {
        display: block;
    }

    .link-btn {
        display: inline-block;
        margin-top: 12px;
    }

    .blessing-grid img {
        height: auto;
    }

    .footer-bottom {
        display: block;
        text-align: center;
    }

    .top-right {
        gap: 12px;
    }

    .top-register {
        padding: 13px 14px;
    }
}

.heart {
    color: #ff3b3b;
    font-size: 18px;
    display: inline-block;
    margin: 0 3px;
}


/* ===== UPDATED PREMIUM SECTIONS - BLUE THEME RETAINED ===== */
.feature-grid-premium {
    padding-top: 62px;
}

    .feature-grid-premium .feature-card {
        position: relative;
        overflow: hidden;
        min-height: 265px;
        padding: 0;
        text-align: left;
        border: 1px solid rgba(232, 168, 35, 0.28);
    }

    .feature-grid-premium .feature-bg {
        height: 105px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

        .feature-grid-premium .feature-bg:after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(3, 28, 62, 0.05), rgba(3, 28, 62, 0.55));
        }

.feature-learning .feature-bg {
    background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=700&q=80");
}

.feature-exams .feature-bg {
    background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=700&q=80");
}

.feature-certificates .feature-bg {
    background-image: url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=700&q=80");
}

.feature-dashboard .feature-bg {
    background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=700&q=80");
}

.feature-grid-premium .feature-content {
    padding: 0 24px 26px;
    text-align: center;
}

.feature-grid-premium .icon-circle {
    margin-top: -34px;
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid rgba(232, 168, 35, 0.45);
    box-shadow: 0 10px 22px rgba(8, 42, 85, 0.13);
    color: var(--navy);
}

    .feature-grid-premium .icon-circle i {
        font-size: 28px;
    }

.blessings-guru-section {
    padding: 10px 0 34px;
}

.blessing-grid-premium {
    margin-bottom: 16px;
}

    .blessing-grid-premium figure {
        background: #fff;
        border-radius: 12px;
        padding: 12px;
        border: 1px solid rgba(232, 168, 35, 0.35);
        box-shadow: 0 14px 30px rgba(8, 42, 85, 0.09);
    }

    .blessing-grid-premium img {
        height: 350px;
        border-radius: 8px;
        border: 4px solid #d89c3c;
    }

.guru-title-spaced {
    margin-top: 34px;
}

.guru-grid-premium .guru-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px 12px 18px;
    border: 1px solid rgba(232, 168, 35, 0.30);
    box-shadow: 0 14px 30px rgba(8, 42, 85, 0.08);
}

    .guru-grid-premium .guru-card img {
        border-radius: 10px;
    }

.why-section-premium {
    padding: 42px 0 36px;
    background: linear-gradient(180deg, #fff, #fbfdff);
}

.why-grid-premium {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border: 1px solid rgba(232, 168, 35, 0.35);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(8, 42, 85, 0.06);
}

    .why-grid-premium article {
        padding: 28px 18px;
        border-right: 1px solid rgba(232, 168, 35, 0.28);
        border-bottom: none;
    }

        .why-grid-premium article:last-child {
            border-right: none;
        }

    .why-grid-premium div {
        background: transparent;
        color: var(--gold);
        width: auto;
        height: auto;
        margin-bottom: 10px;
    }

        .why-grid-premium div i {
            font-size: 38px;
        }

    .why-grid-premium h3 {
        color: var(--ink);
        font-size: 15px;
        font-weight: 800;
    }

    .why-grid-premium p {
        color: #4f6278;
        font-size: 12px;
    }

.testimonials-section {
    padding: 34px 0 44px;
    background: radial-gradient(circle at 0 0, rgba(232, 168, 35, 0.10), transparent 28%), linear-gradient(180deg, #fbfdff, #ffffff);
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(232, 168, 35, 0.35);
    border-radius: 12px;
    padding: 30px 28px;
    box-shadow: 0 14px 30px rgba(8, 42, 85, 0.07);
    min-height: 275px;
}

    .testimonial-card .quote {
        color: var(--gold);
        font-size: 32px;
        margin-bottom: 14px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.75;
        color: #233d5a;
        min-height: 96px;
    }

.student {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 14px;
    align-items: center;
    margin-top: 22px;
}

    .student img {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--gold);
        box-shadow: 0 4px 12px rgba(8, 42, 85, 0.15);
    }

    .student strong,
    .student span {
        display: block;
        font-size: 13px;
    }

    .student strong {
        color: var(--navy-dark);
        font-weight: 900;
    }

    .student span {
        color: #5f7185;
    }

.dots {
    text-align: center;
    margin-top: 24px;
}

    .dots span {
        width: 10px;
        height: 10px;
        display: inline-block;
        border-radius: 50%;
        border: 1px solid var(--gold);
        margin: 0 5px;
    }

    .dots .active {
        background: var(--gold);
    }

@media (max-width: 980px) {
    .why-grid-premium,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid-premium .feature-card {
        min-height: 250px;
    }
}

@media (max-width: 640px) {
    .why-grid-premium,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

        .why-grid-premium article {
            border-right: 0;
            border-bottom: 1px solid rgba(232, 168, 35, 0.28);
        }

            .why-grid-premium article:last-child {
                border-bottom: 0;
            }
}

.testimonial-slider {
    width: min(1180px, 92%);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 55px;
}

.testimonial-slide {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

    .testimonial-slide.active {
        display: grid;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--navy);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 5;
}

    .slider-btn.prev {
        left: 0px;
    }

    .slider-btn.next {
        right: 0px;
    }

    .slider-btn:hover {
        background: var(--gold);
        color: var(--navy-dark);
    }

.testimonial-dots {
    text-align: center;
    margin-top: 22px;
}

    .testimonial-dots .dot {
        width: 11px;
        height: 11px;
        border: 1px solid var(--gold);
        border-radius: 50%;
        display: inline-block;
        margin: 0 5px;
        cursor: pointer;
    }

        .testimonial-dots .dot.active {
            background: var(--navy);
            border-color: var(--navy);
        }

@media (max-width: 768px) {
    .testimonial-slider {
        padding: 0 45px;
    }

    .testimonial-slide {
        grid-template-columns: 1fr;
    }
}


/* ===== INNER USER PAGES ===== */
.page-hero {
    min-height: 320px;
    background: linear-gradient(90deg,rgba(3,28,62,.96),rgba(8,42,85,.78),rgba(8,42,85,.42)),url("images/BannerUniversity.png") center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: center
}

    .page-hero .breadcrumb {
        font-size: 13px;
        color: #dce8f8;
        margin-bottom: 16px
    }

    .page-hero h1 {
        font-family: Georgia,serif;
        font-size: 54px;
        line-height: 1.06;
        margin-bottom: 14px
    }

        .page-hero h1 span {
            color: var(--gold)
        }

    .page-hero p {
        max-width: 760px;
        font-size: 18px;
        color: #e7f0fb
    }

.inner-section {
    padding: 58px 0
}

.inner-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.inner-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 14px 32px rgba(8,42,85,.08)
}

    .inner-card h2, .inner-card h3 {
        font-family: Georgia,serif;
        color: var(--navy);
        margin-bottom: 14px
    }

    .inner-card p, .inner-card li {
        color: #556a81;
        font-size: 15px
    }

    .inner-card ul {
        padding-left: 20px
    }

.inner-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(8,42,85,.16);
    object-fit: cover
}

.timeline {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
    position: relative
}

    .timeline:before {
        content: "";
        position: absolute;
        top: 34px;
        left: 5%;
        right: 5%;
        height: 2px;
        background: linear-gradient(90deg,transparent,var(--gold),transparent)
    }

    .timeline article {
        position: relative;
        text-align: center;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 22px 14px;
        box-shadow: 0 10px 24px rgba(8,42,85,.06)
    }

.year-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,var(--navy-dark),var(--navy));
    color: var(--gold);
    border: 2px solid var(--gold);
    font-size: 24px
}

.mission-vision-grid, .founder-grid, .supporter-grid, .committee-grid {
    display: grid;
    gap: 24px
}

.mission-vision-grid {
    grid-template-columns: repeat(2,1fr)
}

.founder-grid {
    grid-template-columns: repeat(3,1fr)
}

.supporter-grid {
    grid-template-columns: repeat(4,1fr)
}

.committee-grid {
    grid-template-columns: repeat(5,1fr)
}

.profile-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(8,42,85,.08);
    transition: .25s
}

    .profile-card:hover {
        transform: translateY(-6px)
    }

    .profile-card img {
        width: 112px;
        height: 112px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #eef4fb;
        box-shadow: 0 8px 18px rgba(8,42,85,.15);
        margin-bottom: 14px
    }

    .profile-card h3 {
        color: var(--navy);
        font-size: 16px
    }

    .profile-card .role {
        color: var(--gold-dark);
        font-weight: 800;
        font-size: 13px;
        margin: 4px 0 10px
    }

    .profile-card p {
        color: #5c6f84;
        font-size: 13px
    }

.amount {
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
    margin: 10px 0
}

.form-wrap {
    max-width: 820px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 16px 38px rgba(8,42,85,.09)
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

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

    .form-field.full {
        grid-column: 1/-1
    }

    .form-field label {
        color: var(--navy);
        font-weight: 800
    }

    .form-field input, .form-field textarea, .form-field select {
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 13px 14px;
        font: inherit;
        outline: none
    }

    .form-field textarea {
        min-height: 120px;
        resize: vertical
    }

.auth-page {
    min-height: calc(100vh - 210px);
    background: radial-gradient(circle at 0 0,rgba(232,168,35,.12),transparent 25%),linear-gradient(135deg,#f8fbff,#eef5ff);
    padding: 70px 0;
    display: grid;
    place-items: center
}

.auth-card {
    width: min(480px,92%);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 22px 54px rgba(8,42,85,.14)
}

    .auth-card .brand-logo img {
        margin: 0 auto 12px
    }

    .auth-card h1 {
        font-family: Georgia,serif;
        color: var(--navy);
        text-align: center;
        margin-bottom: 8px
    }

    .auth-card > p {
        text-align: center;
        color: #61758c;
        margin-bottom: 24px
    }

.course-list-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px
}

.filter-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    height: max-content;
    box-shadow: 0 12px 30px rgba(8,42,85,.06)
}

    .filter-panel a {
        display: block;
        padding: 12px 14px;
        border-radius: 9px;
        color: var(--navy);
        font-weight: 800;
        font-size: 14px
    }

        .filter-panel a.active, .filter-panel a:hover {
            background: var(--navy);
            color: #fff
        }

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

.course-list-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(8,42,85,.08)
}

    .course-list-card img {
        width: 100%;
        height: 175px;
        object-fit: cover
    }

    .course-list-card .body {
        padding: 22px
    }

    .course-list-card h3 {
        color: var(--navy);
        font-family: Georgia,serif;
        margin-bottom: 8px
    }

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fff7e8;
    color: var(--gold-dark);
    border: 1px solid rgba(232,168,35,.35);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: calc(100vh - 42px)
}

.student-sidebar, .admin-sidebar {
    background: linear-gradient(180deg,var(--navy-dark),var(--navy));
    color: #fff;
    padding: 22px
}

.avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: url("https://images.unsplash.com/photo-1603415526960-f7e0328c63b1?auto=format&fit=crop&w=160&q=80") center/cover;
    border: 3px solid var(--gold);
    margin: 8px auto 10px
}

.sidebar-profile {
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.14);
    margin-bottom: 18px
}

.side-link {
    display: block;
    color: #dce8f8;
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 7px;
    font-weight: 700
}

    .side-link.active, .side-link:hover {
        background: rgba(255,255,255,.12);
        color: #fff
    }

.dashboard-main {
    padding: 30px;
    background: #f7faff
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-bottom: 24px
}

.metric-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(8,42,85,.07)
}

    .metric-card strong {
        display: block;
        font-size: 32px;
        color: var(--navy);
        line-height: 1
    }

    .metric-card span {
        color: #5d6f84;
        font-size: 13px
    }

.table-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(8,42,85,.07)
}

    .table-card table {
        width: 100%;
        border-collapse: collapse
    }

    .table-card th, .table-card td {
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        text-align: left;
        font-size: 14px
    }

    .table-card th {
        background: #f2f7ff;
        color: var(--navy)
    }

.status {
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block
}

    .status.active, .status.passed {
        background: #e8fbf0;
        color: #198754
    }

    .status.draft {
        background: #fff4df;
        color: #b77900
    }

    .status.inactive, .status.failed {
        background: #ffecec;
        color: #c93030
    }

.viewer-layout {
    display: grid;
    grid-template-columns: 260px 1fr 280px;
    gap: 22px
}

.course-menu, .notes-panel, .exam-palette {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(8,42,85,.07)
}

    .course-menu a {
        display: flex;
        justify-content: space-between;
        padding: 12px;
        border-radius: 9px;
        color: var(--navy);
        font-weight: 700;
        font-size: 13px
    }

        .course-menu a.active, .course-menu a:hover {
            background: #edf4ff
        }

.pdf-viewer {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(8,42,85,.10)
}

.viewer-toolbar {
    background: var(--navy-dark);
    color: #fff;
    padding: 13px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.pdf-page {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 42px;
    background: linear-gradient(180deg,rgba(255,255,255,.95),rgba(239,246,255,.95)),url("https://images.unsplash.com/photo-1607237138185-eedd9c632b0b?auto=format&fit=crop&w=1400&q=80") center/cover
}

    .pdf-page h1 {
        font-family: Georgia,serif;
        font-size: 38px;
        color: var(--navy)
    }

    .pdf-page img {
        width: 100%;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(8,42,85,.18)
    }

.exam-layout {
    display: grid;
    grid-template-columns: 1fr 270px;
    gap: 24px
}

.exam-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 14px 34px rgba(8,42,85,.09)
}

.progress-line {
    height: 8px;
    background: #e8f0fb;
    border-radius: 999px;
    overflow: hidden;
    margin: 16px 0 26px
}

    .progress-line span {
        display: block;
        height: 100%;
        width: 24%;
        background: var(--navy)
    }

.option {
    display: block;
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 14px;
    cursor: pointer
}

    .option.selected {
        border-color: #2a64ff;
        background: #f0f5ff;
        box-shadow: 0 0 0 1px #2a64ff inset
    }

.palette-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 10px;
    margin: 16px 0
}

    .palette-grid span {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: #edf4ff;
        color: var(--navy);
        font-weight: 800
    }

        .palette-grid span.done {
            background: #dff7e8;
            color: #168247
        }

        .palette-grid span.current {
            background: var(--navy);
            color: #fff
        }

.result-hero-card {
    background: linear-gradient(90deg,var(--navy-dark),var(--navy));
    color: #fff;
    border-radius: 18px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px
}

.score-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#16a34a 0 80%,#e9eef7 80% 100%);
    display: grid;
    place-items: center;
    margin: auto
}

    .score-ring div {
        width: 112px;
        height: 112px;
        border-radius: 50%;
        background: #fff;
        color: var(--navy);
        display: grid;
        place-items: center;
        font-size: 32px;
        font-weight: 900
    }

.result-actions {
    display: grid;
    gap: 12px
}

.report-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px
}

.chart-placeholder {
    height: 260px;
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 22px
}

    .chart-placeholder span {
        flex: 1;
        background: linear-gradient(180deg,var(--gold),var(--navy));
        border-radius: 8px 8px 0 0
    }
/* admin */ .admin-shell {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh
}

.admin-main {
    background: #f7faff;
    padding: 26px
}

.admin-topbar {
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px
}

.admin-page-title h1 {
    color: var(--navy);
    font-size: 26px
}

.admin-page-title p {
    color: #63758b
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px
}

    .admin-toolbar input, .admin-toolbar select {
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 12px 14px
    }

.action-btn {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    padding: 8px 10px;
    font-weight: 800
}

@media(max-width:1100px) {
    .viewer-layout, .exam-layout, .report-grid, .admin-grid-2 {
        grid-template-columns: 1fr
    }

    .timeline {
        grid-template-columns: repeat(3,1fr)
    }

    .supporter-grid, .committee-grid, .metric-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .course-list-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:900px) {
    .inner-grid-2, .mission-vision-grid, .founder-grid, .course-page-grid, .dashboard-layout, .admin-shell {
        grid-template-columns: 1fr
    }

    .admin-sidebar, .student-sidebar {
        min-height: auto
    }
}

@media(max-width:640px) {
    .timeline, .supporter-grid, .committee-grid, .metric-grid, .form-grid, .pdf-page, .result-hero-card {
        grid-template-columns: 1fr
    }

    .page-hero h1 {
        font-size: 36px
    }
}

.subscribe-strip {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 0;
    margin-top: 60px;
}

.subscribe-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

    .subscribe-inner h2 {
        color: #fff;
        max-width: 650px;
        margin-top: 8px;
    }

    .subscribe-inner .eyebrow {
        color: var(--gold);
    }

.subscribe-form {
    display: flex;
    gap: 12px;
    min-width: 450px;
}

    .subscribe-form input {
        flex: 1;
        height: 52px;
        border: none;
        border-radius: 10px;
        padding: 0 18px;
        font-size: 15px;
    }

    .subscribe-form button {
        height: 52px;
        padding: 0 24px;
        border: none;
        border-radius: 10px;
        background: var(--gold);
        color: var(--navy-dark);
        font-weight: 800;
        cursor: pointer;
    }

        .subscribe-form button:hover {
            transform: translateY(-2px);
        }

@media (max-width: 768px) {

    .subscribe-inner {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-form {
        min-width: 100%;
        width: 100%;
        flex-direction: column;
    }
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 980px) {
    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: #fff;
        color: var(--navy);
        font-size: 20px;
        cursor: pointer;
    }
}

.dashboard-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

    .dashboard-filter a {
        padding: 10px 18px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: #fff;
        color: var(--navy);
        font-size: 13px;
        font-weight: 800;
    }

        .dashboard-filter a:hover {
            background: var(--navy);
            color: #fff;
        }

.dashboard-section-title {
    margin-bottom: 22px;
}

    .dashboard-section-title h2 {
        font-family: Georgia, serif;
        color: var(--navy);
        font-size: 28px;
    }

    .dashboard-section-title p {
        color: var(--muted);
    }

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

.student-course-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 14px 32px rgba(8,42,85,.08);
    position: relative;
    transition: .25s;
}

    .student-course-card:hover {
        transform: translateY(-6px);
    }

.course-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #eef5ff;
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.student-course-card h3 {
    color: var(--navy);
    font-size: 20px;
    margin-bottom: 6px;
}

.student-course-card p {
    color: var(--muted);
    margin-bottom: 18px;
}

.dashboard-progress {
    height: 10px;
    background: #e8f0fb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

    .dashboard-progress span {
        display: block;
        height: 100%;
        background: linear-gradient(90deg, var(--gold), var(--navy));
        border-radius: 999px;
    }

.progress-info {
    margin-bottom: 18px;
    color: var(--muted);
}

.dashboard-empty {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(8,42,85,.08);
}

    .dashboard-empty i {
        font-size: 48px;
        color: var(--gold);
        margin-bottom: 18px;
    }

    .dashboard-empty h3 {
        color: var(--navy);
        margin-bottom: 8px;
    }

    .dashboard-empty p {
        color: var(--muted);
        margin-bottom: 22px;
    }

.dashboard-card {
    text-decoration: none;
    color: inherit;
}

@media(max-width: 980px) {
    .student-course-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 640px) {
    .student-course-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        display: block;
    }

        .dashboard-header .btn {
            margin-top: 16px;
        }
}

.course-detail-hero {
    padding-bottom: 55px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 4px;
}

.course-progress-card {
    max-width: 760px;
    margin-top: 30px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.16);
}

.progress-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 18px;
}

    .progress-info div {
        padding: 14px;
        border-radius: 16px;
        background: rgba(255,255,255,0.16);
        text-align: center;
    }

    .progress-info strong {
        display: block;
        font-size: 28px;
        line-height: 1;
    }

    .progress-info span {
        display: block;
        margin-top: 6px;
        font-size: 13px;
        opacity: .9;
    }

.progress-track {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.25);
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #d6a642, #fff1b8);
    transition: width .35s ease;
}

.module-timeline {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
    position: relative;
}

.module-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 31, 58, .09);
    border: 1px solid rgba(10, 31, 98, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .module-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 24px 55px rgba(20, 31, 58, .14);
    }

    .module-card.locked {
        opacity: .68;
        background: #f7f7f7;
    }

    .module-card.completed {
        border-color: rgba(34, 139, 84, .24);
        background: linear-gradient(180deg, #ffffff, #f7fff9);
    }

.module-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #4a3b8f, #8d6bd8);
    box-shadow: 0 12px 25px rgba(74, 59, 143, .25);
}

.module-card.completed .module-number {
    background: linear-gradient(135deg, #1f8b4c, #68bf82);
}

.module-card.locked .module-number {
    background: linear-gradient(135deg, #737373, #a5a5a5);
}

.module-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.module-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #8a6d1d;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.module-content h3 {
    margin: 0;
    font-size: 22px;
    color: #14213d;
}

.module-content p {
    margin: 10px 0 18px;
    color: #657085;
    line-height: 1.7;
}

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

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #d8d8d8;
    color: #6b6b6b;
    text-decoration: none;
    cursor: not-allowed;
    font-weight: 700;
}

.btn-outline {
    border: 1px solid rgba(10, 31, 98, .18);
    color: #0A1F62;
    background: #fff;
}

.course-detail-footer {
    max-width: 980px;
    margin: 30px auto 0;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .progress-info {
        grid-template-columns: 1fr;
    }

    .module-card {
        grid-template-columns: 1fr;
    }

    .module-top {
        flex-direction: column;
    }
}

.module-detail-hero {
    padding-bottom: 60px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 4px;
}

.module-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: end;
    margin-top: 16px;
}

.module-eyebrow {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.module-status-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.16);
}

.status-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    font-size: 26px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #6b5fb8, #9c7be8);
}

    .status-icon.success,
    .status-icon.completed {
        background: linear-gradient(135deg, #1f8b4c, #70c487);
    }

.module-status-card h3 {
    margin: 0 0 8px;
    color: #fff;
}

.module-status-card p {
    margin: 0;
    color: rgba(255,255,255,.84);
    line-height: 1.6;
}

.module-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start;
}

.module-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card,
.content-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08);
}

.sidebar-card {
    padding: 22px;
}

    .sidebar-card h3 {
        margin: 0 0 16px;
        color: #14213d;
        font-size: 20px;
    }

.module-mini-list {
    display: grid;
    gap: 10px;
}

.module-mini-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    text-decoration: none;
    color: #26334d;
    background: #f7f8fb;
    border: 1px solid transparent;
}

    .module-mini-item span {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: #e8e4fb;
        color: #4a3b8f;
        font-weight: 800;
        font-size: 13px;
    }

    .module-mini-item strong {
        font-size: 13px;
        line-height: 1.4;
        font-weight: 700;
    }

    .module-mini-item.current {
        background: #fff8e4;
        border-color: rgba(214,166,66,.5);
    }

    .module-mini-item.completed span {
        background: #e7f7ec;
        color: #1f8b4c;
    }

    .module-mini-item.locked {
        opacity: .6;
        cursor: not-allowed;
    }

        .module-mini-item.locked span {
            background: #ededed;
            color: #777;
        }

.module-main {
    min-width: 0;
}

.content-card {
    padding: 24px;
    margin-bottom: 24px;
}

.content-card-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

    .content-card-header span,
    .action-label {
        display: inline-block;
        margin-bottom: 6px;
        font-size: 12px;
        font-weight: 800;
        color: #8a6d1d;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .content-card-header h2,
    .action-card h2 {
        margin: 0;
        color: #14213d;
        font-size: 24px;
    }

.pdf-frame-wrap {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(10,31,98,.12);
    background: #f3f4f8;
}

.empty-material {
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #657085;
    background: #f7f8fb;
    border-radius: 18px;
    padding: 30px;
}

    .empty-material i {
        font-size: 46px;
        color: #b8a36d;
        margin-bottom: 12px;
    }

.action-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

    .action-card p {
        margin: 10px 0 0;
        color: #657085;
        line-height: 1.7;
    }

.action-buttons {
    flex-shrink: 0;
}

.btn-success {
    background: linear-gradient(135deg, #1f8b4c, #70c487);
    color: #fff;
    border: none;
}

.btn-outline {
    border: 1px solid rgba(10,31,98,.18);
    color: #0A1F62;
    background: #fff;
}

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #d8d8d8;
    color: #6b6b6b;
    text-decoration: none;
    cursor: not-allowed;
    font-weight: 700;
}

.alert-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

    .alert-box.success {
        background: #e7f7ec;
        color: #1f7b46;
    }

    .alert-box.danger {
        background: #fdecec;
        color: #b42318;
    }

.module-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}

.nav-card {
    display: block;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(10,31,98,.08);
    box-shadow: 0 14px 35px rgba(20,31,58,.07);
    text-decoration: none;
    color: #14213d;
}

    .nav-card.right {
        text-align: right;
    }

    .nav-card span {
        display: block;
        color: #8a6d1d;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 6px;
    }

    .nav-card strong {
        font-size: 15px;
        line-height: 1.5;
    }

    .nav-card.disabled {
        opacity: .55;
    }

.back-action {
    margin-top: 6px;
}

.empty-text {
    color: #657085;
    margin: 0;
}

@media (max-width: 992px) {
    .module-hero-grid,
    .module-layout,
    .module-nav {
        grid-template-columns: 1fr;
    }

    .module-sidebar {
        position: static;
    }

    .action-card,
    .content-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-card.right {
        text-align: left;
    }
}

.exam-hero {
    padding-bottom: 65px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 4px;
}

.exam-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.exam-card,
.exam-palette > div {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(10,31,98,.08);
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
}

.exam-card {
    padding: 34px;
    min-height: 500px;
}

.question-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

    .question-head h3 {
        margin: 0;
        color: #0A1F62;
        font-size: 18px;
        font-weight: 800;
    }

.question-status {
    padding: 7px 13px;
    border-radius: 999px;
    background: #eef3fa;
    color: #0A1F62;
    font-size: 12px;
    font-weight: 800;
}

    .question-status.answered {
        background: #dff7e8;
        color: #198754;
    }

    .question-status.review {
        background: #fff3cd;
        color: #9a6a00;
    }

.progress-line {
    height: 8px;
    border-radius: 999px;
    background: #e7eef8;
    overflow: hidden;
    margin-bottom: 28px;
}

    .progress-line span {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: #0A1F62;
        transition: width .25s ease;
    }

.question-block h2 {
    margin: 0 0 24px;
    color: #061b46;
    font-size: 24px;
    line-height: 1.45;
}

.options {
    display: grid;
    gap: 14px;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid #dde7f3;
    color: #061b46;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}

    .option:hover {
        border-color: #f2b428;
        background: #fffaf0;
    }

    .option input {
        accent-color: #0A1F62;
    }

    .option.selected {
        border-color: #2962ff;
        background: #f4f7ff;
        box-shadow: 0 0 0 1px #2962ff inset;
    }

.question-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.exam-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

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

.btn-light {
    background: #f5f7fb;
    color: #0A1F62;
    border: 1px solid #e1e8f2;
}

.btn-outline {
    border: 1px solid rgba(10,31,98,.18);
    color: #0A1F62;
    background: #fff;
}

.exam-palette {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 90px;
}

.timer-card,
.palette-card {
    padding: 24px;
}

    .timer-card h3,
    .palette-card h3 {
        margin: 0 0 14px;
        color: #061b46;
        font-size: 18px;
    }

    .timer-card h1 {
        margin: 0;
        color: #0A1F62;
        font-size: 34px;
        font-weight: 900;
    }

    .timer-card.warning h1 {
        color: #dc3545;
    }

.palette-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.palette-item {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    font-weight: 800;
    cursor: pointer;
    color: #0A1F62;
    background: #eaf2fb;
    transition: transform .15s ease;
}

    .palette-item:hover {
        transform: translateY(-2px);
    }

    .palette-item.current {
        background: #0A1F62;
        color: #fff;
    }

    .palette-item.answered {
        background: #dff7e8;
        color: #198754;
    }

    .palette-item.review {
        background: #fff3cd;
        color: #9a6a00;
    }

    .palette-item.not-answered {
        background: #eaf2fb;
        color: #0A1F62;
    }

.legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #657085;
}

.legend-box {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

    .legend-box.current {
        background: #0A1F62;
    }

    .legend-box.answered {
        background: #198754;
    }

    .legend-box.review {
        background: #ffc107;
    }

    .legend-box.not-answered {
        background: #eaf2fb;
        border: 1px solid #cbd8e8;
    }

.submit-wide {
    width: 100%;
    justify-content: center;
}

@media (max-width: 992px) {
    .exam-layout {
        grid-template-columns: 1fr;
    }

    .exam-palette {
        position: static;
    }

    .palette-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (max-width: 640px) {
    .exam-card {
        padding: 22px;
    }

    .question-head,
    .exam-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-actions {
        width: 100%;
    }

        .footer-actions .btn,
        #prevBtn {
            width: 100%;
            justify-content: center;
        }

    .palette-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.access-denied-card {
    max-width: 650px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 28px;
    background: #fff;
    text-align: center;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08)
}

    .access-denied-card i {
        width: 76px;
        height: 76px;
        display: grid;
        place-items: center;
        border-radius: 26px;
        margin: 0 auto 18px;
        background: #f5e8bf;
        color: #0A1F62;
        font-size: 32px
    }

    .access-denied-card h2 {
        color: #14213d;
        margin-bottom: 10px
    }

    .access-denied-card p {
        color: #657085;
        margin-bottom: 22px
    }

.module-detail-hero {
    padding-bottom: 60px
}

.breadcrumb a {
    color: inherit;
    text-decoration: none
}

.breadcrumb span {
    margin: 0 4px
}

.module-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: end;
    margin-top: 16px
}

.module-eyebrow {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.module-status-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.16)
}

.status-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    font-size: 26px;
    margin-bottom: 14px;
    background: linear-gradient(135deg,#6b5fb8,#9c7be8)
}

    .status-icon.success, .status-icon.completed {
        background: linear-gradient(135deg,#1f8b4c,#70c487)
    }

.module-status-card h3 {
    margin: 0 0 8px;
    color: #fff
}

.module-status-card p {
    margin: 0;
    color: rgba(255,255,255,.84);
    line-height: 1.6
}

.module-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start
}

.module-sidebar {
    position: sticky;
    top: 90px
}

.sidebar-card, .content-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08)
}

.sidebar-card {
    padding: 22px
}

    .sidebar-card h3 {
        margin: 0 0 16px;
        color: #14213d;
        font-size: 20px
    }

.module-mini-list {
    display: grid;
    gap: 10px
}

.module-mini-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 14px;
    text-decoration: none;
    color: #26334d;
    background: #f7f8fb;
    border: 1px solid transparent
}

    .module-mini-item span {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 12px;
        background: #e8e4fb;
        color: #4a3b8f;
        font-weight: 800;
        font-size: 13px
    }

    .module-mini-item strong {
        font-size: 13px;
        line-height: 1.4;
        font-weight: 700
    }

    .module-mini-item.current {
        background: #fff8e4;
        border-color: rgba(214,166,66,.5)
    }

    .module-mini-item.completed span {
        background: #e7f7ec;
        color: #1f8b4c
    }

    .module-mini-item.locked {
        opacity: .6;
        cursor: not-allowed
    }

.module-main {
    min-width: 0
}

.content-card {
    padding: 24px;
    margin-bottom: 24px
}

.content-card-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px
}

    .content-card-header span, .action-label {
        display: inline-block;
        margin-bottom: 6px;
        font-size: 12px;
        font-weight: 800;
        color: #8a6d1d;
        text-transform: uppercase;
        letter-spacing: .08em
    }

    .content-card-header h2, .action-card h2 {
        margin: 0;
        color: #14213d;
        font-size: 24px
    }

.pdf-frame-wrap {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(10,31,98,.12);
    background: #f3f4f8
}

.empty-material {
    min-height: 300px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #657085;
    background: #f7f8fb;
    border-radius: 18px;
    padding: 30px
}

.action-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px
}

    .action-card p {
        margin: 10px 0 0;
        color: #657085;
        line-height: 1.7
    }

.btn-success {
    background: linear-gradient(135deg,#1f8b4c,#70c487);
    color: #fff;
    border: none
}

.btn-outline {
    border: 1px solid rgba(10,31,98,.18);
    color: #0A1F62;
    background: #fff
}

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #d8d8d8;
    color: #6b6b6b;
    text-decoration: none;
    cursor: not-allowed;
    font-weight: 700
}

@media(max - width:992px) {
    .module-hero-grid, .module-layout {
        grid-template-columns: 1fr
    }

    .module-sidebar {
        position: static
    }

    .action-card, .content-card-header {
        flex-direction: column;
        align-items: flex-start
    }
}

.course-detail-hero {
    padding-bottom: 55px
}

.breadcrumb a {
    color: inherit;
    text-decoration: none
}

.breadcrumb span {
    margin: 0 4px
}

.alert-box {
    max-width: 980px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 700
}

    .alert-box.success {
        background: #e7f7ec;
        color: #1f7b46
    }

    .alert-box.danger {
        background: #fdecec;
        color: #b42318
    }

.course-progress-card {
    max-width: 760px;
    margin-top: 30px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 45px rgba(0,0,0,.16)
}

.progress-info {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-bottom: 18px color:#fff !important;
}

    .progress-info div {
        padding: 14px;
        border-radius: 16px;
        background: rgba(255,255,255,.16);
        text-align: center
    }

    .progress-info strong {
        display: block;
        font-size: 28px;
        line-height: 1
    }

    .progress-info span {
        display: block;
        margin-top: 6px;
        font-size: 13px;
        opacity: .9
    }

.progress-track {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,.25)
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg,#d6a642,#fff1b8)
}

.payment-card {
    max-width: 980px;
    margin: 0 auto 42px;
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08);
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 22px
}

.payment-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg,#f2b428,#ffdf85);
    color: #0A1F62;
    font-size: 28px
}

    .payment-icon.pending {
        background: linear-gradient(135deg,#0A1F62,#385c9f);
        color: #fff
    }

.payment-card h2 {
    margin: 0 0 10px;
    color: #14213d
}

.payment-card p {
    margin: 0 0 18px;
    color: #657085;
    line-height: 1.7
}

.payment-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: center
}

.qr-box {
    padding: 14px;
    border-radius: 20px;
    background: #f7f8fb;
    border: 1px dashed rgba(10,31,98,.2);
    text-align: center
}

    .qr-box img {
        max-width: 190px;
        width: 100%;
        height: auto
    }

.payment-info strong {
    display: block;
    font-size: 32px;
    color: #0A1F62;
    margin-bottom: 10px
}

.module-timeline {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 22px
}

.module-card {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08)
}

    .module-card.locked {
        opacity: .72;
        background: #f7f7f7
    }

    .module-card.completed {
        border-color: rgba(34,139,84,.24);
        background: linear-gradient(180deg,#fff,#f7fff9)
    }

.module-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg,#4a3b8f,#8d6bd8)
}

.module-card.completed .module-number {
    background: linear-gradient(135deg,#1f8b4c,#68bf82)
}

.module-card.locked .module-number {
    background: linear-gradient(135deg,#737373,#a5a5a5)
}

.module-top {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 10px
}

.module-label {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #8a6d1d;
    text-transform: uppercase;
    letter-spacing: .08em
}

.module-content h3 {
    margin: 0;
    font-size: 22px;
    color: #14213d
}

.module-content p {
    margin: 10px 0 18px;
    color: #657085;
    line-height: 1.7
}

.btn-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    border-radius: 999px;
    background: #d8d8d8;
    color: #6b6b6b;
    text-decoration: none;
    cursor: not-allowed;
    font-weight: 700
}

.btn-outline {
    border: 1px solid rgba(10,31,98,.18);
    color: #0A1F62;
    background: #fff
}

.course-detail-footer {
    max-width: 980px;
    margin: 30px auto 0
}

.text-center {
    text-align: center
}

@media(max - width:768px) {
    .progress-info, .payment-card, .payment-grid, .module-card {
        grid-template-columns: 1fr
    }

    .module-top {
        flex-direction: column
    }
}

.result-hero {
    padding-bottom: 60px;
}

.breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 4px;
}

.result-wrapper {
    display: flex;
    justify-content: center;
}

.result-card {
    width: 100%;
    max-width: 720px;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(20,31,58,.12);
    border: 1px solid rgba(10,31,98,.08);
    text-align: center;
}

.result-header {
    padding: 42px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .result-header::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        right: -70px;
        top: -80px;
        background: rgba(255,255,255,.16);
    }

    .result-header.pass {
        background: linear-gradient(135deg, #1f8b4c, #70c487);
    }

    .result-header.fail {
        background: linear-gradient(135deg, #b42318, #ff7a7a);
    }

.result-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: rgba(255,255,255,.18);
    margin: 0 auto 18px;
    font-size: 40px;
    position: relative;
    z-index: 1;
}

.result-header h2 {
    margin: 0 0 10px;
    font-size: 34px;
    position: relative;
    z-index: 1;
}

.result-header p {
    margin: 0;
    opacity: .92;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.result-body {
    padding: 40px 34px 30px;
}

.circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
}

    .circle svg {
        width: 140px;
        height: 140px;
        transform: rotate(-90deg);
    }

    .circle circle {
        fill: none;
        stroke-width: 12;
        stroke: #edf1f7;
    }

    .circle #progressCircle {
        stroke: @(isPassed ? "#1f8b4c" : "#dc3545");
        stroke-linecap: round;
        stroke-dasharray: 365;
        stroke-dashoffset: 365;
        transition: stroke-dashoffset 1s ease;
    }

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #14213d;
}

    .percentage strong {
        display: block;
        font-size: 28px;
        line-height: 1;
    }

    .percentage span {
        display: block;
        margin-top: 5px;
        font-size: 12px;
        color: #657085;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

.score-panel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.score-main h3 {
    margin: 0;
    color: #14213d;
    font-size: 32px;
}

.score-main p {
    margin: 4px 0 0;
    color: #657085;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 800;
}

.badge-success {
    background: #e7f7ec;
    color: #1f8b4c;
}

.badge-danger {
    background: #fdecec;
    color: #b42318;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 10px;
}

    .result-stats div {
        padding: 18px;
        border-radius: 20px;
        background: #f7f8fb;
        border: 1px solid rgba(10,31,98,.06);
    }

    .result-stats i {
        display: block;
        margin-bottom: 8px;
        font-size: 22px;
        color: #0A1F62;
    }

    .result-stats strong {
        display: block;
        color: #14213d;
        font-size: 24px;
        line-height: 1;
    }

    .result-stats span {
        display: block;
        margin-top: 7px;
        color: #657085;
        font-size: 13px;
        font-weight: 700;
    }

.result-actions {
    padding: 24px;
    display: flex;
    justify-content: center;
    gap: 14px;
    border-top: 1px solid rgba(10,31,98,.08);
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid rgba(10,31,98,.18);
    color: #0A1F62;
    background: #fff;
}

@media(max - width: 640px) {
    .result-header h2 {
        font-size: 28px;
    }

    .result-stats {
        grid-template-columns: 1fr;
    }

    .result-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.about-hero, .about-hero h1, .about-hero p, .about-hero .breadcrumb {
    color: #fff !important;
}

.about-hero-stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 32px;
    max-width: 980px;
}

    .about-hero-stats article {
        padding: 18px;
        border-radius: 20px;
        background: rgba(255,255,255,.14);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,.16);
    }

    .about-hero-stats strong {
        display: block;
        font-size: 28px;
        line-height: 1;
        color: #fff;
    }

    .about-hero-stats span {
        display: block;
        margin-top: 8px;
        color: rgba(255,255,255,.86);
        font-size: 13px;
        font-weight: 700;
    }

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: stretch;
}

.about-intro-card, .about-highlight-card, .leadership-feature, .office-card {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #8a6d1d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-intro-card h2, .leadership-feature h2 {
    margin: 0 0 16px;
    color: #14213d;
    font-size: 34px;
    line-height: 1.2;
}

.about-intro-card p, .about-highlight-card p, .leadership-feature p, .office-card p, .section-lead {
    color: #657085;
    line-height: 1.8;
}

.intro-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-outline {
    border: 1px solid rgba(10,31,98,.18);
    color: #0A1F62;
    background: #fff;
}

.about-highlight-card {
    background: linear-gradient(180deg,#ffffff,#f7f9ff);
}

.highlight-icon, .card-icon, .program-icon, .office-icon, .avatar-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg,#0A1F62,#435fa8);
    color: #fff;
    font-size: 26px;
    margin-bottom: 18px;
}

.about-highlight-card h3 {
    color: #14213d;
    font-size: 24px;
    margin-bottom: 12px;
}

.highlight-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

    .highlight-list span {
        display: flex;
        gap: 10px;
        align-items: center;
        color: #26334d;
        font-weight: 700;
    }

    .highlight-list i {
        color: #1f8b4c;
    }

.mission-vision-grid, .program-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.mission-card h2, .program-card h3, .institution-card h3 {
    color: #14213d;
    margin-bottom: 10px;
}

.mission-card p, .program-card p, .institution-card p {
    color: #657085;
    line-height: 1.7;
}

.program-card, .institution-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(20,31,58,.08);
    border: 1px solid rgba(10,31,98,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

    .program-card:hover, .institution-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 58px rgba(20,31,58,.12);
    }

.governance-section {
    background: linear-gradient(180deg,#fff,#f8f6ef);
}

.leadership-feature {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 26px;
}

.leadership-seal {
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: linear-gradient(135deg,#d6a642,#fff1b8);
    color: #0A1F62;
    font-size: 40px;
}

.leadership-grid .profile-card {
    text-align: left;
}

.profile-card .avatar-icon {
    margin-left: 0;
}

.compact-profile {
    min-height: 190px;
}

.advisory-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

    .advisory-list article {
        background: #fff;
        padding: 18px 20px;
        border-radius: 18px;
        border: 1px solid rgba(10,31,98,.08);
        box-shadow: 0 12px 32px rgba(20,31,58,.06);
        color: #14213d;
        font-weight: 800;
    }

    .advisory-list span {
        display: block;
        margin-top: 6px;
        color: #8a6d1d;
        font-size: 13px;
        font-weight: 700;
    }

.section-lead {
    text-align: center;
    max-width: 820px;
    margin: -12px auto 28px;
}

.institution-grid {
    grid-template-columns: repeat(3,1fr);
}

.institution-card i {
    font-size: 34px;
    color: #0A1F62;
    margin-bottom: 14px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.about-journey {
    margin-top: 20px;
}

.about-cta {
    margin-top: 50px;
    margin-bottom: 70px;
}

@media(max-width:992px) {
    .about-hero-stats, .about-intro-grid, .mission-vision-grid, .program-grid, .institution-grid, .office-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leadership-feature {
        grid-template-columns: 1fr;
    }
}

@media(max-width:640px) {
    .about-hero-stats, .about-intro-grid, .mission-vision-grid, .program-grid, .advisory-list, .institution-grid, .office-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-card h2, .leadership-feature h2 {
        font-size: 27px;
    }
}

.leadership-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 26px;
}

.leadership-main-card {
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08);
    position: relative;
    overflow: hidden;
}

    .leadership-main-card::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        border-radius: 50%;
        right: -70px;
        top: -70px;
        background: rgba(214,166,66,.14);
    }

.chancellor-card {
    border: 1px solid rgba(214,166,66,.45);
    background: linear-gradient(180deg, #fff, #fffaf0);
}

.leadership-main-card h2 {
    margin: 0 0 12px;
    color: #14213d;
    font-size: 24px;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.chancellor-card h2 {
    font-size: 28px;
}

.leadership-main-card p {
    margin: 12px 0 0;
    color: #657085;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.leadership-main-card .role,
.technology-leadership-card .role {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: #fff3cd;
    color: #8a6d1d;
    font-size: 13px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.leadership-seal {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #d6a642, #fff1b8);
    color: #0A1F62;
    font-size: 32px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

    .leadership-seal.blue {
        background: linear-gradient(135deg, #0A1F62, #435fa8);
        color: #fff;
    }

    .leadership-seal.green {
        background: linear-gradient(135deg, #1f8b4c, #70c487);
        color: #fff;
    }

.technology-leadership-card {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 36px rgba(20,31,58,.08);
    border: 1px solid rgba(10,31,98,.08);
}

    .technology-leadership-card h3 {
        margin: 0 0 8px;
        color: #14213d;
        font-size: 22px;
    }

    .technology-leadership-card p {
        margin: 12px 0 0;
        color: #657085;
        line-height: 1.7;
    }

@media (max-width: 992px) {
    .leadership-top-grid {
        grid-template-columns: 1fr;
    }

    .technology-leadership-card {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

.leadership-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #d6a642;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    position: relative;
    z-index: 1;
}

    .leadership-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.chancellor-card .leadership-photo {
    width: 170px;
    height: 170px;
    border-width: 6px;
}

.leadership-main-card {
    text-align: center;
}

    .leadership-main-card p {
        text-align: left;
    }

    .leadership-main-card .role {
        margin-top: 10px;
    }

.home-hero-enhanced .hero-content {
    max-width: 820px;
}

.home-stat-panel .stat-card strong {
    white-space: nowrap;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: stretch;
}

.home-about-card,
.home-purpose-card {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(20,31,58,.09);
    border: 1px solid rgba(10,31,98,.08);
}

    .home-about-card h2 {
        margin: 0 0 16px;
        color: #14213d;
        font-size: 34px;
        line-height: 1.2;
    }

    .home-about-card p,
    .home-purpose-card p {
        color: #657085;
        line-height: 1.8;
    }

.intro-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.purpose-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #0A1F62, #435fa8);
    color: #fff;
    font-size: 28px;
    margin-bottom: 18px;
}

.home-purpose-card h3 {
    color: #14213d;
    font-size: 26px;
    margin-bottom: 12px;
}

.purpose-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

    .purpose-list span {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #26334d;
        font-weight: 700;
    }

    .purpose-list i {
        color: #1f8b4c;
    }

.home-leadership-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 24px;
    margin-top: 34px;
}

.home-leader-card {
    background: linear-gradient(180deg,#fff,#fffaf0);
    border: 2px solid rgba(214,166,66,.45);
    border-radius: 28px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(20,31,58,.10);
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}

    .home-leader-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 28px 60px rgba(20,31,58,.15);
    }

    .home-leader-card::before {
        content: "";
        position: absolute;
        top: -70px;
        right: -70px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(214,166,66,.10);
    }

    .home-leader-card img {
        width: 165px;
        height: 165px;
        object-fit: cover;
        border-radius: 50%;
        border: 6px solid #d6a642;
        box-shadow: 0 12px 35px rgba(0,0,0,.18);
        margin-bottom: 18px;
        position: relative;
        z-index: 2;
    }

    .home-leader-card span {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 999px;
        background: #fff3cd;
        color: #8a6d1d;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .05em;
        text-transform: uppercase;
        margin-bottom: 14px;
        position: relative;
        z-index: 2;
    }

    .home-leader-card h3 {
        font-size: 22px;
        color: #14213d;
        line-height: 1.4;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .home-leader-card p {
        color: #657085;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

.learning-experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

    .learning-experience-grid article {
        background: #fff;
        border-radius: 24px;
        padding: 26px;
        box-shadow: 0 18px 45px rgba(20,31,58,.08);
        border: 1px solid rgba(10,31,98,.08);
        text-align: center;
    }

    .learning-experience-grid i {
        width: 58px;
        height: 58px;
        display: grid;
        place-items: center;
        border-radius: 20px;
        background: linear-gradient(135deg, #d6a642, #fff1b8);
        color: #0A1F62;
        font-size: 24px;
        margin: 0 auto 16px;
    }

    .learning-experience-grid h3 {
        color: #14213d;
        margin-bottom: 10px;
    }

    .learning-experience-grid p {
        color: #657085;
        line-height: 1.7;
        margin: 0;
    }

@media (max-width: 992px) {
    .home-about-grid,
    .home-leadership-row,
    .learning-experience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .home-about-grid,
    .home-leadership-row,
    .learning-experience-grid {
        grid-template-columns: 1fr;
    }

    .home-about-card h2 {
        font-size: 28px;
    }
}
.home-leadership-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 34px;
}
@media (max-width: 992px) {
    .home-leadership-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .home-leadership-row {
        grid-template-columns: 1fr;
    }
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 30px;
}

.contact-form-card {
    background: #fff;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(20,31,58,.08);
    border: 1px solid rgba(10,31,98,.08);
}

.card-header {
    margin-bottom: 25px;
}

    .card-header h2 {
        color: #14213d;
        margin-bottom: 10px;
    }

    .card-header p {
        color: #657085;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

.form-field.full {
    grid-column: span 2;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #14213d;
}

.form-control {
    width: 100%;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    padding: 12px 14px;
    transition: all .3s;
}

    .form-control:focus {
        border-color: #0A1F62;
        outline: none;
        box-shadow: 0 0 0 3px rgba(10,31,98,.12);
    }

.field-validation-error {
    color: #dc3545;
    font-size: 13px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 24px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(20,31,58,.08);
    border: 1px solid rgba(10,31,98,.08);
}

.info-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg,#0A1F62,#435fa8);
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
}

.contact-info-card h3 {
    color: #14213d;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #657085;
    line-height: 1.8;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-lg {
    padding: 14px 24px;
}

@media(max-width:992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field.full {
        grid-column: span 1;
    }
}