/* ============================================
   EDEX INSTITUTE - Homepage Styles
   ============================================ */

:root {
    --navy: #0B2D4F;
    --navy-dark: #082440;
    --navy-darker: #051829;
    --gold: #C9A227;
    --gold-hover: #B08F1F;
    --white: #ffffff;
    --text-dark: #1C2B3A;
    --text-muted: #5C6B7A;
    --green: #2D8B57;
    --green-light: #EBF6F0;
    --purple: #003f3d;
    --purple-light: #E8F4F3;
    --blue: #122C5D;
    --blue-light: #EBF3FA;
    --border-light: #E2E8F0;
    --surface: #F4F7FA;
    --surface-alt: #EAF0F6;
    --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
    --font-body: 'Sora', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--surface);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s, background 0.2s, opacity 0.2s;
}

.site-breadcrumbs {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb-list li:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: var(--border-light);
}

.breadcrumb-list a {
    color: var(--navy);
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list [aria-current="page"] {
    color: var(--text-muted);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-navy { color: var(--navy) !important; }

/* ============================================
   TOP UTILITY BAR
   ============================================ */
.top-bar {
    background: var(--navy);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
    width: 100%;
}

.top-bar-right { gap: 14px; }

.social-icons { gap: 6px; margin-left: 6px; }

.top-bar-tagline {
    font-weight: 400;
    letter-spacing: 0.2px;
}

.top-bar-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-link:hover { color: var(--gold); }

.top-bar-link i { font-size: 14px; }

.top-bar-divider {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

.social-icons a {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    transition: background 0.2s, border-color 0.2s;
}

.social-icons a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================
   MAIN NAVIGATION ? FULL WIDTH
   ============================================ */
.main-nav {
    background: var(--white);
    box-shadow: 0 1px 8px rgba(0,0,0,0.07);
    width: 100%;
}

.main-nav .navbar { padding: 0; }

.nav-inner {
    padding-top: 14px;
    padding-bottom: 14px;
}

.logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.logo-img-white {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.nav-menu .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 11px !important;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy) !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    position: relative;
    white-space: nowrap;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--gold) !important;
}

.nav-menu .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.nav-menu .nav-link .fa-chevron-down {
    font-size: 9px;
    margin-top: 1px;
    opacity: 0.7;
}

.btn-get-started {
    background: var(--gold);
    color: var(--white);
    padding: 12px 26px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
}

.btn-get-started:hover {
    background: var(--gold-hover);
    color: var(--white);
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        padding: 12px 0 8px;
    }

    .nav-menu .nav-link.active::after { display: none; }

    .btn-get-started {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.section-heading .heading-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.section-heading .heading-lines::before,
.section-heading .heading-lines::after {
    content: '';
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.section-heading h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 16px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background: url('../images/hero-bg.webp') center right/cover no-repeat;
    overflow: hidden;
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.94) 35%, rgba(255,255,255,0.75) 55%, rgba(255,255,255,0.35) 72%, rgba(255,255,255,0.1) 88%, transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content { max-width: 100%; }

.hero > .container > .row > [class*="col"] > .hero-content > h1,
.hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.hero > .container > .row > [class*="col"] > .hero-content > p,
.hero-content > p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 620px;
}

.hero-subheading {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-features { margin-bottom: 28px; }

.hero-feature-item {
    height: 100%;
    gap: 12px;
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.hero-feature-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.hero-feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.hero-buttons { gap: 12px; }

.btn-navy {
    background: var(--navy);
    color: var(--white);
    padding: 13px 26px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border: 2px solid var(--navy);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-navy:hover {
    background: transparent;
    color: var(--navy);
}

.btn-outline {
    background: var(--white);
    color: var(--navy);
    padding: 13px 26px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border: 2px solid var(--navy);
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-outline .play-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
}

.btn-outline:hover .play-icon {
    background: var(--white);
    color: var(--navy);
}

/* ============================================
   ABOUT US STORY ? content left, image right
   ============================================ */
.about-us-story { background: var(--white); }

.about-us-content { }

.about-us-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.about-us-underline {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 24px;
}

.about-us-content p {
       font-size: 15px;
    color: var(--navy);
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 500;
}

.about-us-image-wrapper {
    position: relative;
}

.about-us-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.about-us-quote-box {
    background: var(--navy);
    padding: 24px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    width: 220px;
    margin-left: -72px;
}

.about-us-quote-mark {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
}

.about-us-quote-text {
      color: var(--white);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-us-quote-box {
        position: relative;
    }
}

/* ============================================
   OUR DIVISIONS
   ============================================ */
.divisions { background: var(--white); }

.division-card {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 32px 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.division-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}
.logodiv{
    height: 150px;
}
.division-icon-img {
   margin-bottom: 20px;
    display: block;
    height: 100px;
    object-fit: contain;
}

.division-card.healthcare h3 { color: var(--green); }
.division-card.muslim h3 { color: var(--purple); }
.division-card.community h3 { color: var(--blue); }

.division-card h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.division-card .card-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.65;
    text-align: left;
}

.division-list {
    text-align: left;
    margin-bottom: 24px;
    flex: 1;
    padding: 0 4px;
}

.division-list li {
    gap: 10px;
    align-items: center;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.division-list li i {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

.division-card.healthcare .division-list li i {
    color: var(--green);
    border-color: var(--green);
}

.division-card.muslim .division-list li i {
    color: var(--purple);
    border-color: var(--purple);
}

.division-card.community .division-list li i {
    color: var(--blue);
    border-color: var(--blue);
}

.btn-division {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    margin-top: auto;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--white);
    border: none;
    border-radius: 0 0 11px 11px;
}

.btn-division i { font-size: 12px; }
.btn-division:hover { opacity: 0.92; }
.btn-division.green { background: var(--green); }
.btn-division.purple { background: var(--purple); }
.btn-division.blue { background: var(--blue); }

/* ============================================
   WHY LEARNERS CHOOSE
   ============================================ */
.why-choose { background: var(--white); }

.why-item {
    padding: 12px 16px;
    position: relative;
    text-align: left;
}

.why-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 14px;
    display: block;
}

.why-item h4 {
    font-size: 11px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.why-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .why-choose-row > .col {
        position: relative;
    }

    .why-choose-row > .col:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 55%;
        background: var(--border-light);
    }
}

/* ============================================
   STATISTICS BAR
   ============================================ */
.stats-bar {
    background: var(--white);
    width: 100%;
}

.stats-bar-inner {
   background: var(--navy);
    border-radius: 12px;
    padding: 50px;
    overflow: visible;
}

.stats-row {
    overflow: visible;
}

.stat-item {
    gap: 14px;
    color: var(--white);
    min-height: 56px;
}

.stat-icon-img {
      width: 58px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.stat-text strong {
    display: block;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: 0.2px;
    line-height: 30px;
}

.stat-text span {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 600;
    color: #CF9C44;
}

@media (min-width: 768px) {
    .stats-row > [class*="col-"] {
        position: relative;
    }

    .stats-row > [class*="col-"] + [class*="col-"]::before {
        content: '';
        position: absolute;
        left: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 60%;
        background: rgba(255,255,255,0.12);
        z-index: 2;
        pointer-events: none;
    }
}

/* ============================================
   FEATURED PROGRAMS
   ============================================ */
.featured-programs { background: var(--white); }

.program-card {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    gap: 16px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.program-img {
    width: 170px;
    flex-shrink: 0;
    object-fit: cover;
   height: 185px;
    border-radius: 10px;
}

.program-content {
    padding: 4px 4px 4px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    line-height: 1.35;
}

.program-green .program-content h4 { color: var(--green); }
.program-purple .program-content h4 { color: var(--purple); }
.program-blue .program-content h4 { color: var(--blue); }

.program-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.55;
    flex: 1;
}

.btn-learn-more {
    display: inline-block;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: transparent;
    align-self: flex-start;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}

.btn-learn-more.green {
    color: var(--green);
    border: 1.5px solid var(--green);
}

.btn-learn-more.green:hover {
    background: var(--green);
    color: var(--white);
}

.btn-learn-more.purple {
    color: var(--purple);
    border: 1.5px solid var(--purple);
}

.btn-learn-more.purple:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-learn-more.blue {
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.btn-learn-more.blue:hover {
    background: var(--blue);
    color: var(--white);
}

/* ============================================
   LEARNING NETWORK
   ============================================ */
.learning-network { background: var(--white); }

.network-section-desc {
    white-space: nowrap;
    max-width: none;
}

.network-column h4 {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.network-column.healthcare h4 { color: var(--green); }
.network-column.community h4 { color: var(--blue); }
.network-column.muslim h4 { color: var(--purple); }

.network-column ul li { margin-bottom: 7px; }

.network-column ul li a {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    transition: color 0.2s;
    word-break: break-word;
    line-height: 1.4;
}

.network-column ul li a i {
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
}

.network-column.healthcare ul li a i { color: var(--green); }
.network-column.community ul li a i { color: var(--blue); }
.network-column.muslim ul li a i { color: var(--purple); }

.network-column.healthcare ul li a:hover { color: var(--green); }
.network-column.community ul li a:hover { color: var(--blue); }
.network-column.muslim ul li a:hover { color: var(--purple); }

.network-column .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.network-column.healthcare .view-all-link { color: var(--green); }
.network-column.community .view-all-link { color: var(--blue); }
.network-column.muslim .view-all-link { color: var(--purple); }

.network-column.healthcare .view-all-link:hover { opacity: 0.8; }
.network-column.community .view-all-link:hover { opacity: 0.8; }
.network-column.muslim .view-all-link:hover { opacity: 0.8; }

.learning-network .container {
    overflow: visible;
}

.network-row {
    overflow: visible;
}

@media (min-width: 992px) {
    .network-row > [class*="col-"] {
        position: relative;
    }

    .network-row > [class*="col-"]:not(:last-child)::after {
        content: '';
        position: absolute;
        right: calc(var(--bs-gutter-x, 1.5rem) * -0.5);
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 160px;
        max-height: 55%;
        background: #D1D5DB;
        z-index: 5;
        pointer-events: none;
        display: block;
                left: -10px;
    }
}

.network-info-col {
    max-width: 100%;
}

@media (min-width: 992px) {
    .network-info-col {
        flex: 0 0 auto;
        width: 300px;
        max-width: 300px;
    }
}

.network-info {
    background: #F4F6F8;
    border: none;
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    width: 100%;
}

.network-globe-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 14px;
    display: block;
}

.network-info p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 991px) {
    .network-section-desc { white-space: normal; }
}

/* ============================================
   WHAT WE DO ? image boxes with titles and text
   ============================================ */
.what-we-do { background: var(--white); }

.what-we-do .container {
    background: #f4f6f83d;
    padding: 40px 24px;
  
}

.what-we-do-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
}

.what-we-do-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}

.what-we-do-box h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.what-we-do-box p {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.55;
    margin-bottom: 0;
}

/* ============================================
   OUR LEARNING ECOSYSTEM ? 3-column cards
   ============================================ */
.our-learning-ecosystem { background: var(--white); }

.our-learning-ecosystem .container {
    background: #f4f6f83d;
    padding: 40px 24px;
   
}

.ecosystem-inner { }

.ecosystem-card {
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 20px;
    gap: 16px;
    display: flex;
    flex-direction: row;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ecosystem-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.ecosystem-card-image {
    flex-shrink: 0;
    display: flex;
    align-items: top;
    justify-content: center;
    min-width: 100px;
}

.ecosystem-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: block;
}

.ecosystem-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ecosystem-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ecosystem-title.green { color: var(--green); }
.ecosystem-title.purple { color: var(--purple); }
.ecosystem-title.blue { color: var(--blue); }

.ecosystem-card-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
    flex: 1;
}

