/* ==========================================
   ALT FOR EDUCATION - BRANDING STYLE SHEET
   Section-Based BEM CSS Architecture
   ========================================== */

@import "dashboard/dashboard.css";

/* 1. Global Reset & Variables */
:root {
    --accent: #ff7a00;
    --saffron: #ff7a00;
    /* Brand Orange */
    --primary-hover: #e06b00;
    --saffron2: #ff6a00;
    --deep-blue: #071b45;
    /* Deep Blue Headings */
    --primary-blue-2: #1a2b6d;

    --dark-gray: #1a2b6d;
    --white: #ffffff;
    --light-gray: #ffffff;
    --border-color: #e3e8f0;
    --text-muted: #626a7a;
    --text-body: #67717d;

    --orange-soft: #fff5ec;
    --orange-tint: #ffebdb;
    --orange-gradient: linear-gradient(135deg, #ff9b3d 0%, #ff7a00 100%);
    --dark-gradient: #ffffff;

    --soft-bg: #ffffff;
    --soft-bg-2: #ffffff;

    --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shadow-soft: 0 8px 25px rgba(26, 43, 109, 0.08);
    --shadow-medium: 0 12px 35px rgba(26, 43, 109, 0.15);
    --shadow-heavy: 0 20px 50px rgba(255, 122, 0, 0.1);

    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: clip;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-body);
    text-align: justify;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* SPA Page View State */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.main-content {
    min-height: 80vh;
}

/* ==========================================================================
   COMMON REUSABLE COMPONENTS & GRID UTILITIES
   ========================================================================== */



/* ==========================================================================
   HEADER & NAVIGATION COMPONENT (.header)
   ========================================================================== */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    min-height: 90px;
    height: auto;
    gap: 16px;
}

.header__logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    flex-shrink: 0;
}

.header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo-icon img {
    width: 85px;
    height: auto;
    object-fit: contain;
}

.header__logo-title {
    display: flex;
    flex-direction: column;
}

.header__logo-main {
    font-family: Cormorant Garamond;
    font-weight: 700;
    font-size: 2.5rem;
    color: #ff6a00;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header__logo-main1 {
    font-family: Cormorant Garamond;
    font-weight: 700;
    font-size: 2.2rem;
    color: #071b45;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.header__logo-sub {
    font-size: 0.72rem;
    color: #ff7a00;
    font-weight: 500;
}

.header__nav {
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-bottom: 0;
    align-self: flex-end;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

.header__nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto !important;
}

.header__nav-item {
    margin-left: 0;
}

.header__nav-link {
    display: block;
    line-height: 1.2;
    padding: 10px 12px;
    background: #071b45;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 13.5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: 4px 4px 14px rgba(38, 38, 98, 0.62);
    white-space: nowrap;
}

.header__nav-item:first-child .header__nav-link {
    border-bottom-left-radius: 14px;
}

.header__nav-item:last-child .header__nav-link {
    border-bottom-right-radius: 14px;
}

.header__nav-link:hover,
.header__nav-link:focus-visible,
.header__nav-link.active {
    background: #ff7a00;
    color: var(--white);
}

.nav-menu a.nav-cta {
    background: transparent;
    /* Changed to transparent for outline style */
    color: var(--accent);
    /* Text color is accent */
    font-weight: 600;
    margin-left: 1px;
    border: 2px solid var(--accent);
    /* Added border for outline */
    padding: 12px 20px;
    /* Adjusted padding to account for border */
    padding: 8px 20px;
    /* Adjusted padding to account for border and match height */
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.nav-menu a.nav-cta:hover {
    background: var(--accent);
    /* Fill with accent on hover */
    color: var(--white);
    border-color: var(--accent);
    /* Ensure border color matches background on hover */
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    background-color: #1a2b6d;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(26, 43, 109, 0.2);
    transition: var(--transition-fast);
}

.header__mobile-bar {
    width: 100%;
    height: 3px;
    background-color: #ff7a00;
    border-radius: 3px;
    transition: var(--transition-fast);
}


/* ==========================================================================
   HERO SECTION (.hero)
   ========================================================================== */
.hero {
    background: var(--white);
    padding: 24px 0 24px 0;
    position: relative;
    overflow: hidden;
}

.hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 24px;
    align-items: stretch;
}

.hero__content,
.hero__card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
    width: 100%;
    height: 100%;
}

.hero__badge {
    display: inline-flex;
    align-self: flex-start;
    margin: 4px 0 16px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffebe0 0%, #fff6f0 100%);
    border: 1px solid #ff7a00;
    color: var(--deep-blue);
    font-weight: 700;
    font-size: 14px;
}

