:root{

    --primary:#005533;
    --secondary:#00AC50;

    --accent-blue:#2F5D9F;
    --accent-cyan:#5DB4D6;

    --background:#F8FAF9;
    --surface:#FFFFFF;

    --heading:#1E2A32;

    --text:#4B5563;

    --text-light:#6B7280;

    --border:#DDE5E8;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:Inter,Arial,sans-serif;

}

h1,h2,h3,h4,h5{

    color:var(--heading);

}

a{

    color:var(--primary);

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:#004225;

}
.assessment-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    padding: 0;
}

.assessment-option .form-check-input {
    flex: 0 0 auto;
    margin: 5px 0 0 0;
}

/* Clearly visible assessment radio / checkbox controls */
.assessment-option .form-check-input {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin: 5px 0 0 0;

    border: 2px solid #003856;

    background-color: #ffffff;

    box-shadow: none;
}

.assessment-option .form-check-input:checked {
    background-color: #00ac50;
    border-color: #00ac50;
}

.assessment-option .form-check-input:focus {
    border-color: #00ac50;
    box-shadow: 0 0 0 0.2rem rgba(0, 172, 80, 0.15);
}

.assessment-option:has(.form-check-input:checked) {
    border-color: #00ac50;
    background-color: #f7fbf8;
}

.assessment-option-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.assessment-option-image {
    width: 250px !important;
    height: 150px !important;
    max-width: 250px !important;
    max-height: 150px !important;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
    display: block;
    flex-shrink: 0;
}

.assessment-option-label span {
    display: inline-block;
}

/* =========================================================
   Navbar
   ========================================================= */

.navbar-logo-text {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar .nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar-language {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: all 0.3s ease;
}

.navbar-login {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    transition: all 0.3s ease;
}/* =========================================================
   UYIRSHOLAI NAVBAR - FORCE TWO ROWS
   ========================================================= */

/* Bootstrap makes the navbar container a flex row.
   We need our two custom rows to stack vertically. */

.navbar > .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


/* =========================================================
   ROW 1 - Language + Login
   ========================================================= */

.navbar-top-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 40px;
}

.navbar-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* =========================================================
   ROW 2 - Logo + Navigation
   ========================================================= */

.navbar-main-row {
    width: 100%;
    display: flex;
    align-items: center;
    min-height: 58px;
}

.navbar-main-row .navbar-brand {
    margin-right: auto;
    font-size: 1.8em;
}

.navbar-main-row .navbar-collapse {
    flex-grow: 0;
}

/* =========================================================
   SCROLLED NAVBAR
   ========================================================= */

.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #2F5D9F !important;
}

/* Logo */
.navbar.scrolled .navbar-logo-text {
    color: #123b56 !important;
}

/* Main navigation */
.navbar.scrolled .nav-link {
    color: #1f2933 !important;
}

/* Language */
.navbar.scrolled .navbar-language {
    color: #123b56 !important;
    border-color: #123b56 !important;
    background: transparent;
}

/* Login */
.navbar.scrolled .navbar-login {
    color: #1f2933 !important;
    border-color: #cfd4da !important;
    background: #ffffff;
}

/* Mobile hamburger */
.navbar.scrolled .navbar-toggler {
    border-color: #cfd4da;
}

/* =========================================================
   MOBILE MENU BUTTON - FIXED POSITION
   ========================================================= */

@media (max-width: 991.98px) {

    /*
     * Keep Row 2 as a single line.
     * The menu itself will be positioned separately below it.
     */
    .navbar-main-row {
        position: relative;
        flex-wrap: nowrap !important;
    }

    /*
     * Logo stays on the left.
     */
    .navbar-main-row .navbar-brand {
        margin-right: auto;
        flex-shrink: 1;
    }

    /*
     * Hamburger / Close button stays in the
     * original position on the right.
     */
    .navbar-main-row .navbar-toggler {
        position: relative;
        flex-shrink: 0;
        z-index: 1005;

        width: 42px;
        height: 38px;

        margin-left: 10px !important;
        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 1px solid rgba(255, 255, 255, 0.75);
        background: transparent;
    }

    /*
     * Hide Bootstrap's default hamburger.
     */
    .navbar-main-row .navbar-toggler-icon {
        display: none;
    }

    /*
     * Hamburger
     */
    .navbar-main-row .navbar-toggler::before {
        content: "☰";

        color: #ffffff;

        font-size: 24px;
        line-height: 1;

        transition: color 0.2s ease;
    }

    /*
     * Close button
     */
    .navbar-main-row .navbar-toggler[aria-expanded="true"]::before {
        content: "×";

        color: #ffffff;

        font-size: 32px;
        line-height: 1;
    }

    /*
     * Hover:
     * close icon becomes black
     */
    .navbar-main-row .navbar-toggler[aria-expanded="true"]:hover::before {
        color: #000000;
    }


    /* =====================================================
       Expanded menu
       ===================================================== */

    .navbar-main-row .navbar-collapse {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        margin-top: 10px;

        background: #ffffff;

        border-radius: 4px;

        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

        z-index: 1000;
    }

    .navbar-main-row .navbar-nav {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch !important;

        margin: 0 !important;
        padding: 8px 0 15px 0;
    }

    .navbar-main-row .navbar-nav .nav-item {
        width: 100%;
        margin: 0 !important;
    }

    .navbar-main-row .navbar-nav .nav-link {
        display: block;

        width: 100%;

        padding: 12px 20px;

        text-align: left;

        color: #1f2933 !important;
    }

    .navbar-main-row .navbar-nav .nav-link:hover {
        background: #f4f6f7;
        color: #123b56 !important;
    }

    /*
     * Get Involved
     */
    .navbar-main-row .navbar-nav .btn {
        display: block;

        width: calc(100% - 40px);

        margin: 8px 20px !important;

        text-align: center;
    }

}

/* =========================================================
   MOBILE MENU BUTTON - BLUE
   ========================================================= */