.btn-ecosystem {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid;
    border-radius: 3px;
    text-align: center;
    align-self: flex-start;
    transition: background 0.2s, color 0.2s;
}

.btn-ecosystem.green {
    color: var(--green);
    border-color: var(--green);
}

.btn-ecosystem.green:hover {
    background: var(--green);
    color: var(--white);
}

.btn-ecosystem.purple {
    color: var(--purple);
    border-color: var(--purple);
}

.btn-ecosystem.purple:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-ecosystem.blue {
    color: var(--blue);
    border-color: var(--blue);
}

.btn-ecosystem.blue:hover {
    background: var(--blue);
    color: var(--white);
}

@media (max-width: 991px) {
    .ecosystem-card {
        flex-direction: row;
    }

    .ecosystem-card-image {
        min-width: 80px;
    }

    .ecosystem-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .ecosystem-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ecosystem-card-image {
        min-width: auto;
    }

    .btn-ecosystem {
        align-self: center;
    }
}

/* ============================================
   TRUSTED BY ? icon left / heading right layout
   ============================================ */
.trusted-by { background: #F4F6F8; }

.trusted-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.trusted-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.trusted-text { min-width: 0; }

.trusted-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.trusted-title.green { color: var(--green); }
.trusted-title.purple { color: var(--purple); }
.trusted-title.blue { color: var(--blue); }

@media (max-width: 576px) {
    .trusted-item { gap: 10px; }
    .trusted-title { font-size: 13px; }
}

/* ============================================
   INFO SECTION ? left content + right 4-item list
   ============================================ */
.info-section {
    padding: 60px 0;
}

.info-section .container {
    background: var(--navy);
    padding: 40px 24px;
    border-radius: 8px;
}

.info-inner {
    padding: 0;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-left-image {
    flex-shrink: 0;
}

.info-img-small {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.info-left-content { }

.info-left-text {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 0;
}

.info-right {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.info-right-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 calc(25% - 12px);
    min-width: 140px;
}

.info-right-image {
    flex-shrink: 0;
}

.info-right-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.info-right-content { }

.info-right-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.info-right-text {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .info-left {
        margin-bottom: 30px;
    }

    .info-img-small {
        width: 100px;
        height: 100px;
    }

    .info-right-item {
        flex: 1 1 calc(50% - 8px);
    }
}

@media (max-width: 576px) {
    .info-section {
        padding: 40px 0;
    }

    .info-left {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .info-right-item {
        flex: 1 1 calc(50% - 8px);
        margin-bottom: 16px;
    }
}

/* ============================================
   BLOG HERO SECTION
   ============================================ */
.blog-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
}

.blog-hero-overlay {
    display: none;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog-hero-content { }

.blog-hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-hero-paragraph {
    font-size: 16px;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.blog-search-wrapper {
    margin-bottom: 0;
}

.blog-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    border: 1px solid #0000004a;
    border-radius: 6px;
    padding: 0;
    max-width: 450px;
}

.blog-search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--white);
    font-family: inherit;
    outline: none;
}

.blog-search-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.blog-search-btn {
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.blog-search-btn:hover {
    color: var(--white);
}
.blog-search-btn i{
    color: var(--navy);
}
/* Blog Hero Info Box - bottom right */
.blog-hero-info-box {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--navy);
    border-radius: 8px;
    padding: 20px;
    max-width: 280px;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    justify-content: center;
}
.blog-search-input::placeholder{
    color:var(--navy)
}
.blog-info-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.blog-info-text {
    font-size: 13px;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
    text-align: center;
}

/* ============================================
   BLOG ARTICLES SECTION
   ============================================ */

.blog-articles {
    background: var(--white);
}

.blog-section-heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 32px;
    text-align: left;
}

/* Featured Blog Card */
.featured-blog-card {
    background: white;
    border-radius: 5px;
    padding: 10px;
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.featured-blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.featured-blog-image {
    width: 280px;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.featured-blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.featured-blog-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin: 12px 0;
    line-height: 1.4;
}

.featured-blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.blog-category.healthcare {
    background: var(--green-light);
    color: var(--green);
}

.blog-category.education {
    background: var(--blue-light);
    color: var(--blue);
}

.blog-category.nonprofit {
    background: var(--purple-light);
    color: var(--purple);
}

.blog-category.professional {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

/* Blog Meta */
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 16px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    margin: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.author-title {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Read More Link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.2s;
}

.blog-read-more:hover {
    color: var(--gold);
}

.blog-read-more i {
    font-size: 12px;
}

/* Small Blog Cards */
.blog-small-cards-row {
    margin-bottom: 0;
}

.small-blog-card {
    background: white;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.small-blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.small-blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 14px;
}

.small-blog-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.small-blog-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.small-blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.small-blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    margin-top: auto;
}

.blog-read-more-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    transition: color 0.2s;
}

.blog-read-more-small:hover {
    color: var(--gold);
}

.blog-read-more-small i {
    font-size: 10px;
}

/* Sidebar */
.blog-sidebar-section {
    margin-bottom: 32px;
}

.blog-sidebar-heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Category Box */
.category-box {
    background: #f4f6f83d;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.category-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.category-icon.healthcare-icon {
    background: var(--green-light);
    color: var(--green);
}

.category-icon.education-icon {
    background: var(--blue-light);
    color: var(--blue);
}

.category-icon.nonprofit-icon {
    background: var(--purple-light);
    color: var(--purple);
}

.category-icon.professional-icon {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
}

.category-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.category-count {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Subscription Box */
.subscription-section {
    margin-bottom: 0;
}

.subscription-box {
    background: var(--navy);
    border-radius: 6px;
    padding: 28px 24px;
    text-align: center;
}

.subscription-heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.subscription-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscription-input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: background 0.2s, border-color 0.2s;
}

.subscription-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscription-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.subscription-btn {
    padding: 12px 24px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.subscription-btn:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

/* ============================================
   LATEST ARTICLES SECTION
   ============================================ */

.latest-articles {
    background: var(--white);
}

.latest-articles-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.latest-articles-heading {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0;
    white-space: nowrap;
}

.heading-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

/* Articles Box */
.articles-box {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 32px;
}

.article-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

.article-row:last-child {
    border-bottom: none;
}

.article-row:hover {
    background: rgba(245, 247, 250, 0.5);
}

.article-thumbnail {
    width: 170px;
    height: 65px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
}

.article-content {
    flex: 1;
}

.article-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.article-description {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.article-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.article-time {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-time::before {
    content: '?';
    margin-right: 2px;
}

/* View All Button */
.articles-button-wrapper {
    display: flex;
    justify-content: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 45px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--green);
    letter-spacing: 0.5px;
    transition: background 0.2s, color 0.2s;
}

.view-all-btn:hover {
    background: var(--green);
    color: var(--white);
}

.view-all-btn i {
    font-size: 12px;
}

/* Latest Articles Responsive */
@media (max-width: 768px) {
    .latest-articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 28px;
    }

    .latest-articles-heading {
        font-size: 22px;
    }

    .article-row {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .article-thumbnail {
        width: 100%;
        height: 150px;
    }

    .article-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .article-date,
    .article-time {
        font-size: 12px;
    }

    .view-all-btn {
        padding: 12px 32px;
        font-size: 13px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .featured-blog-image {
        width: 200px;
        height: 180px;
    }

    .blog-section-heading {
        font-size: 24px;
    }

    .featured-blog-title {
        font-size: 18px;
    }

    .small-blog-image {
        height: 140px;
    }

    .small-blog-title {
        font-size: 14px;
    }

    .featured-blog-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .featured-blog-card {
        flex-direction: column;
        gap: 16px;
        padding: 14px;
    }

    .featured-blog-image {
        width: 100%;
        height: 240px;
    }

    .blog-small-cards-row .col-md-6 {
        margin-bottom: 20px;
    }

    .blog-section-heading {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .small-blog-image {
        height: 160px;
    }

    .small-blog-title {
        font-size: 15px;
    }

    .featured-blog-title {
        font-size: 18px;
    }

    .blog-articles {
        padding: 40px 0;
    }

    .blog-sidebar-section {
        margin-bottom: 28px;
        margin-top: 28px;
    }

    .subscription-box {
        padding: 24px 20px;
    }

    .subscription-heading {
        font-size: 16px;
    }

    .subscription-text {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

@media (max-width: 1199px) {
    .blog-hero-info-box {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 450px;
    }

    .blog-hero-title {
        font-size: 36px;
    }

    .blog-hero-subtitle {
        font-size: 24px;
    }

    .blog-hero-paragraph {
        font-size: 15px;
    }

    .blog-search-form {
        max-width: 100%;
    }

    .blog-hero-info-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

/* ============================================
   NEWSLETTER ? full width
   ============================================ */
.newsletter {
    background: var(--navy);
    padding: 32px 0;
    width: 100%;
}


.newsletter-left {
    gap: 14px;
    color: var(--white);
}

.newsletter-left-text h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 4px;
}

.newsletter-subtext {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 0;
}

.newsletter-left i {
    font-size: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #54a6f9;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.newsletter-form .form-control {
    padding: 0 18px;
    font-size: 15px;
    font-family: inherit;
    box-shadow: none;
    height: 52px;
    border-radius: 28px;
    border: none;
    flex: 1 1 auto;
    margin-right: 12px;
}

.btn-subscribe {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    height: 52px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-subscribe:hover { background: var(--gold-hover); color: var(--white); }

@media (max-width: 991px) {
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form .form-control { margin-right: 0; width: 100%; }
    .btn-subscribe { width: 100%; }
}

/* ============================================
   FOOTER ? full width
   ============================================ */
.main-footer {
    background: var(--navy-darker);
    color: rgba(255,255,255,0.7);
    padding: 50px 0 0;
    width: 100%;
}

.footer-grid { padding-bottom: 36px; }

.footer-logo { margin-bottom: 14px; }

.footer-about {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

.footer-social { gap: 7px; }

.footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 7px; }

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-col ul li a:hover { color: var(--gold); }

.contact-item {
    gap: 9px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.6);
}

.contact-item i {
    color: var(--gold);
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    background: rgba(0,0,0,0.15);
    font-size: 14px;
    color: rgba(255,255,255,0.45);
}

.footer-bottom-links { gap: 18px; }

.footer-bottom-links a {
    color: rgba(255,255,255,0.45);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
    .nav-menu .nav-link {
        padding: 8px 0 !important;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        background-position: center center;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 70%, rgba(255,255,255,0.85) 100%);
    }

    .hero h1 { font-size: 32px; }

    .hero-feature-item {
        margin-bottom: 8px;
    }
    .program-card { flex-direction: column; }
    .program-img { width: 100%; min-height: 180px; height: auto; }
}

@media (max-width: 480px) {
    .top-bar-tagline { display: none; }
}

/* ============================================
   2026 BOLD UI REVAMP LAYER
   ============================================ */

h1, h2, h3, .section-heading h2, .hero h1, .page-hero h1 {
    font-family: var(--font-display);
}

.main-nav {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.96);
}

.nav-dropdown {
    border: none;
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(11,45,79,0.12);
    padding: 8px 0;
    margin-top: 8px !important;
}

.nav-dropdown .dropdown-item {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.nav-dropdown .dropdown-item:hover {
    background: var(--surface);
    color: var(--gold);
}

.btn-get-started {
    border-radius: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-get-started:hover {
    transform: translateY(-2px);
}

.btn-navy, .btn-outline, .btn-division, .btn-learn-more, .btn-subscribe, .btn-ecosystem {
    border-radius: 0 !important;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-navy:hover, .btn-get-started:hover, .btn-division:hover {
    transform: translateY(-2px);
}

/* Hero ? bold full-bleed */
.hero {
    min-height: min(88vh, 720px);
    background-color: var(--navy-darker);
}

.hero-home {
    background:
        linear-gradient(105deg, rgba(5,24,41,0.97) 0%, rgba(11,45,79,0.88) 38%, rgba(11,45,79,0.55) 62%, rgba(11,45,79,0.2) 100%),
        url('../images/hero-bg.webp') center right / cover no-repeat;
}

.hero-home::before { display: none; }

.hero.hero-home > .container > .row > [class*="col"] > .hero-content > h1,
.hero.hero-home .hero-content h1 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.8vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.12;
    max-width: 12em;
    margin-bottom: 1.25rem;
}

.hero.hero-home > .container > .row > [class*="col"] > .hero-content > p,
.hero.hero-home .hero-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-home .hero-brand {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.hero-home .hero-content {
    max-width: 640px;
    padding-right: 1rem;
}

.hero-home .hero-buttons {
    gap: 14px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 0;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--navy-darker);
    border: 2px solid var(--gold);
}

.btn-hero-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--navy-darker);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.55);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero-secondary i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.btn-hero-secondary:hover i {
    transform: translateX(3px);
}

.hero-content {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-content.is-ready {
    opacity: 1;
    transform: translateY(0);
}

/* Page heroes (inner pages) */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--navy-dark);
    color: var(--white);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(5,24,41,0.92) 0%, rgba(11,45,79,0.72) 50%, rgba(11,45,79,0.4) 100%);
    z-index: 1;
}

.page-hero .container { position: relative; z-index: 2; padding: 72px 0; }

.page-hero-content { max-width: 640px; }

.page-hero-content.is-ready,
.page-hero .hero-content.is-ready { opacity: 1; transform: none; }

.page-hero .hero-content {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 34rem;
    margin-bottom: 28px;
}

.page-hero .hero-subheading {
    color: var(--gold);
}

.page-hero-about {
    background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 50%, #0f3a5c 100%);
    overflow: hidden;
}

.page-hero-about::before {
    background: linear-gradient(100deg, rgba(5,24,41,0.97) 0%, rgba(11,45,79,0.88) 45%, rgba(11,45,79,0.55) 100%);
}

.page-hero-about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 85% 50%, rgba(201,162,39,0.12) 0%, transparent 45%),
        url('../images/hero-bg.webp') right center / 55% auto no-repeat;
    opacity: 0.35;
    pointer-events: none;
}

.page-hero-about .container {
    position: relative;
    z-index: 2;
}

.about-hero-visual {
    position: relative;
    padding: 12px;
}

.about-hero-visual::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 70%;
    border: 3px solid var(--gold);
    z-index: 0;
}