.hero__title {
    font-size: clamp(34px, 4.3vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 14px;
}

.head1 {
    color: #ff7a00;
    font-weight: 800;
    font-size: 37px;
    font-family: Cormorant Garamond;
    display: block;
    line-height: 1.1;
}

.head2 {
    color: #071b45;
    font-weight: 800;
    font-size: 37px;
    font-family: Cormorant Garamond;
    display: block;
    line-height: 1.1;
    margin-top: 2px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.hero__btn--primary {
    background: var(--saffron2);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
}

.hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}

.hero__btn--outline {
    background: transparent;
    border-color: var(--saffron);
    color: var(--saffron);
}

.hero__btn--outline:hover {
    background-color: var(--orange-soft);
}

.hero__visual {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hero__video-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex: 1;
    border-radius: 16px;
    background: #000000;
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: contrast(1.12) saturate(1.18) brightness(1.05);
}




/* ==========================================================================
   INTRO SECTION (.intro)
   ========================================================================== */
.intro {
    padding: 24px 0;
    background: #ffffff;
}

.intro__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.intro__left {
    display: flex;
    flex-direction: column;
}

.intro__right {
    display: flex;
    flex-direction: column;
}

.intro__card {
    background-color: var(--white);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
    height: 100%;
}

.intro__card:hover {
    border-top-color: var(--saffron2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.about__image {
    width: 100%;
    height: auto;
    border: 2px solid #e3e8f0;
    border-radius: 12px;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(7, 27, 69, 0.06);
    transition: var(--transition-normal);
    margin-top: 12px;
    object-fit: cover;
}

.about__image:hover {
    border-color: #ff7a00;
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.15);
}

.intro__heading {
    font-size: clamp(30px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 14px;
}

.intro-head1 {
    color: var(--saffron2);
    font-family: Cormorant Garamond;
}

.intro-head2 {
    color: var(--deep-blue);
    font-family: Cormorant Garamond;
}

.intro__lead {
    font-family: Cormorant Garamond;
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.intro__lead1 {
    font-size: 1.2rem;
    color: var(--saffron2);
    font-weight: 700;
}

.intro__text {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.intro__btn-wrapper {
    margin-top: 2rem;
}

.intro__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: var(--saffron2);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.intro__btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}


/* ==========================================================================
   MISSION & VISION SECTION (.mission-vision)
   ========================================================================== */
.mission-vision {
    padding: 24px 0;
}

.mission-vision__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mission-vision__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mission-vision__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 1.25rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.mission-vision__card:hover {
    box-shadow: var(--shadow-medium);
}

.mission-vision__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--primary-blue-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-vision__icon {
    color: var(--saffron2);
    font-size: 1.35rem;
}

.mission-vision__card-content {
    flex: 1;
}

.mission-vision__card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
}

.mission-vision__card-text {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
}


/* ==========================================================================
   BARRIERS / CORE PILLARS SECTION (.barriers)
   ========================================================================== */
.barriers {
    padding: 24px 0;
    background: #ffffff;
}

.barriers__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.barriers__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.barrier {
    color: var(--saffron2);
    font-family: Cormorant Garamond;
}

.barrier1 {
    color: var(--deep-blue);
    font-family: Cormorant Garamond;
}

.barriers__title {
    font-size: clamp(30px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron2);
    margin-bottom: 10px;
}

.barriers__subtitle {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.8;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.barriers__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--saffron2), var(--deep-blue));
}

.barriers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.barriers__card {
    background-color: var(--white);
    padding: 20px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.barriers__card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.barriers__icon-wrap {
    font-size: 1.4rem;
    color: #071b45;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.barriers__card-content {
    flex: 1;
}

.barriers__card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--saffron2);
    margin-bottom: 4px;
}

.barriers__card-text {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: left;
}


/* ==========================================================================
   WHY ALT MATTERS SECTION (.why-alt)
   ========================================================================== */
.why-alt {
    padding: 24px 0;
}

.why-alt__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-alt__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.why-alt__left {
    display: flex;
    flex-direction: column;
}

.why-alt__heading {
    font-family: Cormorant Garamond;
    font-size: clamp(30px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.why-alt__lead {
    font-size: 1.35rem;
    color: var(--deep-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.why-alt__text {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-alt__check-list {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-alt__check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.98rem;
}

.why-alt__check-icon {
    color: #1a2b6d;
}

.why-alt__right {
    width: 100%;
}

.why-alt__stats-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.why-alt__stat-bubble {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 14px;
}

.why-alt__stat-bubble:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.why-alt__stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--saffron);
    font-family: var(--font-heading);
}

.why-alt__stat-plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
}

.why-alt__stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

/* ==========================================================================
   PROGRAMS PROMO SECTION (.programs-promo)
   ========================================================================== */
.programs-promo {
    padding: 24px 0;
    background: #ffffff;
}

.programs-promo__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.programs-promo__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.programs-promo__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.programs-promo__subtitle {
    color: var(--deep-blue);
    font-size: 16px;
    line-height: 1.8;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.programs-promo__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--deep-blue));
}

.programs-promo__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 16px;
}

.programs-promo__card {
    background-color: var(--white);
    padding: 20px 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.programs-promo__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.programs-promo__icon-wrap {
    font-size: 1.4rem;
    color: var(--primary-blue-2);
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programs-promo__card-content {
    flex: 1;
}

.programs-promo__card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 4px;
}

.programs-promo__card-text {
    color: var(--text-body);
    font-size: 1.02rem;
    line-height: 1.5;
    text-align: left;
}

.programs-promo__footer {
    margin-top: 20px;
    text-align: center;
}

.programs-promo__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--saffron2);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    transition: var(--transition-fast);
}

.programs-promo__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}