@media (max-width: 991.98px) {

    .navbar-main-row .navbar-toggler {
        border-color: #ffffff !important;
        background: transparent !important;
    }

    /* Hamburger */
    .navbar-main-row .navbar-toggler::before {
        color: #ffffff !important;
    }

    /* Close X */
    .navbar-main-row .navbar-toggler[aria-expanded="true"]::before {
        color: #ffffff !important;
    }

    /* Hover */
    .navbar-main-row .navbar-toggler:hover::before {
        color: #ffffff !important;
    }

    /* Keep it blue when navbar is scrolled */
    .navbar.scrolled .navbar-main-row .navbar-toggler {
        border-color: #123b56 !important;
        background: transparent !important;
    }

    .navbar.scrolled .navbar-main-row .navbar-toggler::before {
        color: #123b56 !important;
    }

    .navbar.scrolled .navbar-main-row .navbar-toggler:hover::before {
        color: #000000 !important;
    }
}
/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #003856;
    color: #ffffff;
    padding: 60px 0 0;
}


/* ---------------------------------------------------------
   Footer content
   --------------------------------------------------------- */

.footer-content {
    padding-bottom: 45px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-tagline {
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    line-height: 1.7;
}

/* ---------------------------------------------------------
   Footer contact rows
   --------------------------------------------------------- */

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-row i {
    width: 18px;
    flex-shrink: 0;

    font-size: 15px;
}

.footer-contact-row a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-row a:hover {
    color: #ffffff;
}

/* ---------------------------------------------------------
   Social media
   --------------------------------------------------------- */

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

.footer-social a {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.footer-social a:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #123b56;
}

.footer-social i {
    font-size: 18px;
}

.footer-website {
    margin-top: 12px;
}

.footer-website a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-website a:hover {
    color: #ffffff;
}
.footer-website-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.footer-website-row i {
    width: 18px;
    flex-shrink: 0;
    font-size: 17px;
}

.footer-website-row a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-website-row a:hover {
    color: #ffffff;
}

/* ---------------------------------------------------------
   Footer bottom
   --------------------------------------------------------- */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.18);

    min-height: 78px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    padding: 16px 0;

    font-size: 14px;
}


/* Left */

.footer-bottom-left {
    text-align: left;
    padding-left: 5px;
}

.footer-bottom-left span,
.footer-bottom-right span {
    color: rgba(255, 255, 255, 0.65);
    margin-right: 5px;
}

.footer-bottom-left a,
.footer-bottom-right a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom-left a:hover,
.footer-bottom-right a:hover {
    text-decoration: underline;
}


/* Center */

.footer-bottom-center {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}


/* Right */

.footer-bottom-right {
    text-align: right;
       padding-right: 5px;
}

/* =========================================================
   FOOTER - MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .footer {
        padding-top: 45px;
    }

    .footer-content {
        padding-bottom: 30px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 20px 10px;

        gap: 10px;

        font-size: 14px;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center;
    }

}

/* =========================================================
   Home - IMPACT SECTION
   ========================================================= */

.impact-section {
    background: #f0f0f0;
}

.impact-section .section-title {
    color: #003856;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
} 
.impact-card {
    padding: 25px 15px;
}

.impact-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(45px, 5vw, 40px);
    line-height: 1;
    font-weight: 500;
    color: #003856;
    margin-bottom: 12px;
}

.impact-label {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

@media (max-width: 575.98px) {

    .impact-card {
        padding: 20px 10px;
    }

    .impact-number {
        font-size: 30px;
    }

    .impact-label {
        font-size: 14px;
    }

}
/* -----------------Rajesh CSS---------*/
.higlight-text {
    font-size: 20px;
 
}  
/* =========================================================
   Home -  LEARNING MODULES
   ========================================================= */

.modules-section {
    background: #f0f0f0;
}

.module-card {
    background: #ffffff;
    border: 1px solid rgba(0, 56, 86, 0.12);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 56, 86, 0.10);
}

.module-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 172, 80, 0.10);
    color: #003856;

    font-size: 1.8rem;
}

.module-card h4 {
    margin: 0;
    color: #003856;
    font-size: 1.15rem;
    line-height: 1.5;
}
/* =========================================================
   Home - HOW WE LEARN
   ========================================================= */

.how-we-learn-section {
    background: #ffffff;
}

.how-we-learn-label {
    display: inline-block;

    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    color: #00ac50;
}

.how-we-learn-lead {
    max-width: 520px;

    color: #4f5d66;

    font-size: 1.1rem;
    line-height: 1.8;
}


/* Learning approach list */

.learning-approach-list {
    border-top: 1px solid rgba(0, 56, 86, 0.15);
}

.learning-approach-item {
    display: flex;
    align-items: center;

    gap: 1.25rem;

    padding: 1.25rem 0;

    border-bottom: 1px solid rgba(0, 56, 86, 0.15);
}

.learning-approach-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #003856;
    color: #ffffff;

    font-size: 1.35rem;
}

.learning-approach-item h4 {
    margin: 0 0 0.25rem;

    color: #003856;

    font-size: 1.05rem;
    font-weight: 600;
}

.learning-approach-item p {
    margin: 0;

    color: #66747d;

    font-size: 0.95rem;
    line-height: 1.6;
}
/* ---------------------------------------------------------
   Home - What Students Gain
   --------------------------------------------------------- */

.learning-outcomes-section {
    background: #f0f0f0;
}

.learning-gain-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 30px 24px;
    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.learning-gain-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}

.learning-gain-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f1ec;
    color: #003856;

    font-size: 40px;
}

.learning-gain-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.learning-gain-card p {
    color: #6c757d;
    line-height: 1.65;
    margin-bottom: 0;
}
/* =========================================================
   Home - ASSESSMENT CTA
   ========================================================= */

.assessment-cta-section {
    background: #ffffff;
}

.assessment-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

.assessment-cta-label {
    display: inline-block;

    color: #00ac50;

    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 0.12em;
}

.assessment-cta-content h2 {
    color: #003456;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.assessment-cta-text {
    max-width: 680px;
    margin: 0 auto 1.75rem;

     

    line-height: 1.8;
}