.about-hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    display: block;
    box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}

.page-hero-healthcare {
    background: url('../images/healthcare-edex-hero.webp') center / cover no-repeat;
}

.page-hero-muslim {
    background: url('../images/muslim-edex-hero.webp') center / cover no-repeat;
}

.page-hero-community {
    background: url('../images/community-edex-hero.webp') center / cover no-repeat;
}

.page-hero-contact,
.page-hero-certs,
.page-hero-partner,
.page-hero-help,
.page-hero-legal {
    background:
        linear-gradient(135deg, var(--navy-darker) 0%, var(--navy) 55%, #163a5f 100%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.18), transparent 50%);
}

.page-hero-healthcare::after,
.page-hero-muslim::after,
.page-hero-community::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    z-index: 3;
}

.page-hero-healthcare::after { background: var(--green); }
.page-hero-muslim::after { background: var(--purple); }
.page-hero-community::after { background: var(--blue); }

/* Reveal motion */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-content, .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Home feature band under hero */
.home-pillars {
    background: var(--white);
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
}

.home-pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.home-pillar img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.home-pillar h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.home-pillar p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Divisions ? bold panels */
.divisions {
    background: var(--surface) !important;
}

.division-panel {
    position: relative;
    background: var(--white);
    border: none;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease;
}