/* ==========================================================================
   TRANSPARENCY & TRUST SECTION (.transparency)
   ========================================================================== */
.transparency {
    padding: 24px 0;
}

.transparency__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.transparency__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: center;
}

.transparency__left {
    display: flex;
    flex-direction: column;
}

.transparency__header {
    text-align: left;
    margin-bottom: 14px;
}

.transparency__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.transparency__subtitle {
    font-family: Cormorant Garamond;
    font-size: 1.50rem;
    color: var(--deep-blue);
    font-weight: 500;
    margin-bottom: 8px;
}

.transparency__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 10px 0 0 0;
    background: linear-gradient(90deg, var(--saffron), var(--deep-blue));
}

.transparency__text {
    color: var(--text-body);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-top: 12px;
    margin-bottom: 16px;
}

.transparency__btn-wrapper {
    margin-top: 14px;
}

.transparency__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--saffron);
    color: var(--saffron);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.transparency__btn:hover {
    background-color: var(--orange-soft);
}

.transparency__right {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.transparency__card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 14px;
}

.transparency__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.transparency__item {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.transparency__icon {
    color: #1a2b6d;
    font-size: 1.1rem;
}


/* ==========================================================================
   FINAL HOME CTA (.final-home-cta)
   ========================================================================== */
.final-home-cta {
    padding: 28px 0;
    text-align: center;
}

.final-home-cta__container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.final-home-cta__lead {
    font-family: Cormorant Garamond;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 20px;
    text-align: center;
}

.final-home-cta__text {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.final-home-cta__actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.final-home-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--saffron2);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    transition: var(--transition-fast);
}

.final-home-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}


/* ==========================================================================
   ABOUT PAGE SECTIONS (.about-hero, .about-details, .about-values, .about-governance)
   ========================================================================== */

/* About Hero */
.about-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.about-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

.about-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(32px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 12px;
    text-align: left;
}

.about-hero-title1 {
    font-family: Cormorant Garamond;
    color: var(--deep-blue);
}

.about-hero__subtitle {
    font-size: 1.15rem;
    color: var(--deep-blue);
    text-align: left;
    align-self: flex-start;
    width: 100%;
    line-height: 1.6;
}

.about-hero__visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__video-wrapper {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    background: #000000;
    box-shadow: 0 16px 40px rgba(26, 43, 109, 0.15), 0 0 0 1px rgba(255, 122, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.about-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    filter: contrast(1.12) saturate(1.18) brightness(1.05);
}

/* About Details */
.about-details {
    padding: 24px 0;
}

.about-details__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-details__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.about-details__content {
    display: flex;
    flex-direction: column;
}

.about-details__lead {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-details__text {
    color: var(--text-body);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}

.about-details__text strong {
    color: var(--saffron);
    font-weight: 500;
}

.about-details__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-details__card {
    padding: 1.25rem;
    background-color: #ffffff;
    border-radius: 12px;
    border-left: 4px solid var(--saffron);
    box-shadow: var(--shadow-soft);
}

.about-details__card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-details__icon {
    color: var(--saffron);
}

.about-details__card-text {
    color: var(--text-body);
    font-size: 1.05rem;
    text-align: left;
}

.about-details__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.about-details__list-item {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: var(--text-body);
}

.about-details__list-item::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--saffron);
    font-weight: 700;
}

/* About Values */
.about-values {
    padding: 24px 0;
    background: #ffffff;
}

.about-values__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-values__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.about-values__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.about-values__subtitle {
    color: var(--text-body);
    font-size: 16px;
    text-align: center;
}

.about-values__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--deep-blue));
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.about-values__card {
    background-color: var(--white);
    padding: 18px 14px;
    border-radius: 10px;
    text-align: left;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid transparent;
    transition: var(--transition-fast);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-values__card:hover {
    border-bottom-color: var(--saffron);
    transform: translateY(-3px);
}

.about-values__icon-wrap {
    font-size: 1.3rem;
    color: var(--primary-blue-2);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--orange-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-values__card-content {
    flex: 1;
}

.about-values__card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 4px;

    text-align: left;
}

.about-values__card-text {
    font-size: 1.02rem;
    color: var(--text-body);
    line-height: 1.4;
    text-align: left;
}

/* About Governance */
.about-governance {
    padding: 24px 0;
}

.about-governance__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-governance__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.about-governance__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.about-governance__subtitle {
    color: var(--text-body);
    font-size: 16px;
    text-align: center;
}

.about-governance__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--deep-blue));
}

.about-governance__tabs {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.about-governance__tab-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.about-governance__tab-btn {
    padding: 8px 18px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.about-governance__tab-btn:hover {
    color: var(--saffron);
    background-color: var(--orange-soft);
}

.about-governance__tab-btn.active {
    background-color: var(--saffron);
    color: var(--white);
}

.about-governance__tab-content {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-top: 16px;
}

.about-governance__panel {
    display: none;
}

.about-governance__panel.active {
    display: block;
}

.about-governance__founder-grid {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 24px;
    align-items: center;
}

.about-governance__founder-profile {
    text-align: center;
}

.about-governance__founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--orange-soft);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 12px auto;
}