.assessment-cta-buttons {
    display: flex;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;
}

.assessment-cta-buttons .btn {
    min-width: 160px;
}

@media (max-width: 575.98px) {

    .assessment-cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .assessment-cta-buttons .btn {
        width: 100%;
    }

}

/* =======================
Home page intro section 
========================== */
.about-intro-content {
    max-width: 900px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.page-hero {
    background: #003856;
    color: #ffffff;
    padding: 6rem 0 5rem;
}
/* =========================================================
   ABOUT PAGE - About the Uyirsholai Program
   ========================================================= */
.about-page-label,
.about-section-label {
    display: inline-block;
    color: #00ac50;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.about-page-hero h1 {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.25;
}

.about-content-section {
    background: #ffffff;
}

.about-content-section h2,
.about-methodology-section h2,
.about-outcomes-section h2,
.about-modules-section h2 {
    color: #003856;
}

.about-content-section p {
    color: #4f5d66;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.35rem;
}/* =========================================================
   ABOUT PAGE - Five Interconnected Learning Modules
   ========================================================= */

.about-modules-section {
    background: #f7f8f9;
}

.about-module-item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 56, 86, 0.10);
    border-radius: 12px;
    padding: 1.75rem;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-module-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 56, 86, 0.10);
}

.about-module-number {
    display: block;
    margin-bottom: 1rem;
    color: #00ac50;
    font-size: 0.85rem;
    font-weight: 700;
}

.about-module-item h3 {
    margin: 0;
    color: #003856;
    font-size: 1.1rem;
    line-height: 1.55;
}
/* =========================================================
   ABOUT PAGE - METHODOLOGY Learning Through Experience
   ========================================================= */
.about-methodology-section {
    background: #ffffff;
}

.about-methodology-section p {
    color: #4f5d66;
    font-size: 1.05rem;
    line-height: 1.85;
}
/* =========================================================
   ABOUT PAGE - LEARNING OUTCOMES By the End of the Curriculum
   ========================================================= */
/* ---------------------------------------------------------
   About - Expected Learning Outcomes
   --------------------------------------------------------- */

.about-outcomes-section {
    background: #f0f0f0;
}

.about-outcomes-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.about-outcome-card {
    background: #ffffff;
    border: 1px solid rgba(0, 56, 86, 0.08);
    border-radius: 14px;
    padding: 32px 28px;

    text-align: center;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.about-outcome-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0, 56, 86, 0.10);
}

.about-outcome-icon {
    width: 98px;
    height: 98px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e6f0f4;
    color: #003856;

    font-size: 50px;
}

.about-outcome-card h3 {
    color: #003856;
    font-size: 1.15rem;
    line-height: 1.45;
    margin-bottom: 14px;
}

.about-outcome-card p {
    color: #4f6470;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {

    .page-hero {
        padding: 4rem 0 3.5rem;
    }

    .about-page-hero h1 {
        font-size: 2rem;
    }

    .about-content-section p,
    .about-methodology-section p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .about-outcome-item {
        gap: 1rem;
    }

    .about-outcome-number {
        flex-basis: 38px;
    }

}
/* =========================================================
   Contact Page
   ========================================================= */

.contact-page-header {
    background: #003456;
    color: #ffffff;
    padding: 95px 0 75px;  
}

.contact-page-heading {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-page-heading .section-eyebrow {
    color: #00ac50;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-page-heading h1 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #ffffff !important;
}

.contact-page-heading p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
}

.contact-content {
    background: #f0f0f0;
}

.contact-info h2,
.contact-form-card h2 {
    color: #003856;
    /*font-weight: 700; */
    margin-bottom: 28px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #003856;
    color: #ffffff;
}

.contact-info-item h5 {
    color: #003856;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-item p {
    margin: 0;
    line-height: 1.7;
}

.contact-info-item a {
    display: block;
    color: #003856;
    text-decoration: none;
    margin-bottom: 4px;
}

.contact-info-item a:hover {
    color: #00ac50;
}

.contact-form-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-intro {
    color: #5b6670;
    margin-bottom: 25px;
}

.contact-form-card .form-label {
    color: #003856;
    font-weight: 600;
}

.contact-form-card .form-control {
    border: 1px solid #d4d9dd;
    border-radius: 5px;
    padding: 11px 13px;
}

.contact-form-card .form-control:focus {
    border-color: #003856;
    box-shadow: 0 0 0 0.15rem rgba(0, 56, 86, 0.12);
}

.contact-form-card .btn-success {
    background: #00ac50;
    border-color: #00ac50;
    padding: 11px 28px;
}

.contact-form-card .btn-success:hover {
    background: #008f43;
    border-color: #008f43;
}


/* Mobile */
@media (max-width: 767.98px) {

    .contact-page-header {
        padding: 100px 0 55px;
    }

    .contact-page-heading h1 {
        font-size: 32px;
    }

    .contact-page-heading p {
        font-size: 16px;
    }

    .contact-form-card {
        padding: 25px 20px;
    }

}


/* =========================================================
   GLOBAL MOBILE WIDTH FIX
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


/* ---------------------------------------------------------
   Gallery Page
   --------------------------------------------------------- */

.gallery-section {
    background: #f0f0f0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;

    box-shadow:
        0 4px 14px rgba(0, 56, 86, 0.08);

    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}


/* =========================================================
   PUBLIC PAGE HERO - STANDARD
   About / Stories / Gallery / Contact / Get Involved
   ========================================================= */

.page-hero,
.contact-page-header {
    background: #003856;
    color: #ffffff;

    min-height: 290px;

    padding: 9rem 0 4rem;

    display: flex;
    align-items: center;
}

/* Hero content width */
.page-hero .container,
.contact-page-header .container {
    width: 100%;
}

/* Hero label */
.page-hero-label,
.about-page-label,
.contact-page-heading .section-eyebrow {
    display: inline-block;

    color: #00ac50;

    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    margin-bottom: 0.75rem;
}