.division-panel:hover {
    transform: translateY(-6px);
}

.division-panel .panel-accent {
    height: 8px;
    width: 100%;
}

.division-panel.healthcare .panel-accent { background: var(--green); }
.division-panel.muslim .panel-accent { background: var(--purple); }
.division-panel.community .panel-accent { background: var(--blue); }

.division-panel .panel-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.division-panel .logodiv {
    margin-bottom: 16px;
    text-align: center;
}

.division-panel .card-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.65;
    text-align: left;
}

.division-panel.healthcare .division-list li i {
    color: var(--green);
    border-color: var(--green);
}

.division-panel.muslim .division-list li i {
    color: var(--purple);
    border-color: var(--purple);
}

.division-panel.community .division-list li i {
    color: var(--blue);
    border-color: var(--blue);
}

.division-panel .btn-division {
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: -32px;
    border-radius: 0;
}

.section-heading h2 {
    white-space: normal;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: 0.04em;
}

.why-choose {
    background: var(--white);
}

.stats-bar {
    background: linear-gradient(90deg, var(--navy-darker), var(--navy));
}

.featured-programs {
    background: var(--surface-alt);
}

.learning-network {
    background: var(--white);
}

.trusted-by {
    background: var(--surface);
}

/* Forms */
.form-modern .form-control,
.form-modern .form-select,
.newsletter-form .form-control {
    border-radius: 0;
    border: 1px solid var(--border-light);
    padding: 14px 16px;
    font-size: 15px;
}