.about-governance__founder-title {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.about-governance__founder-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.about-governance__founder-quote blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark-gray);
    border-left: 4px solid var(--saffron);
    padding-left: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-governance__founder-text {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 12px;
}

.about-governance__panel-heading {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.about-governance__panel-text {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 16px;
    text-align: left;
}

.about-governance__team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-governance__team-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

.about-governance__team-card {
    background: var(--white);
    padding: 20px 16px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.about-governance__team-card:hover {
    box-shadow: var(--shadow-medium);
}

.about-governance__team-name {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.about-governance__team-role {
    font-size: 0.88rem;
    color: var(--text-muted);
}


/* ==========================================================================
   JOURNEY PAGE SECTIONS (.journey-hero, .journey-impact, .journey-growth, .journey-gallery)
   ========================================================================== */

/* Journey Hero */
.journey-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.journey-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.journey-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.journey-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.journey-hero__title1 {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.journey-hero__subtitle {
    font-size: 1.15rem;
    color: var(--primary-blue-2);
}

.journey-hero__visual {
    width: 100%;
}

.journey-hero__img-placeholder {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 520px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffebe0 100%);
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    overflow: hidden;
    padding: 6px;
}

.journey-hero__img-placeholder:hover {
    box-shadow: var(--shadow-medium);
    border-color: var(--deep-blue);
}

.journey-hero__placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--saffron);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    height: 100%;
}

.journey-hero__placeholder-box img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 14px;
}

/* Journey Impact Stats */
.journey-impact {
    padding: 24px 0;
    background: #ffffff;
}

.journey-impact__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-impact__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
}

.journey-impact__title {
    font-family: Cormorant Garamond;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 8px;
    text-align: center;
}

.journey-impact__subtitle {
    color: var(--text-body);
    font-size: 16px;
    text-align: center;
}

.journey-impact__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--deep-blue));
}

.journey-impact__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.journey-impact__card {
    background-color: var(--white);
    padding: 20px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    text-align: center;
    transition: var(--transition-normal);
}

.journey-impact__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.journey-impact__icon-wrap {
    font-size: 1.8rem;
    color: var(--saffron);
    margin-bottom: 8px;
}

.journey-impact__number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--deep-blue);
    font-family: var(--font-heading);
}

.journey-impact__plus {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--saffron);
}

.journey-impact__card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--text-body);
    font-weight: 600;
    margin-top: 4px;
    text-align: center;
}

/* Journey Growth (Timeline) */
.journey-growth {
    padding: 24px 0;
}

.journey-growth__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-growth__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.journey-growth__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 14px;
}

.journey-growth__subtitle {
    color: var(--text-body);
    font-size: 16px;
    text-align: center;
}

.journey-growth__accent-line {
    width: 200px;
    height: 4px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--saffron), var(--deep-blue));
}

.journey-growth__timeline {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.journey-growth__timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--orange-tint);
    transform: translateX(-50%);
}

.journey-growth__item {
    position: relative;
    width: 50%;
    padding: 20px 30px;
    box-sizing: border-box;
}

.journey-growth__item--left {
    left: 0;
    text-align: right;
}

.journey-growth__item--right {
    left: 50%;
    text-align: left;
}

.journey-growth__dot {
    position: absolute;
    top: 30px;
    width: 18px;
    height: 18px;
    background-color: var(--saffron);
    border: 4px solid var(--white);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 3px var(--saffron);
}

.journey-growth__item--left .journey-growth__dot {
    right: -9px;
}

.journey-growth__item--right .journey-growth__dot {
    left: -9px;
}

.journey-growth__card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--saffron);
    text-align: left;
}

.journey-growth__date {
    font-family: Cormorant Garamond;
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--orange-soft);
    color: var(--saffron);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 10px;
}

.journey-growth__card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.journey-growth__card-text {
    color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
}

/* Journey Gallery */
.journey-gallery {
    padding: 40px 0;
    background: #ffffff;
}