/* Hero title */
.page-hero h1,
.about-page-hero h1,
.contact-page-heading h1 {
    margin: 0;

    color: #ffffff !important;

    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;

    line-height: 1.25;
}

/* Hero description */
.page-hero p,
.contact-page-heading p {
    max-width: 850px;

    margin: 0.9rem 0 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   CONTACT / GET INVOLVED
   Use the same hero alignment as other public pages
   ========================================================= */

.contact-page-header {
    text-align: left;
}

.contact-page-heading {
    max-width: 900px;
}


/* =========================================================
   MOBILE PAGE HERO
   ========================================================= */

@media (max-width: 991.98px) {

    .page-hero,
    .contact-page-header {
        min-height: auto;

        padding: 9.5rem 0 3.5rem;
    }

    .page-hero h1,
    .about-page-hero h1,
    .contact-page-heading h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .page-hero p,
    .contact-page-heading p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}


@media (max-width: 575.98px) {

    .page-hero,
    .contact-page-header {
        padding: 9rem 0 3rem;
    }

    .page-hero h1,
    .about-page-hero h1,
    .contact-page-heading h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .page-hero-label,
    .about-page-label,
    .contact-page-heading .section-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .page-hero p,
    .contact-page-heading p {
        font-size: 0.9rem;
    }
}

/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 70px 70px 50px;

    background: rgba(0, 56, 86, 0.96);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}


/* ---------------------------------------------------------
   Lightbox content
   --------------------------------------------------------- */

.gallery-lightbox-content {
    width: 100%;
    max-width: 1100px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    display: block;

    max-width: 100%;
    max-height: 75vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.35);
}


/* ---------------------------------------------------------
   Caption
   --------------------------------------------------------- */

.gallery-lightbox-caption {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 18px;

    color: #ffffff;

    font-size: 0.95rem;
}

.gallery-lightbox-title {
    flex: 1;
}

.gallery-lightbox-counter {
    flex-shrink: 0;

    color: #00ac50;

    font-weight: 600;
}


/* ---------------------------------------------------------
   Controls
   --------------------------------------------------------- */

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.7);

    background: rgba(0, 56, 86, 0.75);

    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: #00ac50;

    border-color: #00ac50;
}


/* Close */

.gallery-lightbox-close {
    top: 25px;
    right: 30px;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    font-size: 30px;

    line-height: 1;
}


/* Previous */

.gallery-lightbox-prev {
    left: 25px;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;

    font-size: 24px;
}

.gallery-lightbox-prev:hover {
    transform: translateY(-50%) scale(1.05);
}


/* Next */

.gallery-lightbox-next {
    right: 25px;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;

    font-size: 24px;
}

.gallery-lightbox-next:hover {
    transform: translateY(-50%) scale(1.05);
}


/* ---------------------------------------------------------
   Prevent page scrolling while lightbox is open
   --------------------------------------------------------- */

body.gallery-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   MOBILE LIGHTBOX
   ========================================================= */

@media (max-width: 767.98px) {

    .gallery-lightbox {
        padding: 65px 45px 35px;
    }

    .gallery-lightbox-image {
        max-width: 100%;

        max-height: 70vh;

        border-radius: 6px;
    }

    .gallery-lightbox-caption {
        margin-top: 12px;

        font-size: 0.85rem;

        gap: 10px;
    }

    .gallery-lightbox-close {
        top: 15px;
        right: 15px;

        width: 40px;
        height: 40px;

        font-size: 26px;
    }

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 38px;
        height: 38px;

        font-size: 19px;
    }

    .gallery-lightbox-prev {
        left: 8px;
    }

    .gallery-lightbox-next {
        right: 8px;
    }

}
/* =========================================================
   ASSESSMENT PAGE
   ========================================================= */

.assessment-page {
    background: #f0f0f0;
    min-height: 100vh;
}


/* ---------------------------------------------------------
   Assessment Hero
   --------------------------------------------------------- */

.assessment-page-hero {
    background: #003856;
    color: #ffffff;

    min-height: 290px;

    padding: 9rem 0 4rem;

    display: flex;
    align-items: center;
}

.assessment-page-label {
    display: inline-block;

    color: #00ac50;

    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    margin-bottom: 0.75rem;
}

.assessment-page-hero h1 {
    margin: 0;

    color: #ffffff;

    font-family: 'Poppins', sans-serif;

    font-size: 2.5rem;
    font-weight: 600;

    line-height: 1.25;
}

.assessment-page-hero p {
    margin-top: 0.8rem;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 1rem;
}


/* ---------------------------------------------------------
   Assessment Content
   --------------------------------------------------------- */

.assessment-content {
    background: #f0f0f0;
}

.assessment-content-inner {
    max-width: 1000px;
    margin: 0 auto;
}


/* ---------------------------------------------------------
   Assessment cards
   --------------------------------------------------------- */

.assessment-content .card {
    border: 0;

    border-radius: 12px;

    box-shadow:
        0 4px 18px rgba(0, 56, 86, 0.08);

    overflow: hidden;
}