.form-modern .form-control:focus,
.form-modern .form-select:focus,
.newsletter-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
}

.form-modern label {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy);
    margin-bottom: 8px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy-darker);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 14px 28px;
    border: 2px solid var(--gold);
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: var(--navy-darker);
    transform: translateY(-2px);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.45);
    padding: 12px 22px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.btn-ghost-light:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* Content shells */
.content-section {
    padding: 72px 0;
}

.content-section.alt {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 991.98px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-detail-card {
    background: var(--navy);
    color: var(--white);
    padding: 36px;
}

.contact-detail-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-detail-card .detail-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.85);
}

.contact-detail-card .detail-row i {
    color: var(--gold);
    margin-top: 4px;
}

.map-band {
    background: var(--surface-alt);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.map-band-inner {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.map-band-inner i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

/* Cert / partner / help */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 991.98px) {
    .cert-grid { grid-template-columns: 1fr; }
}

.cert-tile {
    background: var(--white);
    border-top: 5px solid var(--gold);
    padding: 28px;
    height: 100%;
    transition: transform 0.2s ease;
}

.cert-tile:hover { transform: translateY(-4px); }
.cert-tile.green { border-top-color: var(--green); }
.cert-tile.teal { border-top-color: var(--purple); }
.cert-tile.blue { border-top-color: var(--blue); }

.cert-tile h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.cert-tile ul {
    padding-left: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991.98px) {
    .help-categories { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .help-categories { grid-template-columns: 1fr; }
}

.help-cat {
    background: var(--white);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.help-cat:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    color: inherit;
}

.help-cat i {
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.help-cat h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin: 0;
}

.accordion-modern .accordion-button {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    box-shadow: none !important;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: var(--surface);
    color: var(--navy);
}

.accordion-modern .accordion-item {
    border-radius: 0;
    border-color: var(--border-light);
    margin-bottom: 10px;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 767.98px) {
    .partner-benefits { grid-template-columns: 1fr; }
}

.benefit-block {
    background: var(--white);
    padding: 32px 28px;
    border-left: 4px solid var(--gold);
}

.benefit-block h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 10px;
}

/* Legal pages */
.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
    padding: 64px 0 80px;
}