.journey-gallery__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.journey-gallery__header {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.journey-gallery__description {
    font-size: 1.1rem;
    color: var(--text-body);
    text-align: center;
}

.journey-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.journey-gallery__item {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 2px dashed var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.journey-gallery__item:hover {
    border-color: var(--saffron);
    transform: translateY(-3px);
}

.journey-gallery__icon-wrap {
    font-size: 2.5rem;
    color: var(--saffron);
    margin-bottom: 15px;
}

.journey-gallery__label {
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 0.95rem;
}


/* ==========================================================================
   PROGRAMS PAGE SECTIONS (.programs-hero, .programs-list)
   ========================================================================== */

/* Programs Hero */
.programs-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.programs-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.programs-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.programs-hero__title1 {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.programs-hero__subtitle {
    font-size: 1.15rem;
    color: var(--primary-blue-2);
}

/* Programs List */
.programs-list {
    padding: 24px 0;
}

.programs-list__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.programs-list__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.programs-list__card {
    padding: 1.25rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.programs-list__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.programs-list__card--full {
    margin-top: 16px;
}

.programs-list__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.programs-list__icon {
    color: var(--deep-blue);
    font-size: 1.35rem;
}

.programs-list__card-content {
    flex: 1;
}

.programs-list__card-title {
    font-family: Cormorant Garamond;
    font-size: 20px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.programs-list__card-desc {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 12px;
    text-align: left;
}

.programs-list__sub-group {
    margin-top: 12px;
}

.programs-list__sub-title {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--saffron2);
    font-weight: 600;
    margin-bottom: 6px;
}

.programs-list__bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.programs-list__bullet-item {
    font-size: 0.92rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.programs-list__check-icon,
.programs-list__bullet-item .programs-list__check-icon,
.programs-list__bullet-item i,
.programs-list__bullet-list i {
    color: var(--deep-blue);
}

.programs-list__mentor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.programs-list__mentor-pill {
    background: var(--white);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}


/* ==========================================================================
   SCHOLARSHIPS PAGE SECTIONS (.scholarships-hero, .scholarships-overview, .scholarships-details)
   ========================================================================== */

/* Scholarships Hero */
.scholarships-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.scholarships-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.scholarships-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.scholarships-hero__title1 {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.scholarships-hero__subtitle {
    font-size: 1rem;
    color: var(--primary-blue-2);
}

/* Overview */
.scholarships-overview {
    padding: 24px 0;
}

.scholarships-overview__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.scholarships-overview__header {
    max-width: 820px;
    margin: 0 auto 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.scholarships-overview__subtitle {
    font-family: Cormorant Garamond;
    font-size: 2rem;
    font-weight: 600;
    color: var(--saffron2);
    text-align: center;
    margin: 0;
    line-height: 1.2;
}

.scholarships-overview__subtitle1 {
    font-family: Cormorant Garamond;
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--deep-blue);
    text-align: center;
    margin: 2px 0 0 0;
    line-height: 1.2;
}

.scholarships-overview__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.scholarships-overview__card {
    background-color: var(--white);
    padding: 18px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition-normal);
}

.scholarships-overview__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.scholarships-overview__icon-wrap {
    font-size: 1.3rem;
    color: var(--deep-blue);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--orange-soft);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scholarships-overview__icon-wrap i {
    color: var(--deep-blue);
}

.scholarships-overview__card-content {
    flex: 1;
}

.scholarships-overview__card-title {
    font-family: Cormorant Garamond;
    font-size: 18px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 4px;
    text-align: left;
}

.scholarships-overview__card-desc {
    font-size: 1.02rem;
    color: var(--text-body);
    text-align: left;
}

/* Details */
.scholarships-details {
    padding: 24px 0;
    background: #ffffff;
}

.scholarships-details__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.scholarships-details__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.scholarships-details__card {
    padding: 1.25rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
}

.scholarships-details__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.scholarships-details__card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.scholarships-details__card-desc {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 18px;
    text-align: left;
}

.scholarships-details__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scholarships-details__item {
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

.scholarships-details__icon {
    color: var(--deep-blue);
    margin-top: 4px;
}


/* ==========================================================================
   SELECTION PROCESS PAGE SECTIONS (.selection-hero, .selection-process)
   ========================================================================== */

/* Selection Hero */
.selection-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.selection-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.selection-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.selection-hero__title1 {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.selection-hero__subtitle {
    font-size: 1.15rem;
    color: var(--primary-blue-2);
}

/* Pipeline */
.selection-process {
    padding: 24px 0;
}

.selection-process__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.selection-process__pipeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.selection-process__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.selection-process__number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--deep-blue);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2);
}

.selection-process__card {
    flex: 1;
    background-color: var(--white);
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
}

.selection-process__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.selection-process__card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.selection-process__card-desc {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 8px;
    text-align: left;
}

.selection-process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.selection-process__badge-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.selection-process__icon {
    color: var(--deep-blue);
}


/* ==========================================================================
   ROADMAP PAGE SECTIONS (.roadmap-hero, .roadmap-phases)
   ========================================================================== */

/* Roadmap Hero */
.roadmap-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.roadmap-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.roadmap-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.roadmap-hero__title1 {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.roadmap-hero__subtitle {
    font-size: 1.15rem;
    color: var(--primary-blue-2);
}

/* Roadmap Phases */
.roadmap-phases {
    padding: 24px 0;
}

.roadmap-phases__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.roadmap-phases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.roadmap-phases__card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    overflow: hidden;
    transition: var(--transition-normal);
}

.roadmap-phases__card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.roadmap-phases__header {
    background-color: var(--orange-soft);
    padding: 16px 20px;
    border-bottom: 2px solid var(--orange-tint);
}

.roadmap-phases__number {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--saffron2);
    text-transform: uppercase;
    margin-bottom: 0;
}

.roadmap-phases__card-title {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--deep-blue);
    font-weight: 600;
    text-align: left;
    margin: 0;
}

.roadmap-phases__body {
    padding: 16px 20px;
}

.roadmap-phases__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.roadmap-phases__item {
    font-size: 0.92rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.roadmap-phases__icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--primary-blue-2, #1a2b6d);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    transition: var(--transition-fast);
}

.roadmap-phases__card:hover .roadmap-phases__icon {
    stroke: var(--saffron, #ff7a00);
}

.roadmap-phases__vision-card {
    margin-top: 20px;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    border-top: 3px solid transparent;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.roadmap-phases__vision-card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.roadmap-phases__vision-title {
    font-family: Cormorant Garamond;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.roadmap-phases__vision-desc {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}


/* ==========================================================================
   CONTACT PAGE SECTIONS (.contact-hero, .contact-main)
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    background: white;
    color: var(--primary-blue-2);
    padding: 24px 0 20px;
    text-align: left;
}

.contact-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-hero__title {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--saffron);
    margin-bottom: 10px;
}

.contact-hero__title1 {
    font-family: Cormorant Garamond;
    font-size: clamp(34px, 4.3vw, 40px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
    margin-bottom: 10px;
}

.contact-hero__subtitle {
    font-size: 1.15rem;
    color: var(--primary-blue-2);
}

/* Contact Main */
.contact-main {
    padding: 24px 0;
}

.contact-main__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: flex-start;
}

.contact-main__info {
    display: flex;
    flex-direction: column;
}

.contact-main__title {
    font-family: Cormorant Garamond;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-main__subtitle {
    color: var(--text-body);
    margin-bottom: 20px;
}

.contact-main__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-main__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-main__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: var(--orange-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-main__icon {
    color: var(--deep-blue);
    font-size: 1.3rem;
}

.contact-main__text-wrap {
    flex: 1;
}

.contact-main__item-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-main__item-text {
    color: var(--text-body);
    font-size: 1.05rem;
}

.contact-main__link {
    color: var(--primary-blue-2);
}

.contact-main__link:hover {
    text-decoration: underline;
}

.contact-main__social-container {
    margin-top: 40px;
}

.contact-main__social-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-main__social-list {
    display: flex;
    gap: 12px;
}

.contact-main__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-blue-2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.contact-main__social-link:hover {
    background-color: var(--saffron);
    transform: translateY(-2px);
}

.contact-main__form-container {
    width: 100%;
}

.contact-main__form-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid transparent;
    transition: var(--transition-normal);
}

.contact-main__form-card:hover {
    border-top-color: var(--saffron);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.contact-main__form-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-main__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-main__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-main__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.contact-main__input,
.contact-main__select,
.contact-main__textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.contact-main__input:focus,
.contact-main__select:focus,
.contact-main__textarea:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.contact-main__submit-btn {
    width: 100%;
    padding: 12px 28px;
    background: var(--orange-gradient);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.15);
    transition: var(--transition-fast);
}

.contact-main__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.25);
}


/* ==========================================================================
   STUDENT PORTAL & AUTH SECTIONS (.portal-auth, .portal-dash)
   ========================================================================== */

/* Portal Auth */
.portal-auth {
    display: none;
    padding: 40px 0;
}

.portal-auth.active {
    display: block;
}

.portal-auth__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.portal-auth__hero-content {
    text-align: center;
}

.portal-auth__heading {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.5vw, 34px);
    color: var(--deep-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.portal-auth__illustration-wrap {
    max-width: 400px;
    margin: 0 auto;
}

.portal-auth__illustration-img {
    width: 100%;
    height: auto;
}

.portal-auth__card-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
}

.portal-auth__header {
    text-align: center;
    margin-bottom: 20px;
}

.portal-auth__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.portal-auth__logo-alt {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--saffron);
}

.portal-auth__logo-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--deep-blue);
}

