: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;
}

.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;
    }

}