@media (max-width: 991.98px) {
    .legal-layout { grid-template-columns: 1fr; }
}

.legal-toc {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.legal-toc h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    margin-bottom: 16px;
}

.legal-toc a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
}

.legal-toc a:hover { color: var(--gold); }

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--navy);
    margin-top: 36px;
    margin-bottom: 12px;
    scroll-margin-top: 110px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p, .legal-content li {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.policy-callout {
    background: var(--surface);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 24px 0;
}

.policy-callout strong {
    display: block;
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .hero-home { min-height: auto; }

    .hero.hero-home .hero-content h1 {
        max-width: none;
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-home .hero-content {
        padding-right: 0;
    }

    .hero-home .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .page-hero { min-height: auto; }

    .page-hero-about-bg {
        background-size: cover;
        opacity: 0.2;
    }
}

/* ============================================
   ABOUT US ? ECOSYSTEM REDESIGN
   ============================================ */
.our-learning-ecosystem {
    background: var(--surface) !important;
    padding-bottom: 48px;
}

.our-learning-ecosystem .container {
    background: transparent;
    padding: 0;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 991.98px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

.ecosystem-panel {
    background: var(--white);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 24px rgba(11,45,79,0.06);
}

.ecosystem-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(11,45,79,0.1);
}

.ecosystem-panel-accent {
    height: 6px;
    width: 100%;
}

.ecosystem-panel.healthcare .ecosystem-panel-accent { background: var(--green); }
.ecosystem-panel.muslim .ecosystem-panel-accent { background: var(--purple); }
.ecosystem-panel.community .ecosystem-panel-accent { background: var(--blue); }

.ecosystem-panel-body {
    padding: 32px 28px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.ecosystem-panel-logo {
    width: auto;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.ecosystem-panel h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.ecosystem-panel.healthcare h3 { color: var(--green); }
.ecosystem-panel.muslim h3 { color: var(--purple); }
.ecosystem-panel.community h3 { color: var(--blue); }

.ecosystem-panel-body > p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    text-align: left;
}

.ecosystem-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.ecosystem-panel-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.45;
}

.ecosystem-panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.ecosystem-panel.healthcare .ecosystem-panel-list li::before { background: var(--green); }
.ecosystem-panel.muslim .ecosystem-panel-list li::before { background: var(--purple); }
.ecosystem-panel.community .ecosystem-panel-list li::before { background: var(--blue); }

.ecosystem-panel .btn-ecosystem {
    margin-top: auto;
    align-self: center;
    padding: 12px 22px;
    font-size: 12px;
    border-radius: 0;
}

.ecosystem-stats-band {
    background: var(--navy);
    padding: 56px 0 64px;
}

.ecosystem-stats-inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.ecosystem-stats-intro {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.ecosystem-stats-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.ecosystem-stats-intro p {
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.ecosystem-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 991.98px) {
    .ecosystem-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .ecosystem-stats-intro {
        flex-direction: column;
        text-align: center;
    }

    .ecosystem-stats-grid {
        grid-template-columns: 1fr;
    }
}

.ecosystem-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

.ecosystem-stat img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.ecosystem-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1.2;
}

.ecosystem-stat span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

/* ============================================
   DIVISION BRAND PAGES
   ============================================ */
body.brand-healthcare {
    --brand: #2D8B57;
    --brand-dark: #1f6340;
    --brand-light: #EBF6F0;
    --brand-accent: #7dd3a8;
}

body.brand-muslim {
    --brand: #003f3d;
    --brand-dark: #002a28;
    --brand-light: #E8F4F3;
    --brand-accent: #5eb8b3;
}

body.brand-community {
    --brand: #122C5D;
    --brand-dark: #0c1e3f;
    --brand-light: #EBF3FA;
    --brand-accent: #6b9fd4;
}

/* Division page layout */
.trusted-partners-section {
    background: transparent;
    margin-top: -30px;
    z-index: 10;
    position: relative;
}

.trusted-partners-container {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    border-radius: 0;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.trusted-partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.partner-box {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.partner-box-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0.5rem 0.75rem;
}

.partner-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.partner-box:hover .partner-icon img { transform: scale(1.05); }

.partner-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    text-align: left;
}

.partner-separator {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.22);
    margin: 0 0.5rem;
}

.about-community-edex {
    background: var(--brand-light);
}

.about-community-image-wrapper {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-left: 5px solid var(--brand);
}

.about-community-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-community-image:hover { transform: scale(1.02); }

.about-community-subheading {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand);
    background: rgba(255, 255, 255, 0.75);
    padding: 6px 14px;
    border-radius: 0;
    margin-bottom: 1rem;
    border-left: 3px solid var(--brand);
}