.assessment-content .card-header {
    background: #003856;
    color: #ffffff;

    border: 0;

    padding: 1rem 1.25rem;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.assessment-content .card-body {
    padding: 1.5rem;
}


/* ---------------------------------------------------------
   Form controls
   --------------------------------------------------------- */

.assessment-content .form-label {
    color: #003856;
    font-weight: 500;
}

.assessment-content .form-control,
.assessment-content .form-select {
    min-height: 44px;

    border: 1px solid #d5dadd;

    border-radius: 7px;
}

.assessment-content .form-control:focus,
.assessment-content .form-select:focus {
    border-color: #00ac50;

    box-shadow:
        0 0 0 0.2rem rgba(0, 172, 80, 0.12);
}


/* ---------------------------------------------------------
   Questionnaire
   --------------------------------------------------------- */

.assessment-question-title {
    color: #003856;

    font-size: 1.05rem;
    line-height: 1.65;

    margin-bottom: 1rem;
}

.assessment-question-image {
    text-align: center;
}

.assessment-question-image img {
    max-width: 100%;
    height: auto;
}


/* ---------------------------------------------------------
   Options
   --------------------------------------------------------- */

.assessment-option {
    padding: 0.75rem 1rem;

    margin-bottom: 0.6rem;

    border: 1px solid #e1e5e7;

    border-radius: 8px;

    background: #ffffff;

    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.assessment-option:hover {
    border-color: #00ac50;
    background: #f7fbf8;
}

.assessment-option-label {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    width: calc(100% - 28px);

    cursor: pointer;
}

.assessment-option-image {
    max-width: 120px;
    max-height: 90px;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 6px;

    border: 1px solid #e1e5e7;
}


/* ---------------------------------------------------------
   Submit button
   --------------------------------------------------------- */

.assessment-content .btn-success {
    background: #00ac50;

    border-color: #00ac50;

    font-weight: 600;

    padding: 0.7rem 1.5rem;

    border-radius: 7px;
}

.assessment-content .btn-success:hover {
    background: #008f42;

    border-color: #008f42;
}


/* ---------------------------------------------------------
   Mobile
   --------------------------------------------------------- */

@media (max-width: 767.98px) {

    .assessment-page-hero {
        min-height: 250px;

        padding: 8rem 0 3rem;
    }

    .assessment-page-hero h1 {
        font-size: 2rem;
    }

    .assessment-page-hero p {
        font-size: 0.95rem;
    }

    .assessment-content {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .assessment-content .card-body {
        padding: 1.1rem;
    }

    .assessment-option {
        padding: 0.7rem;
    }

    .assessment-option-image {
        max-width: 90px;
        max-height: 75px;
    }

}

/* =========================================================
   STUDENTS ASSESSMENT DROPDOWN
   ========================================================= */

.navbar-main-row .dropdown-menu {
    margin-top: 10px;

    min-width: 210px;

    padding: 8px;

    border: 0;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 8px 25px rgba(0, 56, 86, 0.15);
}

.navbar-main-row .dropdown-item {
    padding: 10px 14px;

    border-radius: 5px;

    color: #1f2933;

    font-size: 0.95rem;
}

.navbar-main-row .dropdown-item:hover,
.navbar-main-row .dropdown-item:focus {
    background: #f0f7f3;

    color: #003856;
}


/* Dropdown arrow */

.navbar-main-row .dropdown-toggle::after {
    margin-left: 6px;

    vertical-align: 0.15em;
}


/* Scrolled navbar */

.navbar.scrolled .dropdown-toggle {
    color: #1f2933 !important;
}

.navbar.scrolled .dropdown-menu {
    box-shadow:
        0 8px 25px rgba(0, 56, 86, 0.12);
}


/* =========================================================
   MOBILE ASSESSMENT DROPDOWN
   ========================================================= */

@media (max-width: 991.98px) {

    .navbar-main-row .dropdown-menu {
        position: static !important;

        width: 100%;

        margin: 0;

        padding: 0 20px 8px;

        border-radius: 0;

        box-shadow: none;

        background: #ffffff;
    }

    .navbar-main-row .dropdown-item {
        padding: 10px 20px;

        color: #1f2933 !important;

        border-left: 3px solid #00ac50;
    }

    .navbar-main-row .dropdown-item:hover,
    .navbar-main-row .dropdown-item:focus {
        background: #f4f6f7;

        color: #003856 !important;
    }

}

/* =========================================================
   ASSESSMENT - MANDATORY QUESTION HIGHLIGHT
   ========================================================= */

.assessment-question-missing {
    border: 2px solid #dc3545;
    border-radius: 10px;
    padding: 12px;
    background: rgba(220, 53, 69, 0.04);
}

/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */

.admin-dashboard {
    min-height: 100vh;
    background: #f4f7f8;
}

.admin-dashboard-header {
    background: #003856;
    color: #ffffff;
    padding: 150px 0 55px;
}

.admin-eyebrow {
    display: inline-block;
    color: #00ac50;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.admin-dashboard-header h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
}

.admin-dashboard-header p {
    margin: 0;
    color: rgba(255,255,255,0.78);
}

.admin-dashboard-content {
    padding: 50px 0 80px;
}

.admin-stat-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 56, 86, 0.08);
    height: 100%;
}

.admin-stat-label {
    display: block;
    color: #687780;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.admin-stat-card strong {
    display: block;
    color: #003856;
    font-size: 2rem;
    font-weight: 700;
}

.admin-results-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 56, 86, 0.08);
    overflow: hidden;
}

.admin-results-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 28px 30px;
    border-bottom: 1px solid #e8edef;
}

.admin-results-heading h2 {
    margin: 0 0 5px;
    color: #003856;
    font-size: 1.35rem;
    font-weight: 600;
}

.admin-results-heading p {
    margin: 0;
    color: #71808a;
    font-size: 0.9rem;
}

.admin-average-score {
    text-align: right;
}

.admin-average-score span {
    display: block;
    color: #71808a;
    font-size: 0.8rem;
}

.admin-average-score strong {
    color: #00ac50;
    font-size: 1.5rem;
}

.admin-results-table {
    margin: 0;
    white-space: nowrap;
}

.admin-results-table thead th {
    background: #f7f9fa;
    color: #52636d;
    border-bottom: 1px solid #e1e7ea;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 16px;
}

.admin-results-table tbody td {
    color: #34454e;
    border-color: #edf1f2;
    padding: 16px;
    font-size: 0.88rem;
}

.admin-results-table td strong {
    display: block;
    color: #003856;
}

.admin-results-table td small {
    display: block;
    margin-top: 3px;
    color: #7a878e;
    font-size: 0.72rem;
}

.assessment-badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.assessment-badge.pre {
    background: #e9f2f7;
    color: #003856;
}

.assessment-badge.post {
    background: #e8f7ef;
    color: #08783e;
}

.admin-total-score {
    color: #00ac50 !important;
}

.admin-empty-state {
    text-align: center;
    padding: 70px 30px;
}