.portal-auth__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.portal-auth__input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.portal-auth__input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 1rem;
}

.portal-auth__input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition-fast);
}

.portal-auth__input:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.portal-auth__password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
}

.portal-auth__btn-primary {
    width: 100%;
    padding: 12px;
    background: #1a2b6d;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 10px;
}

.portal-auth__btn-primary:hover {
    background: #0d1a4a;
}

.portal-auth__btn-secondary {
    width: 100%;
    padding: 10px;
    background: #eef3fb;
    color: #1a2b6d;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.portal-auth__btn-secondary:hover {
    background: #dbe5f7;
}

.portal-auth__footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
}

.portal-auth__register-link {
    color: var(--saffron);
    font-weight: 700;
}

/* Portal Dashboard */
.portal-dash {
    display: none;
    min-height: 80vh;
}

.portal-dash.active {
    display: block;
}

.portal-dash__layout {
    display: flex;
    min-height: 80vh;
}

.portal-dash__sidebar {
    width: 260px;
    background: #1a2b6d;
    color: var(--white);
    padding: 24px 16px;
    flex-shrink: 0;
}

.portal-dash__sidebar-header {
    margin-bottom: 30px;
    padding-left: 8px;
}

.portal-dash__logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.portal-dash__logo-alt {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--saffron);
}

.portal-dash__logo-sub {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.portal-dash__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.portal-dash__nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.portal-dash__nav-link:hover,
.portal-dash__nav-link.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.portal-dash__nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 15px 0;
}

.portal-dash__logout-link {
    color: #ff7a00;
}

.portal-dash__main {
    flex: 1;
    background: #ffffff;
    padding: 30px;
}

.portal-dash__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.portal-dash__welcome-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--deep-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

.portal-dash__welcome-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.portal-dash__topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.portal-dash__search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.portal-dash__search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.portal-dash__search-input {
    padding: 8px 12px 8px 34px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.88rem;
    outline: none;
    background: var(--white);
}