.about-community-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.about-community-paragraph {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.feature-box {
    padding: 0.75rem 0.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid transparent;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--brand);
}

.feature-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-dark);
    margin: 0;
    padding-left: 7px;
    line-height: 1.3;
}

.program-areas-section {
    background: var(--white);
    padding: 5rem 0;
}

.program-areas-section .section-heading .heading-lines::before,
.program-areas-section .section-heading .heading-lines::after {
    background: var(--brand);
}

.program-areas-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.program-areas-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.8rem;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    scrollbar-width: thin;
}

.program-areas-grid::-webkit-scrollbar { height: 5px; }
.program-areas-grid::-webkit-scrollbar-track { background: var(--border-light); }
.program-areas-grid::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 0; }

.program-area-card {
    flex: 0 0 auto;
    width: calc(16.666% - 1.5rem);
    min-width: 230px;
    background: var(--brand-light);
    border-radius: 0;
    padding: 2rem 1.2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--brand);
}

.program-area-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.program-area-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.program-area-card:hover .program-area-icon-img { transform: scale(1.05); }

.program-area-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-area-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.who-its-for-section {
    background: var(--surface);
    padding: 5rem 0;
}

.who-its-for-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.who-its-for-heading {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.who-its-for-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--brand);
    margin-top: 8px;
}