.admin-empty-state h3 {
    color: #003856;
    margin-bottom: 8px;
}

.admin-empty-state p {
    color: #71808a;
    margin: 0;
}


@media (max-width: 767.98px) {

    .admin-dashboard-header {
        padding: 125px 0 40px;
    }

    .admin-dashboard-header h1 {
        font-size: 1.7rem;
    }

    .admin-dashboard-content {
        padding: 30px 0 60px;
    }

    .admin-results-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-average-score {
        text-align: left;
    }

}




/* =========================================================
   ADMIN DASHBOARD SHELL
   Single authoritative definition
   ========================================================= */

/* ---------------------------------------------------------
   ADMIN LAYOUT
   --------------------------------------------------------- */

.admin-dashboard-layout {
    display: flex;
    align-items: stretch;
    min-height: calc(100vh - 56px);
}

.admin-dashboard-main {
    flex: 1;
    min-width: 0;
}


/* ---------------------------------------------------------
   ADMIN TOP HEADER
   --------------------------------------------------------- */

.admin-topbar {
    height: 56px;
    min-height: 56px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #135071 !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);

    position: relative;
    z-index: 1200;
}

.admin-topbar-brand {
    display: flex;
    align-items: center;
}

.admin-topbar-title {
    color: #ffffff !important;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
}

.admin-topbar-account {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-user-name {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
}

.admin-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 32px;
    padding: 5px 12px;

    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;

    background: transparent;
    color: #ffffff !important;

    text-decoration: none;
    font-size: 13px;
    font-weight: 500;

    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.admin-logout-btn:hover,
.admin-logout-btn:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: #135071 !important;
}


/* ---------------------------------------------------------
   ADMIN MOBILE MENU TOGGLE
   --------------------------------------------------------- */

.admin-menu-toggle {
    display: none;

    width: 36px;
    height: 36px;
    padding: 7px;

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 4px;

    background: transparent;
    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.admin-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;

    background: #ffffff;
    border-radius: 2px;

    transition:
        background-color 0.15s ease,
        transform 0.15s ease;
}

.admin-menu-toggle:hover {
    border-color: #00ac50;
    background: rgba(0, 172, 80, 0.12);
}

.admin-menu-toggle:hover span {
    background: #00ac50;
}


/* ---------------------------------------------------------
   ADMIN SIDEBAR
   --------------------------------------------------------- */

.admin-sidebar {
    width: 260px;
    flex: 0 0 260px;

    background: #d7d8d9 !important;
    border-right: 1px solid #c3c7c9;

    position: sticky;
    top: 56px;

    height: calc(100vh - 56px);
    min-height: calc(100vh - 56px);

    display: flex;
    flex-direction: column;

    z-index: 1100;
}

/* The current admin design does not use a sidebar title area. */
.admin-sidebar-header {
    display: none !important;
}

.admin-sidebar-nav {
    flex: 1;
    width: 100%;
    padding: 14px 9px !important;
}


/* ---------------------------------------------------------
   ADMIN SIDEBAR LINKS
   --------------------------------------------------------- */

/*
 * IMPORTANT:
 * There is only one definition of the sidebar link now.
 * The active state uses the same brand green as the rest
 * of Uyirsholai.
 */

.admin-sidebar-link {
    position: relative;

    display: flex !important;
    align-items: center;

    gap: 10px;

    width: 100%;
    min-height: 44px;

    padding: 10px 13px;
    margin-bottom: 4px;

    border-radius: 7px;

    background: transparent !important;
    color: #003854 !important;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease;
}


/* Hover */

.admin-sidebar-link:hover,
.admin-sidebar-link:focus {
    background: #e4f5ef !important;
    color: #007b55 !important;
}


/* Hover icon */

.admin-sidebar-link:hover .admin-sidebar-icon,
.admin-sidebar-link:focus .admin-sidebar-icon {
    color: #007b55 !important;
}


/* Active menu */

.admin-sidebar-link.active,
.admin-sidebar-link[aria-current="page"] {
    background: #e4f5ef !important;
    color: #007b55 !important;

    font-weight: 700 !important;

    box-shadow: none;
}


/* Active icon */

.admin-sidebar-link.active .admin-sidebar-icon,
.admin-sidebar-link[aria-current="page"] .admin-sidebar-icon {
    color: #007b55 !important;
}


/* Active green indicator */

.admin-sidebar-link.active::before,
.admin-sidebar-link[aria-current="page"]::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;
    bottom: 7px;

    width: 3px;

    border-radius: 0 3px 3px 0;

    background: #007b55 !important;
}


/* Keyboard focus */

.admin-sidebar-link:focus-visible {
    outline: 2px solid #00ac50;
    outline-offset: -2px;
}


/* Sidebar icons */

.admin-sidebar-icon {
    width: 24px;
    min-width: 24px;
    flex: 0 0 24px;

    text-align: center;

    color: #003854 !important;

    font-size: 18px;
    line-height: 1;

    transition: color 0.15s ease;
}


/* ---------------------------------------------------------
   ADMIN SIDEBAR FOOTER
   --------------------------------------------------------- */

.admin-sidebar-footer {
    padding: 18px 12px;
    border-top: 1px solid #c3c7c9;
}

.admin-sidebar-logout {
    display: block;

    padding: 10px 14px;

    border: 1px solid #b9c1c5;
    border-radius: 7px;

    text-align: center;

    background: transparent;
    color: #475569;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
}

.admin-sidebar-logout:hover {
    background: #ffffff;
    color: #007b55;
    border-color: #00ac50;
}


/* ---------------------------------------------------------
   ADMIN DASHBOARD HEADER
   --------------------------------------------------------- */

.admin-dashboard-header {
    background: #003854 !important;

    padding-top: 28px !important;
    padding-bottom: 28px !important;
}

.admin-dashboard-header .admin-eyebrow {
    color: #00ac50 !important;
    font-weight: 700;
    letter-spacing: 1px;
}

.admin-dashboard-header h1 {
    color: #ffffff;
    margin-bottom: 5px;
}

.admin-dashboard-header p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