.portal-dash__notif-bell {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.portal-dash__notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-dash__avatar-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.portal-dash__avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a2b6d;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-dash__avatar-chevron {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.portal-dash__cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.portal-dash__card {
    background: var(--white);
    border-radius: 14px;
    padding: 20px 16px 14px 16px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.portal-dash__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.portal-dash__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.card-theme-blue .portal-dash__card-icon {
    background: #e8f0fe;
    color: #1a73e8;
}

.card-theme-green .portal-dash__card-icon {
    background: #e6f4ea;
    color: #137333;
}

.card-theme-purple .portal-dash__card-icon {
    background: #f3e8fd;
    color: #8ab4f8;
}

.card-theme-orange .portal-dash__card-icon {
    background: #feefe3;
    color: #e37400;
}

.card-theme-teal .portal-dash__card-icon {
    background: #e6f4f1;
    color: #00796b;
}

.card-theme-amber .portal-dash__card-icon {
    background: #fef7e0;
    color: #b06000;
}

.card-theme-pink .portal-dash__card-icon {
    background: #fce8e6;
    color: #c5221f;
}

.card-theme-indigo .portal-dash__card-icon {
    background: #e8eaf6;
    color: #3f51b5;
}

.portal-dash__card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.portal-dash__card-footer {
    display: flex;
    justify-content: flex-end;
}

.portal-dash__card-arrow-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f4f9;
    border: none;
    color: #1a2b6d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
}


/* ==========================================================================
   APPLY MODAL (.apply-modal)
   ========================================================================== */
.apply-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 44, 115, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.apply-modal.active {
    display: flex;
}

.apply-modal__card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border-top: 4px solid var(--saffron);
    box-shadow: var(--shadow-heavy);
}

.apply-modal__close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
}

.apply-modal__title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--deep-blue);
    font-weight: 600;
    margin-bottom: 4px;
}

.apply-modal__subtitle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.apply-modal__steps-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 20px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.apply-modal__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.apply-modal__step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-modal__step.active .apply-modal__step-num {
    background: #ff7a00;
    color: #ffffff;
}

.apply-modal__step-label {
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}

.apply-modal__step.active .apply-modal__step-label {
    color: #1a2b6d;
}

.apply-modal__step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 4px;
}

.apply-modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apply-modal__form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.apply-modal__grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.apply-modal__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.apply-modal__input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
}

.apply-modal__input:focus {
    border-color: var(--saffron);
}

.apply-modal__checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.apply-modal__checkbox {
    width: 16px;
    height: 16px;
}