.bullet-list { list-style: none; padding: 0; margin: 0; }

.bullet-list li {
    font-size: 14px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 8px;
}

.bullet-list li i {
    color: var(--brand);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.who-its-for-stats {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
    border-radius: 0;
    padding: 2rem 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.stat-box {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:nth-child(2n) {
    border-right: none;
}

.stat-box:nth-last-child(-n+2) {
    border-bottom: none;
}

.stat-icon {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--brand-accent);
    line-height: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    line-height: 1.45;
    max-width: 9rem;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-box {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-box:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-box:nth-child(4n) {
        border-right: none;
    }

    .stat-box:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

/* Brand-tinted PNG icons on division pages */
body.brand-healthcare .brand-tint-icon {
    filter: brightness(0) saturate(100%) invert(38%) sepia(47%) saturate(650%) hue-rotate(115deg) brightness(92%) contrast(90%);
}

body.brand-muslim .brand-tint-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(28%) saturate(1800%) hue-rotate(142deg) brightness(88%) contrast(96%);
}

body.brand-community .brand-tint-icon {
    filter: brightness(0) saturate(100%) invert(14%) sepia(42%) saturate(1600%) hue-rotate(196deg) brightness(88%) contrast(94%);
}

.program-area-icon {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
    background: var(--brand-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-icon.brand-tint-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* Brand page hero + CTAs */
body.division-page .page-hero .hero-subheading {
    color: var(--brand-accent);
}

body.division-page .page-hero-healthcare::before {
    background: linear-gradient(100deg, rgba(5,24,41,0.94) 0%, rgba(31,99,64,0.82) 45%, rgba(45,139,87,0.55) 100%);
}

body.division-page .page-hero-muslim::before {
    background: linear-gradient(100deg, rgba(5,24,41,0.94) 0%, rgba(0,42,40,0.85) 45%, rgba(0,63,61,0.58) 100%);
}

body.division-page .page-hero-community::before {
    background: linear-gradient(100deg, rgba(5,24,41,0.94) 0%, rgba(12,30,63,0.85) 45%, rgba(18,44,93,0.58) 100%);
}

body.division-page .btn-gold {
    background: var(--brand);
    border: 2px solid var(--brand);
    color: var(--white);
}

body.division-page .btn-gold:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: var(--white);
}

body.division-page .btn-ghost-light:hover {
    border-color: var(--brand-accent);
    color: var(--white);
}

body.division-page .nav-menu .nav-link.active {
    color: var(--brand) !important;
}

body.division-page .nav-menu .nav-link.active::after {
    background: var(--brand);
}

body.division-page .btn-get-started {
    background: var(--brand);
}

body.division-page .btn-get-started:hover {
    background: var(--brand-dark);
}

@media (max-width: 992px) {
    .trusted-partners-grid { flex-direction: column; gap: 1rem; }
    .partner-separator { width: 80%; height: 1px; margin: 0.5rem auto; }
    .partner-box { width: 100%; }
    .who-its-for-stats { margin-top: 2rem; padding: 1.5rem 1rem; }
    .program-areas-section { padding: 3rem 0; }
}

@media (max-width: 768px) {
    .about-community-heading { font-size: 1.6rem; }
    .program-areas-section .container { padding: 0 1rem; }
    .program-area-card { min-width: 180px; }
}

@media (min-width: 1600px) {
    .program-areas-grid { overflow-x: visible; }
    .program-area-card { width: calc(16.666% - 1.5rem); min-width: unset; }
}