/* The old hero logout is no longer used. */
.admin-dashboard-header .btn-outline-light {
    display: none !important;
}


/* ---------------------------------------------------------
   ADMIN FOOTER
   --------------------------------------------------------- */

.admin-footer {
    width: 100%;
    min-height: 72px;

    padding: 10px 22px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;

    background: #003f5c;
    color: #ffffff;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.admin-footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.35;
}

.admin-footer-center {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.admin-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.35;
}

.admin-footer-left span,
.admin-footer-right span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.admin-footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.admin-footer a:hover {
    text-decoration: underline;
}


/* ---------------------------------------------------------
   ADMIN TABLET + MOBILE
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

    .admin-topbar {
        height: 52px;
        min-height: 52px;
        padding: 0 14px;
    }

    .admin-topbar-title {
        font-size: 17px;
    }

    .admin-menu-toggle {
        display: inline-flex;
    }

    .admin-sidebar {
        position: fixed !important;

        top: 52px !important;
        left: 0;
        bottom: 0;

        width: 260px;
        min-height: calc(100vh - 52px);
        height: calc(100vh - 52px);

        transform: translateX(-100%);

        transition: transform 0.22s ease;

        box-shadow: 4px 0 14px rgba(0, 0, 0, 0.12);

        overflow-x: hidden;
        overflow-y: auto;
    }

    .admin-sidebar.is-open {
        transform: translateX(0);
    }

    .admin-sidebar-nav {
        display: block !important;

        width: 100%;
        padding: 16px 10px !important;

        overflow: visible !important;
    }

    .admin-sidebar-link {
        display: flex !important;

        width: 100%;
        flex: none !important;

        min-height: 44px;
        padding: 10px 14px;
        margin-bottom: 5px;

        white-space: normal !important;
    }

    .admin-dashboard {
        margin-left: 0 !important;
    }

    .admin-dashboard-header {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .admin-dashboard-header h1 {
        font-size: 32px;
    }

    .admin-user-name {
        color: #ffffff !important;
    }

    .admin-footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
        padding: 16px;
    }

    .admin-footer-left,
    .admin-footer-right {
        align-items: center;
    }

    .admin-footer-center {
        order: 2;
    }
}


/* ---------------------------------------------------------
   ADMIN SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 575.98px) {

    .admin-topbar {
        height: 52px;
        min-height: 52px;
        padding: 0 10px;
    }

    .admin-topbar-title {
        font-size: 16px;
    }

    .admin-topbar-account {
        gap: 7px;
    }

    .admin-user-name {
        display: none;
    }

    .admin-menu-toggle {
        width: 36px;
        height: 36px;
    }

    .admin-logout-btn {
        min-height: 34px;
        padding: 5px 10px;
    }

    .admin-sidebar {
        top: 52px !important;

        width: min(280px, 86vw);

        min-height: calc(100vh - 52px);
        height: calc(100vh - 52px);
    }

    .admin-dashboard-header {
        padding-top: 22px !important;
        padding-bottom: 22px !important;
    }

    .admin-dashboard-header h1 {
        font-size: 27px;
        line-height: 1.2;
    }

    .admin-dashboard-header p {
        font-size: 14px;
    }
}


/* ---------------------------------------------------------
   ADMIN REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .admin-sidebar,
    .admin-menu-toggle span,
    .admin-sidebar-link {
        transition: none;
    }
}

/* =========================================================
   ADMIN SUBMISSIONS PAGE
   ========================================================= */

/*
 * Submissions page uses the same admin shell as the dashboard.
 */

.admin-submissions-page {
    width: 100%;
}


/*
 * Submissions table card
 */

.admin-submissions-card {
    overflow: hidden;
}


/*
 * Keep the table readable on desktop.
 */

.admin-submissions-table {
    width: 100%;
    min-width: 1180px;
    margin-bottom: 0 !important;
    vertical-align: middle;
}


/*
 * Table header
 */

.admin-submissions-table thead th {
    background: #f4f7f8;
    color: #31566a;
    border-bottom: 1px solid #dfe7eb;
    padding: 14px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}


/*
 * Table body
 */

.admin-submissions-table tbody td {
    padding: 16px;
    border-bottom: 1px solid #e7edf0;
    color: #16415a;
    font-size: 14px;
    white-space: nowrap;
}

.admin-submissions-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-submissions-table tbody tr {
    transition: background-color 0.15s ease;
}

.admin-submissions-table tbody tr:hover {
    background: #f8fbfc;
}


/*
 * Student and school names
 */

.admin-submissions-table td strong {
    color: #063f5a;
    font-weight: 700;
}

.admin-submissions-table td small {
    font-size: 11px;
    color: #718391;
}


/*
 * Submission code
 */

.admin-submission-code {
    display: inline-block;
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;

    font-size: 11px;
    color: #718391;
}


/*
 * PRE / POST badges
 */

.admin-submission-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 48px;
    padding: 5px 10px;

    border-radius: 999px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.admin-submission-type.pre {
    background: #e7f1f7;
    color: #075078;
}

.admin-submission-type.post {
    background: #e3f6ed;
    color: #008f5a;
}


/*
 * Score
 */

.admin-submission-score {
    color: #008f5a;
    font-weight: 700;
    white-space: nowrap;
}


/*
 * Pending / unprocessed score
 */

.admin-submission-pending {
    color: #7b8790;
    font-size: 14px;
}


/*
 * View Answers button
 */

.admin-submission-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 105px;

    padding: 6px 12px;

    border: 1px solid #0d6efd;
    border-radius: 6px;

    background: transparent;
    color: #0d6efd;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}

.admin-submission-action:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}


/*
 * Horizontal scroll area.
 *
 * Important for tablet and mobile:
 * the table remains readable instead of
 * compressing every column into a tiny width.
 */

.admin-submissions-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


/*
 * Custom scrollbar for the table.
 */

.admin-submissions-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.admin-submissions-table-wrapper::-webkit-scrollbar-track {
    background: #eef2f4;
}