.apply-modal__submit-btn {
    width: 100%;
    padding: 12px;
    background: #1a2b6d;
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* ==========================================================================
   GLOBAL CTA BANNER (.cta-banner)
   ========================================================================== */
.cta-banner {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 24px 0;
    text-align: center;
}

#view-apply.active~.cta-banner,
.main-content:has(#view-apply.active)~.cta-banner {
    display: none !important;
}

.cta-banner__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-banner__title {
    font-family: Cormorant Garamond;
    font-size: clamp(22px, 2.5vw, 32px);
    color: var(--deep-blue);
    text-align: center !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-banner__actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background-color: var(--saffron2);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.cta-banner__btn:hover {
    background-color: #081a4a;
    transform: translateY(-2px);
}


/* ==========================================================================
   SITE FOOTER (.footer)
   ========================================================================== */
.footer {
    background-color: #081a4a;
    color: var(--white);
    padding-top: 45px;
}

.footer__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__logo-icon img {
    width: 100px;
}

.footer__logo-title {
    font-family: Cormorant Garamond;
    display: flex;
    flex-direction: column;
}

.footer__logo-text1 {
    color: #ff7a00;
    font-size: 1.60rem;
    font-weight: 500;
    line-height: 1;
}

.footer__logo-text2 {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1;
}

.footer__logo-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__about-text {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__item {
    font-size: 0.9rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.footer__link:hover {
    color: #ff7a00;
}

.footer__contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__contact-icon {
    color: var(--saffron);
    margin-top: 4px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer__bottom-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copy-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__badges-row {
    display: flex;
    gap: 15px;
}

.footer__badge {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Global Responsive Base Reset */
html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    overflow-x: clip;
    width: 100%;
}

img,
video,
iframe,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
span,
a,
li {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Laptop / Compact Desktop (max-width: 1200px) */
@media (max-width: 1200px) {
    .header__container {
        padding: 14px 20px;
    }

    .header__nav-menu {
        gap: 2px;
    }

    .header__nav-link {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

/* Tablet Breakpoint (max-width: 992px) */
@media (max-width: 992px) {
    .header__container {
        align-items: center;
        position: relative;
        padding: 10px 16px;
        min-height: 70px;
    }

    .header__logo-main {
        font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    }

    .header__logo-main1 {
        font-size: clamp(1.15rem, 3vw, 1.6rem);
    }

    .header__logo-sub {
        font-size: 0.65rem;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .header__mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .header__mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .header__mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .header__nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #1a2b6d;
        display: none;
        padding: 24px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header__nav.active,
    .header__nav:has(.header__nav-menu.active) {
        display: flex !important;
        flex-direction: column;
    }

    .header__nav-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .header__nav-item {
        width: 100%;
    }

    .header__nav-link {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px !important;
        text-align: center;
        font-size: 1rem;
        padding: 12px 16px;
    }

    .hero__grid,
    .about-hero__grid,
    .intro__grid,
    .why-alt__grid,
    .transparency__grid,
    .about-details__grid,
    .about-governance__founder-grid,
    .journey-hero__grid,
    .contact-main__grid,
    .portal-auth__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-hero__video-wrapper {
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 360px;
        width: 100%;
    }

    .barriers__grid,
    .programs-promo__grid,
    .about-values__grid,
    .about-governance__team-grid,
    .journey-impact__grid,
    .journey-gallery__grid,
    .scholarships-overview__grid,
    .roadmap-phases__grid,
    .portal-dash__cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .portal-dash__layout {
        flex-direction: column;
    }

    .portal-dash__sidebar {
        width: 100%;
    }
}

/* Mobile Breakpoint (max-width: 768px) */
@media (max-width: 768px) {

    p,
    .intro__text,
    .why-alt__text,
    .transparency__text,
    .final-home-cta__text,
    .about-details__text {
        text-align: left;
    }

    .hero,
    .intro,
    .mission-vision,
    .barriers,
    .why-alt,
    .programs-promo,
    .transparency,
    .final-home-cta,
    .about-details,
    .about-values,
    .about-governance,
    .journey-impact,
    .journey-growth,
    .journey-gallery,
    .programs-list,
    .scholarships-overview,
    .scholarships-details,
    .selection-process,
    .roadmap-phases,
    .contact-main,
    .cta-banner {
        padding: 22px 0;
    }

    .about-hero,
    .journey-hero,
    .programs-hero,
    .scholarships-hero,
    .selection-hero,
    .roadmap-hero,
    .contact-hero {
        padding: 22px 0 16px;
    }

    .hero__cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero__btn {
        width: 100%;
        justify-content: center;
    }

    .mission-vision__grid,
    .programs-list__grid,
    .scholarships-details__grid,
    .barriers__grid,
    .programs-promo__grid,
    .journey-impact__grid,
    .journey-gallery__grid,
    .scholarships-overview__grid,
    .roadmap-phases__grid,
    .portal-dash__cards-grid,
    .programs-list__mentor-grid,
    .selection-process__grid,
    .apply-modal__grid-2 {
        grid-template-columns: 1fr;
    }

    .journey-growth__timeline-line {
        left: 20px;
    }

    .journey-growth__item {
        width: 100%;
        padding-left: 50px;
        padding-right: 10px;
    }

    .journey-growth__item--left,
    .journey-growth__item--right {
        left: 0;
        text-align: left;
    }

    .journey-growth__item--left .journey-growth__dot,
    .journey-growth__item--right .journey-growth__dot {
        left: 11px;
        right: auto;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .why-alt__stats-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .apply-modal__steps-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        justify-content: flex-start;
    }

    .apply-modal__step {
        flex-shrink: 0;
    }
}

/* Small Mobile Breakpoint (max-width: 576px) */
@media (max-width: 576px) {
    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .footer__badges-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .final-home-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .final-home-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* Extra Small Mobile Breakpoint (max-width: 480px) */
@media (max-width: 480px) {
    .header__logo-icon img {
        width: 58px;
    }

    .header__logo-main {
        font-size: 1.25rem;
    }

    .header__logo-main1 {
        font-size: 1.1rem;
    }

    .header__logo-sub {
        font-size: 0.6rem;
    }

    .hero__title {
        font-size: 24px;
    }

    .head1,
    .head2 {
        font-size: 24px;
    }

    .apply-modal__card {
        padding: 18px 12px;
        max-height: calc(100vh - 20px);
    }

    .apply-modal__steps-bar {
        padding: 8px 4px;
    }

    .apply-modal__step-label {
        font-size: 8.5px;
    }

    .apply-modal__step-num {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .hero__badge {
        font-size: 0.78rem;
        padding: 6px 12px;
    }
}

/* Ultra Small Mobile Breakpoint (max-width: 375px) */
@media (max-width: 375px) {
    .header__logo-icon img {
        width: 48px;
    }

    .header__logo-main {
        font-size: 1.05rem;
    }

    .header__logo-main1 {
        font-size: 0.95rem;
    }

    .header__logo-sub {
        font-size: 0.55rem;
    }

    .hero__title,
    .head1,
    .head2 {
        font-size: 20px;
    }

    .intro__heading,
    .barriers__title,
    .why-alt__heading,
    .programs-promo__title,
    .transparency__title,
    .about-hero__title,
    .about-values__title {
        font-size: 22px;
    }

    .header__mobile-toggle {
        padding: 6px;
    }
}

/* Micro Mobile Breakpoint (max-width: 320px) */
@media (max-width: 320px) {
    .header__container {
        padding: 8px 10px;
    }

    .header__logo-container {
        gap: 4px;
    }

    .header__logo-main {
        font-size: 0.92rem;
    }

    .header__logo-main1 {
        font-size: 0.85rem;
    }

    .header__logo-sub {
        font-size: 0.5rem;
    }
}