.admin-submissions-table-wrapper::-webkit-scrollbar-thumb {
    background: #b7c2c8;
    border-radius: 999px;
}


/*
 * Mobile / tablet
 */

@media (max-width: 991.98px) {

    .admin-submissions-table {
        min-width: 1050px;
    }

    .admin-submissions-table thead th,
    .admin-submissions-table tbody td {
        padding: 13px 12px;
    }

}


/*
 * Small mobile screens
 */

@media (max-width: 575.98px) {

    .admin-submissions-table {
        min-width: 1020px;
    }

    .admin-submissions-table thead th {
        font-size: 11px;
    }

    .admin-submissions-table tbody td {
        font-size: 13px;
    }

    .admin-submission-action {
        min-width: 96px;
        padding: 6px 10px;
        font-size: 12px;
    }

}


/*
 * Submissions empty state
 */

.admin-submissions-empty {
    padding: 32px 24px;
}


/*
 * Submission page heading spacing
 */

.admin-submissions-page .admin-dashboard-header {
    margin-bottom: 0;
}



/* =========================================================
   ADMIN SUBMISSIONS FILTERS
   ========================================================= */

.admin-submissions-filters {
    display: grid;
    grid-template-columns:
        minmax(240px, 2fr)
        minmax(150px, 1fr)
        minmax(190px, 1.25fr)
        minmax(150px, 1fr)
        auto;

    gap: 14px;
    align-items: end;

    padding: 20px 24px;

    background: #f7f9fa;
    border-top: 1px solid #e7edf0;
    border-bottom: 1px solid #e7edf0;
}


.admin-filter-field {
    min-width: 0;
}


.admin-filter-field label {
    display: block;

    margin-bottom: 7px;

    color: #31566a;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


.admin-filter-field .form-control,
.admin-filter-field .form-select {
    min-height: 42px;

    border: 1px solid #ccd8de;
    border-radius: 6px;

    background-color: #ffffff;

    color: #16415a;

    font-size: 13px;
}


.admin-filter-field .form-control:focus,
.admin-filter-field .form-select:focus {
    border-color: #135071;

    box-shadow:
        0 0 0 0.2rem rgba(19, 80, 113, 0.12);
}


.admin-filter-search-wrap {
    position: relative;
}


.admin-filter-search-icon {
    position: absolute;

    top: 50%;
    left: 13px;

    transform: translateY(-50%);

    color: #7b8c96;

    pointer-events: none;
}


.admin-filter-search-wrap .form-control {
    padding-left: 38px;
}


.admin-filter-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


.admin-filter-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 42px;
    padding: 0 16px;

    border: 1px solid #135071;
    border-radius: 6px;

    background: #135071;
    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color 0.15s ease,
        border-color 0.15s ease;
}


.admin-filter-apply:hover {
    background: #008f5a;
    border-color: #008f5a;
}


.admin-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 0 12px;

    border: 1px solid #ccd8de;
    border-radius: 6px;

    background: #ffffff;
    color: #526975;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        border-color 0.15s ease;
}


.admin-filter-clear:hover {
    border-color: #008f5a;
    color: #008f5a;
    background: #ffffff;
}


/*
 * Tablet
 */

@media (max-width: 1199.98px) {

    .admin-submissions-filters {
        grid-template-columns:
            minmax(220px, 2fr)
            minmax(150px, 1fr)
            minmax(180px, 1fr);

    }

    .admin-filter-actions {
        grid-column: 1 / -1;
    }

}


/*
 * Mobile
 */

@media (max-width: 767.98px) {

    .admin-submissions-filters {
        grid-template-columns: 1fr;

        padding: 18px;
    }

    .admin-filter-actions {
        grid-column: auto;

        width: 100%;
    }

    .admin-filter-apply {
        flex: 1;
    }

    .admin-filter-clear {
        min-width: 75px;
    }

}

/* =========================================================
   PRE / POST COMPARISON
   ========================================================= */

.comparison-positive {
    color: #007b55 !important;
    font-weight: 700;
}

.comparison-negative {
    color: #c0392b !important;
    font-weight: 700;
}

.admin-comparison-card {
    overflow: hidden;
}

.admin-comparison-card .table-responsive {
    overflow-x: auto;
}

.admin-comparison-card .admin-results-table th,
.admin-comparison-card .admin-results-table td {
    white-space: nowrap;
}

.admin-comparison-card .admin-results-table td:first-child {
    min-width: 180px;
}

.admin-comparison-card .admin-results-table td:last-child {
    font-size: 15px;
}
/* ---------------------------------------------------------
   ADMIN SIDEBAR SECTION HEADING
   Align Export / Downloads with regular sidebar links
   --------------------------------------------------------- */

.admin-sidebar-section {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    min-height: 44px;

    padding: 10px 13px;
    margin-bottom: 4px;

    color: #64748b;

    font-size: 14px;
    font-weight: 500;

    box-sizing: border-box;
}

.admin-sidebar-section .admin-sidebar-icon {
    width: 24px;
    min-width: 24px;
    flex: 0 0 24px;

    text-align: center;
}

/* Match the responsive sidebar spacing */
@media (max-width: 991.98px) {
    .admin-sidebar-section {
        min-height: 44px;
        padding: 10px 14px;
        margin-bottom: 5px;
    }
}

/* =========================================================
   SUBMISSION REVIEW - HEADER SPACING FIX
   ========================================================= */

.admin-submission-review > .admin-dashboard-header {
    padding-top: 130px !important;
    padding-bottom: 28px !important;
}

@media (max-width: 767.98px) {
    .admin-submission-review > .admin-dashboard-header {
        padding-top: 115px !important;
        padding-bottom: 24px !important;
    }
}
/* =========================================================
   ASSESSMENT VOICE INPUT
   ========================================================= */

.assessment-voice-input {
    width: 100%;
}

.assessment-voice-input textarea {
    width: 100%;
}

.assessment-voice-input button {
    min-height: 36px;
}

.voice-input-status {
    color: #687780;
    font-size: 0.85rem;
}
