/* ============================================
   WHAT WE DO – Enhanced Pillar Design
   ============================================ */

.wwd-pillar {
    padding: 60px 0;
    position: relative;
}

.wwd-pillar--light {
    background: #ffffff;
}

.wwd-pillar--alt {
    background: var(--bg-color, #F7F5F0);
}

.wwd-pillar-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.wwd-pillar-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.10);
}

.wwd-pillar-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wwd-pillar-image:hover img {
    transform: scale(1.03);
}

.wwd-pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brick-red, #BD2E2E);
    background: rgba(189, 46, 46, 0.08);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.wwd-pillar-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700 !important;
    color: var(--near-black, #1A1A1A);
    margin-bottom: 24px;
    line-height: 1.2;
}

.wwd-pillar-title span {
    color: var(--brick-red, #BD2E2E);
}

.wwd-pillar-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.wwd-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.wwd-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    padding: 6px 0;
}

.wwd-feature-list li i {
    color: var(--pear-green, #ADC825);
    margin-top: 4px;
    font-size: 0.85rem;
}

.wwd-collab-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
}

.wwd-collab-tags span {
    background: rgba(173, 200, 37, 0.08);
    border: 1px solid rgba(173, 200, 37, 0.15);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #3a5a00;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.wwd-collab-tags span:hover {
    background: var(--pear-green, #ADC825);
    color: #fff;
    border-color: var(--pear-green, #ADC825);
    transform: translateY(-2px);
}

.wwd-kp-highlight {
    background: linear-gradient(135deg, #fffadb 0%, #f7f5f0 100%);
    border-left: 5px solid var(--golden, #F7D516);
    padding: 24px 30px;
    border-radius: 0 16px 16px 0;
    margin: 24px 0 30px;
}

.wwd-kp-highlight p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
    font-style: italic;
}

.wwd-pillar-cta {
    margin-top: 30px;
}

/* ============================================
   INTEGRATED MODEL - LIGHT THEME
   ============================================ */

.wwd-model-light {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    color: var(--near-black, #1A1A1A);
    position: relative;
}

.wwd-model-light .wwd-model-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--error-color);
    background: rgba(247, 213, 22, 0.12);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 18px;
}

.wwd-model-light .wwd-model-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--near-black, #1A1A1A);
    margin-bottom: 12px;
    line-height: 1.2;
}

.wwd-model-light .wwd-model-title span {
    color: var(--error-color);
}

.wwd-model-light .wwd-model-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.wwd-model-light .wwd-model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.wwd-model-light .wwd-model-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    position: relative;
}

.wwd-model-light .wwd-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--golden, #F7D516);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wwd-model-light .wwd-model-card:hover::before {
    transform: scaleX(1);
}

.wwd-model-light .wwd-model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(242, 214, 46, 0.2);
}

.wwd-model-light .wwd-model-icon {
    width: 60px;
    height: 60px;
    background: var(--golden, #F7D516);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.wwd-model-light .wwd-model-card:hover .wwd-model-icon {
    transform: scale(1.08) rotate(5deg);
}

.wwd-model-light .wwd-model-icon i {
    font-size: 1.4rem;
    color: var(--near-black, #1A1A1A);
}

.wwd-model-light .wwd-model-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black, #1A1A1A);
    margin-bottom: 8px;
}

.wwd-model-light .wwd-model-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.wwd-model-light .wwd-model-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.wwd-model-light .wwd-model-footer p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.wwd-model-light .wwd-model-footer p strong {
    color: var(--golden, #F7D516);
}

/* ========================================================
   IN-SERVICE TEACHER EDUCATION PAGE (.ins-)
   ======================================================== */

/* --- HERO tweaks --- */
.ins-hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* --- Impact Stats (reusing sp-impact-parallax, but override if needed) --- */
.ins-impact-wrapper {
    padding: 0 0 60px;
}

/* --- Approach Grid (4 pillars) --- */
.ins-approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.ins-approach-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ins-approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.ins-approach-icon {
    width: 60px;
    height: 60px;
    background: rgba(242, 214, 46, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--golden);
}

.ins-approach-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 10px;
}

.ins-approach-card p {
    font-size: 0.95rem !important;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- Departments (11 in 4 groups) --- */
.ins-dept-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.ins-dept-group {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ins-dept-group h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--golden);
    display: inline-block;
}

.ins-dept-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ins-dept-tag {
    background: #f5f7fa;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
}

.ins-dept-tag:hover {
    background: var(--golden);
    color: var(--near-black);
    transform: translateY(-2px);
}

/* --- Feature list (for Mentoring/Reflection) --- */
.ins-feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
    margin: 30px 0 0;
}

.ins-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

.ins-feature-list li i {
    color: var(--pear-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* --- NEP/SDG card --- */
.ins-nep-card {
    background: #fffadb;
    border-radius: 24px;
    padding: 40px 35px;
    border-left: 6px solid var(--golden);
    margin-top: 30px;
}

.ins-nep-card h3 {
    font-family: var(--heading-custom);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 16px;
}

.ins-nep-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}

.ins-nep-card strong {
    color: var(--brick-red);
}

/* --- FAQ Accordion (reuse your existing faq-accordion styles if you have, else add) --- */
.ins-faq-item {
    border-bottom: 1px solid #eaeaea;
    padding: 16px 0;
}

.ins-faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    transition: color 0.2s;
}

.ins-faq-question:hover {
    color: var(--pear-green);
}

.ins-faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.ins-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0 0 20px;
    color: #666;
    line-height: 1.6;
}

.ins-faq-item.active .ins-faq-answer {
    max-height: 300px;
    padding: 12px 0 0 20px;
}

.ins-faq-item.active .ins-faq-question i {
    transform: rotate(180deg);
}

/* ── OUR IMPACT SECTION ── */
.ins-impact-section {
    padding: 80px 0;
    background: var(--bg-color, #f5f5f5);
}

.ins-impact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 28px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.ins-impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--pear-green);
}

.ins-impact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(173, 200, 37, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pear-green);
    margin-bottom: 18px;
    flex-shrink: 0;
}

.ins-impact-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ins-impact-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}

.ins-impact-highlight {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pear-green);
    background: rgba(173, 200, 37, 0.08);
    padding: 4px 14px;
    border-radius: 30px;
    align-self: flex-start;
}

.ins-impact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pear-green);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.ins-impact-link:hover {
    gap: 12px;
    color: #7aac00;
}

.ins-impact-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.ins-impact-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   IMPACT PAGE - SCOPED STYLES (prefix: imp-)
   Paste into custom.css. Independent of other pages.
============================================ */

/* ── HERO ── */
.imp-hero {
    position: relative;
    padding: 230px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #03352C 0%, #0a5c4c 100%);
}

.imp-hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
    z-index: 0;
}

.imp-hero-blob-a {
    width: 380px;
    height: 380px;
    background: var(--pear-green);
    top: -100px;
    left: -100px;
}

.imp-hero-blob-b {
    width: 300px;
    height: 300px;
    background: var(--golden);
    bottom: -80px;
    right: -60px;
}

.imp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.imp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--golden);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.imp-hero-title {
    font-family: var(--heading-custom);
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 600;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.imp-hero-title span {
    color: var(--golden);
}

.imp-hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
}

.imp-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.imp-hero-wave svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ── STICKY NAV TABS ── */
.imp-navtabs-wrap {
    position: sticky;
    top: 0;
    z-index: 97;
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.imp-navtabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.imp-navtabs a {
    background: var(--secondary-color, #F7F5F0);
    padding: 12px 22px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.imp-navtabs a:hover {
    background: var(--pear-green);
    color: #fff;
    transform: translateY(-2px);
}

/* ── SECTIONS ── */
.imp-section {
    padding: 60px 0;
    background: #fff;
}

.imp-section-alt {
    padding: 60px 0;
    background: var(--alternate-bg, #fffadb);
}


.imp-heading {
    font-family: var(--heading-custom);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.imp-heading span {
    color: var(--pear-green);
}

.imp-lead {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
}

/* ── STAT CARDS ── */
.imp-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.imp-stat-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: transform .3s ease, box-shadow .3s ease;
}

.imp-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .09);
}

.imp-stat-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
}

.imp-stat-number {
    display: block;
    font-family: var(--sketch-font);
    font-size: 44px;
    font-weight: 800;
    color: var(--brick-red);
    line-height: 1;
    margin-bottom: 10px;
}

.imp-stat-card h5 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.imp-stat-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.imp-col-red .imp-stat-number {
    color: var(--brick-red);
}

.imp-col-green .imp-stat-number {
    color: var(--brick-red);
}

.imp-col-gold .imp-stat-number {
    color: var(--brick-red);
}

/* ── IMAGE + STORY BLOCK ── */
.imp-story-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.imp-story-image {
    flex: 1 1 420px;
    position: relative;
}

.imp-story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.imp-story-badge {
    position: absolute;
    bottom: -22px;
    left: 24px;
    background: #fff;
    border-radius: 16px;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .1);
}

.imp-story-badge i {
    font-size: 22px;
    color: var(--pear-green);
}

.imp-story-badge strong {
    display: block;
    color: var(--primary-color);
    font-size: 15px;
}

.imp-story-badge span {
    font-size: 12px;
    color: #888;
}

.imp-story-content {
    flex: 1 1 420px;
}

.imp-story-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.imp-story-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.imp-story-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.imp-icon-green {
    background: rgba(173, 200, 37, .15);
    color: var(--pear-green);
}

.imp-icon-gold {
    background: rgba(242, 214, 46, .18);
    color: #c9a800;
}

.imp-icon-red {
    background: rgba(189, 46, 46, .1);
    color: var(--brick-red);
}

/* ── VALIDATION PILLS ── */
.imp-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
}

.imp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: .3s;
}

.imp-pill i {
    color: var(--pear-green);
}

.imp-pill:hover {
    background: var(--pear-green);
    color: #fff;
}

.imp-pill:hover i {
    color: #fff;
}

/* ── CTA ── */
.imp-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.imp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
}

.imp-cta .container-xl {
    position: relative;
    z-index: 1;
}


.imp-cta h2 {
    font-family: var(--heading-custom);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.imp-cta h2 span {
    color: var(--golden);
}

.imp-cta p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 32px;
}

.imp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.imp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: .3s;
}

.imp-btn-solid {
    background: var(--pear-green);
    color: #fff;
}

.imp-btn-solid:hover {
    background: #849618;
    transform: translateY(-3px);
}

.imp-btn-outline {
    background: transparent;
    border: 2px solid var(--golden);
    color: var(--golden);
}

.imp-btn-outline:hover {
    background: var(--golden);
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {
    .imp-hero {
        padding: 150px 0 70px;
    }

    .imp-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .imp-navtabs {
        gap: 10px;
    }

    .imp-navtabs a {
        padding: 9px 16px;
        font-size: 13px;
    }
}
/* ============================================
   ANGANWADI PROGRAMME PAGE - SCOPED STYLES (prefix: awp-)
   Paste into custom.css. Independent of other pages.
============================================ */



/* ── STICKY NAV TABS ── */
.awp-navtabs-wrap {
    position: sticky;
    top: 0;
    z-index: 97;
    background: #fff;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.awp-navtabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    overflow-x: auto;
}

.awp-navtabs a {
    background: #f7f5f0;
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    transition: .3s;
}

.awp-navtabs a:hover {
    background: var(--golden);
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ── SECTIONS ── */
.awp-section {
    padding: 60px 0;
    background: #fff;
}

.awp-section-alt {
    padding: 60px 0;
    background: #faf8f5;
}


.awp-heading {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.awp-heading span {
    color: var(--brick-red);
}

.awp-lead {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ── HOW THE MODEL WORKS SECTION ── */
#awp-model {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
    padding: 60px 0 80px;
}

/* ── SLIDER WRAPPER ── */
.awp-model-slider-wrapper {
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── SLIDER ── */
.awp-model-slider {
    overflow: hidden;
    padding: 20px 0 30px;
}

.awp-model-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.awp-model-slider .swiper-slide {
    height: auto;
}

/* ── CARD ── */
.awp-model-card {
    height: 420px;                    /* fixed height – compact but spacious */
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06); */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.awp-model-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1); */
}

/* ── IMAGE SIDE ── */
.awp-model-image {
    flex: 0 0 50%;
    height: 100%;                     /* fill the card height */
    position: relative;
    overflow: hidden;
    background: #eef0f3;
}

.awp-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;               /* cover the area – zoom to fill */
    object-position: center top;     /* show the top part (faces) */
    transition: transform 0.7s ease;
}

.awp-model-card:hover .awp-model-image img {
    transform: scale(1.05);
}

/* subtle gradient overlay on image */
.awp-model-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
    pointer-events: none;
}

/* ── NUMBER BADGE ── */
.awp-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brick-red);
    padding: 10px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(173, 200, 37, 0.3);
    z-index: 2;
}

.awp-card-num {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-family: var(--heading-custom);
}

/* ── CONTENT SIDE ── */
.awp-model-content {
    flex: 0 0 50%;
    padding: 32px 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;                /* allows scrolling if content overflows */
}

.awp-model-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.awp-model-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    overflow-y: auto;               /* in case of long text */
    max-height: 180px;
    padding-right: 4px;
}

/* custom scrollbar for content */
.awp-model-content p::-webkit-scrollbar {
    width: 4px;
}
.awp-model-content p::-webkit-scrollbar-track {
    background: transparent;
}
.awp-model-content p::-webkit-scrollbar-thumb {
    background: var(--pear-green);
    border-radius: 4px;
}

/* ── NAVIGATION ── */
.awp-model-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.awp-model-button-prev,
.awp-model-button-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: var(--primary-color);
    border: 1px solid #eaeef2;
    font-size: 18px;
    flex-shrink: 0;
}

.awp-model-button-prev:hover,
.awp-model-button-next:hover {
    background: var(--pear-green);
    color: #ffffff;
    border-color: var(--pear-green);
    transform: scale(1.05);
}

/* ── PAGINATION ── */
.awp-model-pagination {
    display: flex;
    gap: 10px;
}

.awp-model-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d0d5db;
    opacity: 0.8;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}

.awp-model-pagination .swiper-pagination-bullet-active {
    background: var(--pear-green);
    opacity: 1;
    width: 32px;
    border-radius: 20px;
}

/* ── GLANCE / PHILOSOPHY / MODEL CARDS (shared card look, own class) ── */
.awp-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.awp-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: transform .3s ease, box-shadow .3s ease;
}

.awp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}

.awp-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 18px;
}

.awp-icon-green {
    background: rgba(84, 169, 84, .12);
    color: #3a8a3a;
}

.awp-icon-gold {
    background: rgba(242, 214, 46, .18);
    color: #c9a800;
}

.awp-icon-red {
    background: rgba(212, 56, 56, .1);
    color: #c23030;
}

.awp-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.awp-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Numbered variant for philosophy / model steps */
.awp-card-num {
    font-size: 26px;
    font-weight: 800;
    color: rgba(242, 214, 46, .5);
    display: block;
    margin-bottom: 12px;
}

/* ── STORY / IMAGE BLOCK ── */
.awp-story-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.awp-story-image,
.awp-story-content {
    flex: 1 1 420px;
}

.awp-story-image {
    position: relative;
}

.awp-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

.awp-story-badge {
    position: absolute;
    bottom: -20px;
    left: 22px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.awp-story-badge i {
    font-size: 20px;
    color: var(--golden);
}

.awp-story-badge strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.awp-story-badge span {
    font-size: 11.5px;
    color: #888;
}

/* ── CALLOUT ── */
.awp-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #faf8f5;
    padding: 20px;
    border-radius: 14px;
    border-left: 5px solid var(--golden);
    margin-top: 26px;
}

.awp-callout i {
    font-size: 20px;
    color: #c9a800;
    margin-top: 3px;
}

.awp-callout p {
    margin: 0;
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

/* ── COLLAGE IMAGES ── */
.awp-collage {
    position: relative;
    min-height: 420px;
}

.awp-collage-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.awp-collage-small {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

/* ── BENEFIT LIST ── */
.awp-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.awp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
}

.awp-list-icon {
    width: 26px;
    height: 26px;
    background: #54a954;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FAQ (self-contained accordion, no bootstrap class dependency) ── */
.awp-faq-list {
    max-width: 820px;
    margin: 40px auto 0;
}

.awp-faq-item {
    background: #faf8f5;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.awp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 26px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.awp-faq-q i {
    color: var(--golden);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.awp-faq-item.awp-open .awp-faq-q i {
    transform: rotate(180deg);
}

.awp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 26px;
}

.awp-faq-item.awp-open .awp-faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

.awp-faq-a p {
    margin: 0;
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
}

/* ── CTA ── */
.awp-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.awp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
}

.awp-cta .container-xl {
    position: relative;
    z-index: 1;
}


.awp-cta h2 {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.awp-cta h2 span {
    color: var(--golden);
}

.awp-cta p {
    color: rgba(255, 255, 255, .8);
    font-size: 15.5px;
    max-width: 620px;
    margin: 0 auto 30px;
}

.awp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.awp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: .3s;
}

.awp-btn-solid {
    background: var(--golden);
    color: #1a1a1a;
}

.awp-btn-solid:hover {
    background: #e0bc00;
    transform: translateY(-3px);
}

.awp-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.awp-btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {

    .awp-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .awp-collage-main {
        width: 100%;
    }

    .awp-collage-small {
        width: 150px;
        height: 190px;
    }
}
/* Smooth visual framing for the map container */
.map-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* Ensure Leaflet's popups match your clean font-family and styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
}


/* ── SCHOOLS LIST SECTION ── */
.schools-list-section {
    background: #ffffff;
}

.schools-intro {
    font-size: 17px;
    color: #5f5f5f;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* School Card */
.school-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
}

.school-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--pear-green);
}

.school-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.school-address {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}

.school-address i {
    color: var(--pear-green);
    margin-right: 8px;
    font-size: 16px;
}

.school-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--pear-green);
    text-decoration: none;
    border-top: 1px solid #e9edf2;
    padding-top: 16px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.school-map-link i {
    font-size: 16px;
}

.school-map-link:hover {
    color: #7aac00;
    gap: 12px;
}

/* ============================================
   OUTREACH PAGE - SCOPED STYLES (prefix: out2-)
   Paste into custom.css. Independent of other pages.
============================================ */


.out2-navtabs-wrap {
    position: sticky;
    top: 0;
    z-index: 97;
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.out2-navtabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.out2-navtabs a {
    background: var(--secondary-color, #F7F5F0);
    padding: 11px 20px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    transition: .3s;
}

.out2-navtabs a:hover {
    background: var(--pear-green);
    color: #fff;
    transform: translateY(-2px);
}

.out2-section {
    padding: 60px 0;
    background: #fff;
}

.out2-section-alt {
    padding: 60px 0;
    background: var(--alternate-bg, #fffadb);
}


.out2-heading {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 3.8vw, 42px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.out2-heading span {
    color: var(--pear-green);
}

.out2-lead {
    font-size: 16px;
    color: #666;
    line-height: 1.85;
}

/* story / image blocks */
.out2-story-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.out2-story-image,
.out2-story-content {
    flex: 1 1 420px;
}

.out2-story-image {
    position: relative;
}

.out2-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

.out2-story-badge {
    position: absolute;
    bottom: -20px;
    left: 22px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.out2-story-badge i {
    font-size: 20px;
    color: var(--pear-green);
}

.out2-story-badge strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.out2-story-badge span {
    font-size: 11.5px;
    color: #888;
}

.out2-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.out2-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
}

.out2-list-icon {
    width: 26px;
    height: 26px;
    background: var(--pear-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* what we do card grid */
.out2-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.out2-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: transform .3s ease, box-shadow .3s ease;
}

.out2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}

.out2-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.out2-icon-green {
    background: rgba(173, 200, 37, .14);
    color: var(--pear-green);
}

.out2-icon-gold {
    background: rgba(242, 214, 46, .18);
    color: #c9a800;
}

.out2-icon-red {
    background: rgba(189, 46, 46, .1);
    color: var(--brick-red);
}

.out2-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.out2-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* partner pills */
.out2-pill-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.out2-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    transition: .3s;
}

.out2-pill i {
    color: var(--pear-green);
}

.out2-pill:hover {
    background: var(--pear-green);
    color: #fff;
}

.out2-pill:hover i {
    color: #fff;
}

/* impact stats */
.out2-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.out2-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03);
}

.out2-stat-number {
    display: block;
    /* font-family: var(--caption-custom); */
    font-size: 42px;
    font-weight: 800;
    color: var(--brick-red);
    line-height: 1;
    margin-bottom: 10px;
}

.out2-stat-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* cta */
.out2-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.out2-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
}

.out2-cta .container-xl {
    position: relative;
    z-index: 1;
}


.out2-cta h2 {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.out2-cta h2 span {
    color: var(--golden);
}

.out2-cta p {
    color: rgba(255, 255, 255, .8);
    font-size: 15.5px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.out2-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.out2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: .3s;
}

.out2-btn-solid {
    background: var(--pear-green);
    color: #fff;
}

.out2-btn-solid:hover {
    background: #849618;
    transform: translateY(-3px);
}

.out2-btn-outline {
    background: transparent;
    border: 2px solid var(--golden);
    color: var(--golden);
}

.out2-btn-outline:hover {
    background: var(--golden);
    color: #1a1a1a;
    transform: translateY(-3px);
}

@media (max-width:991px) {

    .out2-card-grid,
    .out2-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   FLN PAGE - SCOPED STYLES (prefix: fln-)
   Paste into custom.css. Independent of other pages.
============================================ */
.fln-navtabs-wrap {
    position: sticky;
    top: 0;
    z-index: 97;
    background: #fff;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.fln-navtabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    overflow-x: auto;
}

.fln-navtabs a {
    background: #f7f5f0;
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    transition: .3s;
}

.fln-navtabs a:hover {
    background: var(--golden);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.fln-section {
    padding: 60px 0;
    background: #fff;
}

.fln-section-alt {
    padding: 60px 0;
    background: #faf8f5;
}


.fln-heading {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.fln-heading span {
    color: var(--brick-red);
}

.fln-lead {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* at a glance chips */
.fln-glance-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.fln-glance-image,
.fln-glance-content {
    flex: 1 1 420px;
}

.fln-glance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

.fln-chip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fln-chip-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.65;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 14px 18px;
}

.fln-chip-icon {
    width: 28px;
    height: 28px;
    background: var(--golden);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* two-pillar cards */
.fln-pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.fln-pillar-card {
    background: #fff;
    border-radius: 22px;
    padding: 34px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .03);
    position: relative;
    overflow: hidden;
}

.fln-pillar-num {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 56px;
    font-weight: 800;
    color: rgba(242, 214, 46, .15);
    line-height: 1;
    font-family: var(--caption-custom);
}

.fln-pillar-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.fln-pillar-tagline {
    font-size: 14px;
    font-weight: 600;
    color: #c9a800;
    margin-bottom: 14px;
    display: block;
}

.fln-pillar-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.fln-pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fln-pillar-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.fln-pillar-card ul li i {
    color: var(--pear-green);
    margin-top: 4px;
    flex-shrink: 0;
}

/* alignment tags */
.fln-align-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.fln-align-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 11px 20px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
}

.fln-align-tag i {
    color: var(--golden);
}


/* partner list */
.fln-partner-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fln-partner-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 14px 22px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-color);
}

.fln-partner-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* CTA */
.fln-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fln-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
}

.fln-cta .container-xl {
    position: relative;
    z-index: 1;
}


.fln-cta h2 {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.fln-cta h2 span {
    color: var(--golden);
}

.fln-cta p {
    color: rgba(255, 255, 255, .8);
    font-size: 15.5px;
    max-width: 620px;
    margin: 0 auto 30px;
}

.fln-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.fln-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: .3s;
}

.fln-btn-solid {
    background: var(--golden);
    color: #1a1a1a;
}

.fln-btn-solid:hover {
    background: #e0bc00;
    transform: translateY(-3px);
}

.fln-btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.fln-btn-outline:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

@media (max-width:991px) {
    .fln-hero {
        padding: 150px 0 60px;
    }

    .fln-pillar-grid {
        grid-template-columns: 1fr;
    }
}
.fln-why-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    background: #f0f2f5;
}

.fln-why-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.fln-why-image-wrapper:hover .fln-why-image {
    transform: scale(1.02);
}

/* ── FLN ALIGNMENT SECTION WITH BG ── */
.fln-alignment-bg {
    position: relative;
    padding: 80px 0;
    background-image: url('../images/fln/fln-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;   /* optional parallax effect */
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}

.fln-alignment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);  /* dark overlay for readability */
    z-index: -1;
}

/* ── Tags styling ── */
.fln-align-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    margin-top: 30px;
}

.fln-align-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.3s ease;
}

.fln-align-tag i {
    color: var(--golden);
    font-size: 18px;
}

.fln-align-tag:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============================================
   HOLISTIC SCHOOLS PROGRAMME PAGE - SCOPED STYLES (prefix: hsp-)
   Paste into custom.css. Independent of other pages.
============================================ */


.hsp-navtabs-wrap {
    position: sticky;
    top: 0;
    z-index: 97;
    background: #fff;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.hsp-navtabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    overflow-x: auto;
}

.hsp-navtabs a {
    background: var(--secondary-color, #F7F5F0);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: .3s;
}

.hsp-navtabs a:hover {
    background: var(--pear-green);
    color: #fff;
    transform: translateY(-2px);
}

.hsp-section {
    padding: 60px 0;
    background: #fff;
}

.hsp-section-alt {
    padding: 60px 0;
    background: var(--alternate-bg, #fffadb);
}


.hsp-heading {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.hsp-heading span {
    color: var(--error-color);
}

.hsp-lead {
    font-size: 16px;
    color: #666;
    line-height: 1.85;
}

/* ── IMPACT STAT GRID ── */
.hsp-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.hsp-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: transform .3s ease, box-shadow .3s ease;
}

.hsp-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}

.hsp-stat-number {
    display: block;
    font-family: var(--sketch-font);
    font-size: 38px;
    font-weight: 800;
    color: var(--brick-red);
    line-height: 1;
    margin-bottom: 10px;
}

.hsp-stat-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ── STORY / IMAGE BLOCKS ── */
.hsp-story-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.hsp-story-image,
.hsp-story-content {
    flex: 1 1 420px;
}

.hsp-story-image {
    position: relative;
}

.hsp-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

.hsp-story-badge {
    position: absolute;
    bottom: -20px;
    left: 22px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.hsp-story-badge i {
    font-size: 20px;
    color: var(--pear-green);
}

.hsp-story-badge strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.hsp-story-badge span {
    font-size: 11.5px;
    color: #888;
}

/* ── HUB & SPOKES ── */
.hsp-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 34px;
}

.hsp-hub-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .03);
}

.hsp-hub-card .hsp-hub-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #c9a800;
    background: rgba(242, 214, 46, .14);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.hsp-hub-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hsp-hub-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ── CHECK LIST ── */
.hsp-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hsp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
}

.hsp-list-icon {
    width: 26px;
    height: 26px;
    background: var(--pear-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── FEATURE GRID (Inside a school) ── */
/* ── HSP INSIDE SECTION WITH BLACK OVERLAY ── */
#hsp-inside {
    position: relative;
    padding: 100px 0;                    /* adjust as needed */
    background-image: url('../images/School-Programme/math-activity.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;        /* optional parallax effect */
    color: #ffffff;                      /* default text color */
    overflow: hidden;
}

/* Black Overlay */
#hsp-inside::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);      /* adjust opacity (0.0 – 1.0) */
    z-index: 1;
    pointer-events: none;                /* allow clicks to pass through */
}

/* Ensure content sits above the overlay */
#hsp-inside .container-xl {
    position: relative;
    z-index: 2;
}

/* Optional: make text white and readable */
#hsp-inside .section-sub-title,
#hsp-inside h2,
#hsp-inside h2 span,
#hsp-inside .hsp-lead,
#hsp-inside .hsp-evidence-list a {
    color: #ffffff;
}



/* If sub-title has a border, adjust it */
#hsp-inside .section-sub-title {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Keep the cards white on hover, but you can adjust */
#hsp-inside .evidence-card {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

#hsp-inside .evidence-card:hover {
    background: var(--pear-green);
    color: #ffffff;
}

.hsp-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hsp-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .03);
}

.hsp-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.hsp-icon-green {
    background: rgba(173, 200, 37, .14);
    color: var(--pear-green);
}

.hsp-icon-gold {
    background: rgba(242, 214, 46, .18);
    color: #c9a800;
}

.hsp-icon-red {
    background: rgba(189, 46, 46, .1);
    color: var(--brick-red);
}

.hsp-feature p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.55;
    margin: 0;
}

/* ── ALIGNMENT TAGS ── */
.hsp-align-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 36px;
}

.hsp-align-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hsp-align-tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hsp-align-tag-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 16px;
}

.hsp-align-tag-list li i {
    color: var(--golden);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── CHILD'S JOURNEY ── */
.hsp-journey-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.hsp-journey-step {
    flex: 1 1 190px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
    border-top: 4px solid var(--pear-green);
}

.hsp-journey-step:nth-child(2) {
    border-top-color: var(--golden);
}

.hsp-journey-step:nth-child(3) {
    border-top-color: var(--brick-red);
}

.hsp-journey-step:nth-child(4) {
    border-top-color: var(--pear-green);
}

.hsp-journey-step:nth-child(5) {
    border-top-color: var(--golden);
}

.hsp-journey-stage {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #999;
    margin-bottom: 8px;
}

.hsp-journey-quote {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hsp-journey-step p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.55;
}

/* ── RIPPLE EFFECT ── */
.hsp-ripple-list {
    counter-reset: hsp-ripple;
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hsp-ripple-list li {
    counter-increment: hsp-ripple;
    position: relative;
    padding: 16px 0 16px 60px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.hsp-ripple-list li:last-child {
    border-bottom: none;
}

.hsp-ripple-list li::before {
    content: counter(hsp-ripple);
    position: absolute;
    left: 0;
    top: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--pear-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

/* ── EVIDENCE CARDS (with arrows) ── */
.hsp-evidence-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 34px auto 0;
}

.evidence-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Left icon */
.evidence-card i:first-child {
    color: var(--pear-green);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Text */
.evidence-card span {
    flex: 1;
    text-align: left;
}

/* ── EVIDENCE IMAGE ── */
.evidence-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.evidence-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.evidence-img:hover {
    transform: scale(1.02);
}

/* ── RIGHT COLUMN ALIGNMENT ── */
#hsp-evidence .hsp-evidence-list {
    max-width: 100%;
    margin: 20px 0 0;
}

/* ── 3‑Card Process Flow ── */
.hs-process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hs-process-card {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hs-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.hs-process-icon {
    font-size: 32px;
    color: var(--pear-green);
    margin-bottom: 12px;
}

.hs-process-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hs-process-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Arrows */
.hs-process-arrow {
    font-size: 24px;
    color: var(--pear-green);
    flex-shrink: 0;
    opacity: 0.7;
}
/* Right arrow */
.card-arrow {
    font-size: 18px;
    color: var(--pear-green);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}

/* Hover effects */
.evidence-card:hover {
    background: var(--pear-green);
    border-color: var(--pear-green);
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(173, 200, 37, 0.25);
}

.evidence-card:hover i:first-child {
    color: #ffffff;
}

.evidence-card:hover .card-arrow {
    opacity: 1;
    color: #ffffff;
    transform: translateX(4px);
}

/* Optional: subtle under‑the‑hood pulse */
.evidence-card:active {
    transform: scale(0.98);
}


/* ── CTA ── */
.hsp-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hsp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
}

.hsp-cta .container-xl {
    position: relative;
    z-index: 1;
}


.hsp-cta h2 {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.hsp-cta h2 span {
    color: var(--golden);
}

.hsp-cta p {
    color: rgba(255, 255, 255, .8);
    font-size: 15.5px;
    max-width: 620px;
    margin: 0 auto 30px;
}

.hsp-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hsp-cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50px;
    padding: 13px 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.hsp-cta-list li i {
    color: var(--golden);
    flex-shrink: 0;
}

.hsp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hsp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: .3s;
}

.hsp-btn-solid {
    background: var(--pear-green);
    color: #fff;
}

.hsp-btn-solid:hover {
    background: #849618;
    transform: translateY(-3px);
}

.hsp-btn-outline {
    background: transparent;
    border: 2px solid var(--golden);
    color: var(--golden);
}

.hsp-btn-outline:hover {
    background: var(--golden);
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* ── RESPONSIVE ── */
@media (max-width:991px) {

    .hsp-stat-grid,
    .hsp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hsp-hub-grid,
    .hsp-align-cols {
        grid-template-columns: 1fr;
    }

    .hsp-journey-step {
        flex: 1 1 45%;
    }
}

/* ==========================================================================
   Premium Protected Navbar Namespace (Eliminates All Theme Conflicts)
   ========================================================================== */
.pm-header-global {
    width: 100%;
    background-color: var(--white-color) !important;
    position: relative;
    z-index: 99999 !important;
}

.pm-nav-container {
    background-color: var(--white-color) !important;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.015) !important;
}

.pm-navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 0 !important;
    position: relative !important;
}

.pm-brand img {
    height: 70px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Menu Containers Layout */
.pm-navigation-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-grow: 1 !important;
    margin-left: 30px !important;
}

.pm-nav-list {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 2px !important;
}

.pm-nav-item {
    position: relative !important;
    padding: 10px 0 !important;
}

/* ==========================================================================
   Main Parent Links Menu
   ========================================================================== */
.pm-nav-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #3A3A3A !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.pm-nav-link:hover,
.pm-nav-item:hover>.pm-nav-link {
    color: var(--primary-color) !important;
    background-color: rgba(0, 0, 0, 0.035) !important;
}

.pm-nav-link.pm-active {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.pm-arrow {
    font-size: 9px !important;
    opacity: 0.6 !important;
    transition: transform 0.2s ease !important;
}

.pm-nav-item:hover .pm-arrow {
    transform: rotate(180deg) !important;
}

/* ==========================================================================
   Floating Modern Island Dropdown Block (Ruul Style Visuals)
   ========================================================================== */
.pm-floating-panel {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(12px) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    /* Soft premium glass effect */
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    min-width: 760px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    padding: 26px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
}

/* Custom Width Configurations */
.pm-floating-panel.pm-wide-1000 {
    min-width: 980px !important;
}

.pm-floating-panel.pm-mid-width {
    min-width: 500px !important;
}

.pm-floating-panel.pm-single-width {
    min-width: 280px !important;
    left: 0 !important;
    transform: translateX(0) translateY(12px) !important;
    padding: 16px !important;
}

/* Smooth Floating Animations */
.pm-nav-item:hover .pm-floating-panel {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-25%) translateY(0) !important;
    pointer-events: auto !important;
}

.pm-nav-item:hover .pm-floating-panel.pm-single-width {
    transform: translateX(0) translateY(0) !important;
}

/* ==========================================================================
   Grids & Content Framework
   ========================================================================== */
.pm-mega-grid {
    display: grid !important;
    gap: 24px !important;
}

.pm-col-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}

.pm-col-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.pm-col-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* Grid Separator Lines */
.pm-col-2 .pm-mega-column:not(:last-child),
.pm-col-3 .pm-mega-column:not(:last-child),
.pm-col-4 .pm-mega-column:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding-right: 14px !important;
}

.pm-mega-column {
    display: flex !important;
    flex-direction: column !important;
}

.pm-column-header {
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    font-weight: 700 !important;
    color: #9A9A9A !important;
    margin-bottom: 12px !important;
    padding-left: 10px !important;
}

.pm-column-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

/* Sub Links Base */
.pm-column-links li a {
    font-family: var(--default-font) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #555555 !important;
    padding: 8px 12px !important;
    display: block !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.18s ease !important;
}

.pm-column-links li a:hover {
    color: var(--primary-color) !important;
    background-color: var(--secondary-color) !important;
    transform: translateX(3px) !important;
}

/* Premium Visual Elements */
.pm-highlight-text {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.pm-divider-li {
    height: 1px !important;
    background: rgba(0, 0, 0, 0.05) !important;
    margin: 8px 0 !important;
}

.pm-icon {
    color: var(--pear-green) !important;
    margin-right: 8px !important;
    font-size: 13px !important;
}

/* Holistic Card Component Feature */
.pm-card-link {
    background-color: rgba(173, 200, 37, 0.06) !important;
    border: 1px solid rgba(173, 200, 37, 0.15) !important;
    padding: 10px 12px !important;
    margin-bottom: 4px !important;
}

.pm-card-link strong {
    display: block !important;
    font-size: 14.5px !important;
    color: var(--primary-color) !important;
}

.pm-desc {
    display: block !important;
    font-size: 11px !important;
    color: #777777 !important;
    margin-top: 2px !important;
    font-weight: 400 !important;
}

/* ==========================================================================
   Premium Accent Call-To-Action Button
   ========================================================================== */
.pm-action-block {
    display: flex !important;
    align-items: center !important;
    margin-left: 12px !important;
}

.pm-btn-donate {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background-color: var(--brick-red) !important;
    color: var(--white-color) !important;
    padding: 11px 24px !important;
    border-radius: 100px !important;
    text-decoration: none !important;
    transition: all 0.22s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.pm-btn-donate:hover {
    background-color: var(--pear-green) !important;
    color: var(--primary-color) !important;
    transform: translateY(-1.5px) !important;
    box-shadow: 0 6px 20px rgba(173, 200, 37, 0.25) !important;
}

/* ==========================================================================
   Mobile/Tablet Hamburger Toggle Button Styling
   ========================================================================== */
.pm-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100001;
}

.pm-menu-toggle .hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: #1A1A1A;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transform to Close Icon (X) when menu is open */
.pm-menu-toggle.pm-open .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.pm-menu-toggle.pm-open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.pm-menu-toggle.pm-open .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   Media Query for Tablets and Mobile Devices (1024px and down)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .pm-menu-toggle {
        display: flex !important;
        /* Reveal toggle */
    }

    /* Transform the layout wrapper into a side overlay drawer drawer */
    .pm-navigation-wrapper {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        /* Hides it off-screen initially */
        width: 320px !important;
        height: 100vh !important;
        background-color: #FFFFFF !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding: 80px 24px 40px 24px !important;
        margin: 0 !important;
        overflow-y: auto !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 100000 !important;
    }

    /* JavaScript Class Toggle Action */
    .pm-navigation-wrapper.pm-mobile-active {
        right: 0 !important;
        /* Slides menu smoothly into view */
    }

    .pm-nav-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 10px !important;
        margin-bottom: 30px !important;
    }

    .pm-nav-item {
        width: 100% !important;
        padding: 0 !important;
    }

    .pm-nav-link {
        width: 100% !important;
        justify-content: space-between !important;
        font-size: 16px !important;
        padding: 12px !important;
        background-color: rgba(0, 0, 0, 0.01) !important;
    }

    /* ==========================================================================
       Responsive Dropdown Adaptations (Accordion Format)
       ========================================================================== */
    .pm-floating-panel {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        min-width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 2px solid var(--pear-green) !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border-radius: 0 8px 8px 0 !important;
        padding: 10px 14px !important;
        margin-top: 5px !important;
        display: none !important;
        /* Handled via Javascript Toggle */
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    /* Reveal dropdown when container is flagged active */
    .pm-nav-item.pm-mobile-dropdown-open .pm-floating-panel {
        display: block !important;
        transform: translateX(-2%) translateY(0) !important;
    }

    .pm-nav-item.pm-mobile-dropdown-open .pm-arrow {
        transform: rotate(180deg) !important;
    }

    /* Convert multi-columns grids into flat sequential lists */
    .pm-mega-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .pm-mega-grid.col-3 .pm-mega-column:not(:last-child),
    .pm-mega-grid.col-4 .pm-mega-column:not(:last-child),
    .pm-col-2 .pm-mega-column:not(:last-child) {
        border-right: none !important;
        padding-right: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding-bottom: 14px !important;
    }

    .pm-column-header {
        padding-left: 0 !important;
        margin-bottom: 8px !important;
    }

    .pm-column-links li a {
        padding: 6px 0 !important;
    }

    .pm-column-links li a:hover {
        transform: none !important;
        background: none !important;
    }

    .pm-action-block {
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: auto !important;
        /* Pushes button to bottom of drawer */
    }

    .pm-btn-donate {
        width: 100% !important;
        text-align: center !important;
        padding: 14px !important;
    }
}


/* ── Mobile Actions Container ── */
.pm-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto; /* push to the right */
}

/* ── Mobile Donate Button ── */
.pm-btn-donate-mobile {
    display: none; /* hidden by default (desktop) */
}

/* ── Show on mobile/tablet ── */
@media (max-width: 1024px) {
    .pm-btn-donate-mobile {
        display: inline-flex;
        padding: 8px 18px;
        font-size: 14px;
        border-radius: 30px;
        background: var(--golden);
        color: var(--primary-color);
        font-weight: 700;
        text-decoration: none;
        transition: background 0.25s ease, transform 0.2s ease;
    }
    .pm-btn-donate-mobile:hover {
        background: var(--pear-green);
        color: #fff;
        transform: scale(1.04);
    }
}

/* ── Hide the donate button inside the action block on mobile ── */
@media (max-width: 1024px) {
    .pm-action-block .pm-btn-donate {
        display: none;
    }
}

/* ── Ensure desktop action block shows on larger screens ── */
@media (min-width: 1025px) {
    .pm-mobile-actions .pm-btn-donate-mobile {
        display: none !important;
    }
    .pm-action-block .pm-btn-donate {
        display: inline-flex;
    }
}

/* ── Hamburger stays on the right ── */
.pm-menu-toggle {
    /* existing styles */
}

/* ========================================================
   SCHOOL TRANSFORMATION PROGRAMME PAGE
   Fully isolated namespace: .stp-*
   Nothing here reads from or is read by any other page's
   classes (sp-, hsp-, ra-, pw-, gi-, out2-, hero-section, etc).
   Safe to edit without affecting any other page, and vice versa.
   ======================================================== */


/* ── BUTTONS ── */
.stp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: .3s;
    border: 2px solid transparent;
}

.stp-btn-solid {
    background: var(--pear-green);
    color: #fff;
}

.stp-btn-solid:hover {
    background: #849618;
    transform: translateY(-3px);
    color: #fff;
}

.stp-btn-outline {
    background: transparent;
    border-color: var(--golden);
    color: var(--golden);
}

.stp-btn-outline:hover {
    background: var(--golden);
    color: #1a1a1a;
    transform: translateY(-3px);
}

.stp-btn-outline-light {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.stp-btn-outline-light:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* ── STICKY NAV TABS ── */
.stp-navtabs-wrap {
    position: sticky;
    top: 0;
    z-index: 97;
    background: #fff;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.stp-navtabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    overflow-x: auto;
}

.stp-navtabs a {
    background: #f7f5f0;
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13.5px;
    white-space: nowrap;
    text-decoration: none;
    transition: .3s;
}

.stp-navtabs a:hover {
    background: var(--pear-green);
    color: #fff;
    transform: translateY(-2px);
}

/* ── SECTION SHELLS ── */
.stp-section {
    padding: 60px 0;
    background: #fff;
}

.stp-section-alt {
    padding: 60px 0;
    background: #faf8f5;
}


.stp-heading {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.stp-heading span {
    color: var(--pear-green);
}

.stp-lead {
    font-size: 16px;
    color: #666;
    line-height: 1.85;
}

.stp-footnote {
    text-align: center;
    font-size: 12.5px;
    color: #999;
    margin-top: 30px;
}

/* ── IMPACT STATS ── */
.stp-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stp-stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    text-align: center;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .03);
    transition: transform .3s ease, box-shadow .3s ease;
}

.stp-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .09);
}

.stp-stat-number {
    display: block;
    font-family: var(--sketch-font);
    font-size: 40px;
    font-weight: 800;
    color: var(--brick-red);
    line-height: 1;
    margin-bottom: 12px;
}

.stp-stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ── STORY / IMAGE BLOCK ── */
.stp-story-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.stp-story-image,
.stp-story-content {
    flex: 1 1 420px;
}

.stp-story-image {
    position: relative;
}

.stp-story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
    display: block;
}

.stp-story-badge {
    position: absolute;
    bottom: -20px;
    left: 22px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.stp-story-badge i {
    font-size: 20px;
    color: var(--pear-green);
}

.stp-story-badge strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}

.stp-story-badge span {
    font-size: 11.5px;
    color: #888;
}

.stp-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stp-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
}

.stp-list-icon {
    width: 26px;
    height: 26px;
    background: var(--pear-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── PULL QUOTE ── */
.stp-quote {
    max-width: 820px;
    margin: 50px auto 0;
    background: #fffadb;
    padding: 28px 40px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border: 1px solid rgba(0, 0, 0, .03);
    text-align: center;
    flex-wrap: wrap;
}

.stp-quote i {
    font-size: 28px;
    color: var(--pear-green);
    flex-shrink: 0;
}

.stp-quote p {
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    margin: 0;
}

.stp-quote span {
    display: block;
    width: 100%;
    color: var(--brick-red);
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ── FOUR LEVERS CARDS ── */
.stp-lever-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stp-lever-card {
    position: relative;
    border-radius: 20px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: default;
    transition: transform .4s ease;
}

.stp-lever-card:hover {
    transform: translateY(-8px);
}

.stp-lever-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease, opacity .45s ease;
}

.stp-lever-card:hover .stp-lever-backdrop {
    transform: scale(1.08);
    opacity: .18;
}

.stp-lever-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, .85) 100%);
    transition: opacity .4s ease;
}

.stp-theme-green::before,
.stp-theme-gold::before,
.stp-theme-red::before,
.stp-theme-pear::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
}

.stp-theme-green::before {
    background: #146b36;
}

.stp-theme-gold::before {
    background: var(--golden);
}

.stp-theme-red::before {
    background: var(--brick-red);
}

.stp-theme-pear::before {
    background: var(--pear-green);
}

.stp-lever-card:hover::before {
    opacity: 1;
}

.stp-lever-card:hover::after {
    opacity: 0;
}

.stp-lever-content {
    position: relative;
    z-index: 2;
}

.stp-lever-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 8px;
}

.stp-lever-title {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stp-lever-desc {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
}

.stp-lever-desc p {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.stp-lever-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
}

.stp-theme-gold:hover .stp-lever-title,
.stp-theme-gold:hover .stp-lever-tag,
.stp-theme-gold:hover .stp-lever-desc p {
    color: #1a1a1a;
}

.stp-theme-gold:hover .stp-lever-arrow {
    background: rgba(0, 0, 0, .12);
    color: #1a1a1a;
}

.stp-theme-pear:hover .stp-lever-title,
.stp-theme-pear:hover .stp-lever-tag,
.stp-theme-pear:hover .stp-lever-desc p {
    color: #fff;
}

/* ── HOW IT WORKS: STAGGERED METHOD GRID (5 items) ── */
.stp-method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    margin-top: 20px;
}

.stp-method-offset {
    transform: translateY(40px);
}

.stp-method-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px 30px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
    border: 1px solid rgba(0, 0, 0, .02);
    transition: transform .3s ease, box-shadow .3s ease;
}

.stp-method-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.stp-method-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.stp-method-card p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.stp-method-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    border: 5px solid #fff;
    transition: transform .3s ease;
}

.stp-method-card:hover .stp-method-icon {
    transform: translateX(-50%) scale(1.1);
}

.stp-icon-green {
    background: var(--pear-green);
}

.stp-icon-red {
    background: var(--error-color, var(--brick-red));
}

.stp-icon-gold {
    background: var(--golden);
}

/* ── PROVEN IN THE FIELD: CASE CARDS ── */
.stp-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stp-case-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04), 0 2px 10px rgba(0, 0, 0, .02);
    transition: all .35s ease;
}

.stp-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08), 0 5px 20px rgba(0, 0, 0, .04);
}

.stp-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 28px 0 100%;
    opacity: .1;
}

.stp-case-green::before {
    background: var(--pear-green);
}

.stp-case-gold::before {
    background: var(--golden);
}

.stp-case-red::before {
    background: var(--brick-red);
}

.stp-case-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.stp-case-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .12);
}

.stp-case-icon-green {
    background: var(--pear-green);
}

.stp-case-icon-gold {
    background: var(--golden);
}

.stp-case-icon-red {
    background: var(--brick-red);
}

.stp-case-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
}

.stp-case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.stp-case-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #555;
    font-size: 14.5px;
    line-height: 1.7;
}

.stp-case-card li:last-child {
    margin-bottom: 0;
}

.stp-case-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--pear-green);
}

/* ── NEP / SDG ALIGNMENT ── */
.stp-align-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 36px;
}

.stp-align-col h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stp-align-col h4 i {
    color: var(--golden);
}

.stp-align-col-alt h4 i {
    color: var(--pear-green);
}

.stp-align-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stp-align-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 16px;
}

.stp-align-list li i {
    color: var(--golden);
    margin-top: 3px;
    flex-shrink: 0;
}

.stp-align-col-alt .stp-align-list li i {
    color: var(--pear-green);
}

/* ── FAQ (self-contained, no bootstrap dependency) ── */
.stp-faq-list {
    max-width: 820px;
    margin: 40px auto 0;
}

.stp-faq-item {
    background: #faf8f5;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.stp-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 26px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.stp-faq-q i {
    color: var(--golden);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.stp-faq-item.stp-open .stp-faq-q i {
    transform: rotate(180deg);
}

.stp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 26px;
}

.stp-faq-item.stp-open .stp-faq-a {
    max-height: 300px;
    padding-bottom: 20px;
}

.stp-faq-a p {
    margin: 0;
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
}

/* ── PARTNER OPPORTUNITY CARDS ── */
.stp-opp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stp-opp-card {
    border-radius: 24px;
    padding: 40px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    border: 2px solid transparent;
    transition: all .35s ease;
}

.stp-opp-green {
    background: linear-gradient(135deg, rgba(84, 169, 84, .04), rgba(173, 200, 37, .06));
}

.stp-opp-gold {
    background: linear-gradient(135deg, rgba(242, 214, 46, .06), rgba(255, 180, 0, .08));
}

.stp-opp-red {
    background: linear-gradient(135deg, rgba(212, 56, 56, .04), rgba(255, 100, 100, .06));
}

.stp-opp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
    background: #fff;
}

.stp-opp-green:hover {
    border-color: var(--pear-green);
}

.stp-opp-gold:hover {
    border-color: var(--golden);
}

.stp-opp-red:hover {
    border-color: var(--brick-red);
}

.stp-opp-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.stp-opp-card:hover .stp-opp-icon {
    transform: scale(1.1) rotate(-5deg);
}

.stp-opp-green .stp-opp-icon {
    background: rgba(84, 169, 84, .12);
    color: #3a8a3a;
}

.stp-opp-gold .stp-opp-icon {
    background: rgba(242, 214, 46, .18);
    color: #c9a800;
}

.stp-opp-red .stp-opp-icon {
    background: rgba(212, 56, 56, .1);
    color: #c23030;
}

.stp-opp-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
}

.stp-opp-card p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    flex: 1;
    line-height: 1.7;
}

.stp-opp-link {
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s ease;
}

.stp-opp-green .stp-opp-link {
    color: #3a8a3a;
}

.stp-opp-gold .stp-opp-link {
    color: #c9a800;
}

.stp-opp-red .stp-opp-link {
    color: #c23030;
}

.stp-opp-card:hover .stp-opp-link {
    gap: 10px;
}

/* ── FINAL CTA ── */
.stp-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stp-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .72);
}

.stp-cta-inner {
    position: relative;
    z-index: 1;
}


.stp-cta-title {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.stp-cta-title span {
    color: var(--golden);
}

.stp-cta-text {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 32px;
}

.stp-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ── How It Works – With Background Image ──────────── */

.stp-method-bg {
    position: relative;
    background-image: url(../images/school-transformation/tech.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
}

/* Dark overlay */
.stp-method-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Ensure content is above overlay */
.stp-method-bg .container-xl {
    position: relative;
    z-index: 2;
}

/* ── Glass Cards ── */
.stp-method-bg .stp-method-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stp-method-bg .stp-method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.stp-method-bg .stp-method-card p {
    color: rgba(255, 255, 255, 0.9);
}

.stp-method-bg .stp-method-card p strong {
    color: #fff;
}

/* ========================================
   CHILD'S JOURNEY — Growth Chart Style
   ======================================== */

.child-journey-section {
    padding: 90px 0 70px;
    background: linear-gradient(145deg, #ffffff 0%, #f9f7f2 100%);
    overflow: hidden;
    position: relative;
}

.cj-growth-wrap {
    position: relative;
    max-width: 1150px;
    margin: 50px auto 30px;
    padding: 20px 40px 0;
}

/* Seedling / Tree bookends */
.cj-growth-start-icon,
.cj-growth-end-icon {
    position: absolute;
    bottom: 60px;
    font-size: 28px;
    opacity: 0.85;
}

.cj-growth-start-icon {
    left: -6px;
    color: var(--pear-green);
}

.cj-growth-end-icon {
    right: -6px;
    color: var(--pear-green);
    font-size: 34px;
}

/* ---- Photos row (aligned at bottom = growth baseline) ---- */
.cj-growth-track {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.cj-step {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cj-step-photo {
    position: relative;
    border-radius: 50%;
    border: 4px solid var(--cj-color);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    overflow: visible;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cj-step-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.cj-step:hover .cj-step-photo {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

/* Size progression — literally shows the child "growing" */
.cj-scale-1 .cj-step-photo { width: clamp(70px, 7vw, 96px);  height: clamp(70px, 7vw, 96px); }
.cj-scale-2 .cj-step-photo { width: clamp(84px, 8vw, 116px); height: clamp(84px, 8vw, 116px); }
.cj-scale-3 .cj-step-photo { width: clamp(98px, 9vw, 136px); height: clamp(98px, 9vw, 136px); }
.cj-scale-4 .cj-step-photo { width: clamp(112px, 10vw, 156px); height: clamp(112px, 10vw, 156px); }
.cj-scale-5 .cj-step-photo { width: clamp(126px, 11vw, 180px); height: clamp(126px, 11vw, 180px); }

/* Final stage gets a subtle celebratory pulse ring */
.cj-step-photo-final::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--pear-green);
    opacity: 0.5;
    animation: cjPulseRing 2.4s ease-in-out infinite;
}

@keyframes cjPulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.12); opacity: 0; }
}

/* Number badge */
.cj-step-num {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--cj-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    font-family: var(--heading-custom);
}

/* Icon badge */
.cj-step-icon {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: var(--cj-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border: 2px solid var(--cj-color);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

/* ---- Baseline connecting the circles ---- */
.cj-baseline {
    position: relative;
    height: 3px;
    margin: 0 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--golden), var(--pear-green), var(--brick-red), var(--golden), var(--pear-green));
    z-index: 1;
}

/* ---- Labels row (below baseline) ---- */
.cj-labels-track {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
}

.cj-label {
    flex: 1;
    text-align: center;
    padding: 0 4px;
}

.cj-label h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 6px;
}

.cj-label p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    font-style: italic;
    margin: 0;
}

.cj-cta {
    margin-top: 30px;
}

/* ========================================
   NEP & SDG SECTION
   ======================================== */

.nep-sdg-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f0 100%);
    position: relative;
    overflow: hidden;
}

.nep-sdg-intro h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--near-black);
    margin: 24px 0 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--golden);
    display: inline-block;
}

/* SDG Grid – 5 items, responsive */
.sdg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

/* For 5 items, we want 3 in first row, 2 in second, centered */
.sdg-grid .sdg-item:nth-child(4),
.sdg-grid .sdg-item:nth-child(5) {
    grid-column: span 1;
}

/* But to center them, we can use a different approach: use flex with wrap */
.sdg-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.sdg-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 180px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sdg-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(242, 214, 46, 0.2);
}

.sdg-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    /* border-radius: 50%; */
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.sdg-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sdg-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--near-black);
    margin: 8px 0 4px;
    line-height: 1.3;
}

/* ── Get Involved – Ways List ── */
.gi-ways-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 24px 0 30px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gi-way-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    width: 100%;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gi-way-item:last-child {
    border-bottom: none;
}

.gi-way-item i {
    font-size: 1.2rem;
    color: #F2D62E;
    width: 28px;
    flex-shrink: 0;
    text-align: center;
    font-weight: 900;
}

/* banner-buttons + btn-outline = white button with border */

/* ========================================
   PROBLEM & DIFFERENT – ALTERNATING LAYOUT
   ======================================== */

.problem-different-section {
    padding: 60px 0 60px;
    background: linear-gradient(145deg, #ffffff 0%, #f9f7f2 100%);
    position: relative;
    overflow: hidden;
}

.pd-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pd-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.10);
}

.pd-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pd-image-wrapper:hover .pd-image {
    transform: scale(1.03);
}

.pd-content {
    padding: 10px 0;
}

.pd-content .section-sub-title {
    margin-bottom: 18px;
}

.pd-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pd-content h2 span {
    color: var(--golden);
}

.pd-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.pd-text:last-child {
    margin-bottom: 0;
}

.pd-text.highlight {
    font-style: italic;
    color: var(--brick-red);
    font-weight: 500;
    padding-left: 16px;
    border-left: 3px solid var(--golden);
    margin-top: 10px;
}

.pd-cta {
    margin-top: 24px;
}

.pd-cta .btn-default {
    /* Uses your existing .btn-default styles */
    background: var(--gradient, linear-gradient(135deg, #F2D62E, #ADC825));
    color: var(--near-black);
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pd-cta .btn-default:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(242, 214, 46, 0.3);
}
/* ========================================
   RIPPLE EFFECT SECTION (with images)
   ======================================== */

.ripple-effect-section {
    padding: 80px 0;
    background: linear-gradient(145deg, #ffffff 0%, #f9f7f2 100%);
}

.ripple-chain {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 10px;
    margin-top: 20px;
    padding: 20px 0;
}

.ripple-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 18px 16px;
    min-width: 80px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ripple-item:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 32px rgba(242, 214, 46, 0.12);
    border-color: rgba(242, 214, 46, 0.3);
}

/* Image styles */
.ripple-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.ripple-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.ripple-item:hover .ripple-img {
    transform: scale(1.1);
}

.ripple-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--near-black);
    text-align: center;
    line-height: 1.2;
}

.ripple-arrow {
    font-size: 1.8rem;
    color: var(--golden);
    font-weight: 300;
    flex-shrink: 0;
    padding: 0 4px;
    transition: transform 0.3s ease;
}

.ripple-item:hover + .ripple-arrow {
    transform: translateX(6px);
}

.ripple-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: center;
    max-width: 180px;
    margin: 6px auto 0;
    font-weight: 400;
}

/* ========================================================
   RESEARCH & ADVOCACY PAGE - ISOLATED STYLES (prefix: rna-)
   Paste this whole block into custom.css.
   Does NOT reuse or override any other page's classes.
   Only the page markup reuses: .hero-section (+ blobs/floating
   stars/breadcrumb), .awp-faq-* (FAQ accordion), and .btn-default
   (buttons) which already exist globally in your CSS.
   ======================================================== */

/* ── SECTION SHELLS ── */
.rna-section {
    padding: 60px 0;
    background: #ffffff;
}

.rna-section-alt {
    padding: 60px 0;
    background: var(--alternate-bg, #fffadb);
}

.rna-section-tight {
    padding-top: 0;
}

/* ── TITLES ── */

.rna-heading {
    font-family: var(--heading-custom);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 16px;
}

.rna-heading span {
    color: var(--brick-red);
}

.rna-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 18px;
}

.rna-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.rna-text p:last-child {
    margin-bottom: 0;
}

.rna-text strong {
    color: var(--brick-red);
    font-weight: 700;
}

.rna-text-border {
    border-left: 4px solid var(--pear-green);
    padding-left: 22px;
}

/* ── IMAGE BLOCK (with offset colour panel) ── */
.rna-image-wrap {
    position: relative;
    z-index: 1;
}

.rna-image-wrap img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.rna-image-wrap:hover img {
    transform: translateY(-5px);
}

.rna-image-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 18px;
    left: -18px;
    border-radius: 20px;
    background: var(--pear-green);
    z-index: 0;
}

.rna-image-wrap.rna-img-gold::before {
    background: var(--golden);
}

.rna-image-wrap.rna-img-red::before {
    background: var(--brick-red);
}

/* ── AT-A-GLANCE CHECKLIST ── */
.rna-glance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.rna-glance-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #faf8f5;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.rna-glance-item i {
    color: var(--pear-green);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}


/* ── UNIVERSITY / COLLABORATOR TAGS ── */
.rna-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.rna-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(173, 200, 37, 0.08);
    border: 1px solid rgba(173, 200, 37, 0.2);
    border-radius: 40px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.rna-tag i {
    color: var(--pear-green);
}

.rna-tag:hover {
    background: var(--pear-green);
    color: #fff;
    border-color: var(--pear-green);
    transform: translateY(-2px);
}

.rna-tag:hover i {
    color: #fff;
}

/* ── HIGHLIGHT / STUDY BOX ── */
.rna-highlight-box {
    background: #fffadb;
    border-left: 6px solid var(--golden);
    border-radius: 0 20px 20px 0;
    padding: 32px 36px;
    margin-top: 40px;
}

.rna-highlight-box h4 {
    font-family: var(--heading-custom);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.rna-highlight-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
}

.rna-highlight-box p:last-child {
    margin-bottom: 0;
}

.rna-highlight-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 20px 0;
}

/* ── ETHICS COMMITTEE MEMBER LIST ── */
.rna-member-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rna-member-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 18px;
}

.rna-member-list li i {
    color: var(--brick-red);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ── ADVOCACY CHANNEL CARDS ── */
.rna-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.rna-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rna-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.rna-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.rna-card-icon.rna-ic-green {
    background: rgba(173, 200, 37, 0.14);
    color: var(--pear-green);
}

.rna-card-icon.rna-ic-gold {
    background: rgba(242, 214, 46, 0.18);
    color: #c9a800;
}

.rna-card-icon.rna-ic-red {
    background: rgba(189, 46, 46, 0.1);
    color: var(--brick-red);
}

.rna-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.rna-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}
/* ── KEY MILESTONES ── */
.rna-milestone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.rna-milestone-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
}

.rna-milestone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08), 0 5px 20px rgba(0, 0, 0, 0.04);
}

.rna-milestone-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 0 26px 0 100%;
    opacity: 0.11;
}

.rna-m-green::before { background: var(--pear-green); }
.rna-m-gold::before  { background: var(--golden); }
.rna-m-red::before   { background: var(--brick-red); }

.rna-milestone-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.rna-milestone-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.rna-m-green .rna-milestone-icon { background: var(--pear-green); }
.rna-m-gold .rna-milestone-icon  { background: var(--golden); }
.rna-m-red .rna-milestone-icon   { background: var(--brick-red); }

.rna-milestone-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--primary-color);
}

.rna-milestone-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.rna-milestone-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.rna-milestone-card li:last-child {
    margin-bottom: 0;
}

.rna-milestone-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.rna-m-green li::before { color: #9ac12d; }
.rna-m-gold li::before  { color: #f4c542; }
.rna-m-red li::before   { color: #d43b3b; }

/* ── WHY IT MATTERS PULL QUOTE ── */
.rna-pull-quote {
    max-width: 820px;
    margin: 40px auto 0;
    text-align: center;
    background: #faf8f5;
    border-radius: 100px;
    padding: 26px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.rna-pull-quote p {
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
}


/* ── FINAL CTA BANNER (fixed background) ── */
.rna-cta {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rna-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.72);
}

.rna-cta-inner {
    position: relative;
    z-index: 1;
}


.rna-cta-title {
    font-family: var(--heading-custom);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.rna-cta-title span {
    color: var(--golden);
}

.rna-cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 32px;
}

.rna-cta-btns {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
/* ========================================================
   RESEARCH & PUBLICATIONS LIBRARY - ISOLATED STYLES (prefix: pub-)
   Paste this whole block into custom.css.
   Does NOT reuse or override any other page's classes.
   The page markup only reuses globally shared components:
   .hero-section (+ blobs / floating-stars / breadcrumb).
   ======================================================== */

/* ── SECTION SHELLS ── */
.pub-section {
    padding: 90px 0 60px;
    background: #ffffff;
}

.pub-section-alt {
    padding: 40px 0 90px;
    background: var(--alternate-bg, #fffadb);
}
/* ── TITLES ── */

.pub-heading {
    font-family: var(--heading-custom);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 18px;
}

.pub-heading span {
    color: var(--brick-red);
}

.pub-intro-text p {
    font-size: 16.5px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.pub-intro-text p:last-child {
    margin-bottom: 0;
}

/* ── FILTER BAR ── */
.pub-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.pub-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pub-filter-btn i {
    color: var(--pear-green);
    font-size: 13px;
}

.pub-filter-count {
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 2px;
}

.pub-filter-btn.active,
.pub-filter-btn:hover {
    background: var(--pear-green);
    border-color: var(--pear-green);
    color: #ffffff;
}

.pub-filter-btn.active i,
.pub-filter-btn:hover i {
    color: #ffffff;
}

.pub-filter-btn.active .pub-filter-count,
.pub-filter-btn:hover .pub-filter-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ── PUBLICATIONS GRID ── */
.pub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

@media (max-width: 1199px) {
    .pub-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── PUBLICATION CARD ── */
.pub-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pub-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    border-color: rgba(173, 200, 37, 0.3);
}

/* Latest badge */
.pub-badge-latest {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--golden);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 5px 11px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Cover image / placeholder */
.pub-card-cover {
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    background: #f5f3ee;
    overflow: hidden;
}

.pub-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pub-card:hover .pub-card-cover img {
    transform: scale(1.05);
}

.pub-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(173, 200, 37, 0.12), rgba(242, 214, 46, 0.14));
}

.pub-cover-placeholder i {
    font-size: 42px;
    color: var(--pear-green);
    opacity: 0.7;
}

/* Card body */
.pub-card-body {
    padding: 22px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.pub-cat-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #849618;
    background: rgba(173, 200, 37, 0.12);
    border: 1px solid rgba(173, 200, 37, 0.25);
    padding: 4px 12px;
    border-radius: 30px;
}

.pub-card-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
    min-height: 46px;
}

.pub-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: #888;
}

.pub-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pub-card-meta i {
    color: var(--pear-green);
}

.pub-card-actions {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Card buttons */
.pub-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pub-btn-solid {
    background: var(--pear-green);
    color: #ffffff;
}

.pub-btn-solid:hover {
    background: #849618;
    color: #ffffff;
    transform: translateY(-2px);
}

.pub-btn-ghost {
    background: rgba(0, 0, 0, 0.04);
    color: #888;
    cursor: default;
}

/* ── EMPTY STATE ── */
.pub-empty-state {
    text-align: center;
    padding: 70px 20px;
    color: #999;
}

.pub-empty-state i {
    font-size: 46px;
    color: rgba(173, 200, 37, 0.4);
    margin-bottom: 16px;
    display: block;
}

.pub-empty-state p {
    font-size: 15px;
    margin: 0;
}

/* ========================================================
   ADVOCACY PAGE - ISOLATED STYLES (prefix: adv-)
   Paste this whole block into custom.css.
   Does NOT reuse or override any other page's classes.
   The page markup only reuses globally shared components:
   .hero-section (+ blobs / floating-stars / breadcrumb).
   ======================================================== */

/* ── SECTION SHELLS ── */
.adv-section {
    padding: 60px 0;
    background: #ffffff;
}

.adv-section-alt {
    padding: 60px 0;
    background: var(--alternate-bg, #fffadb);
}

/* ── TITLES / TEXT ── */

.adv-heading {
    font-family: var(--heading-custom);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 16px;
}

.adv-heading span {
    color: var(--brick-red);
}

.adv-lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.adv-text p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 14px;
}

.adv-text p:last-child {
    margin-bottom: 0;
}

/* ── CHECK LIST ── */
.adv-check-list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.adv-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.6;
}

.adv-check-list li i {
    color: var(--pear-green);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── IMAGE COLLAGE ── */
.adv-collage {
    position: relative;
    min-height: 420px;
}

.adv-collage-main {
    width: 78%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

.adv-collage-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.adv-collage-main:hover img {
    transform: scale(1.04);
}

.adv-collage-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 210px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.adv-collage-small img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ── WIDE STRIP IMAGE + QUOTE ── */
.adv-wide-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.adv-wide-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.adv-pull-quote {
    max-width: 780px;
    margin: -35px auto 0;
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 100px;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-wrap: wrap;
}

.adv-pull-quote i {
    font-size: 26px;
    color: var(--pear-green);
    flex-shrink: 0;
}

.adv-pull-quote p {
    font-size: 16.5px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
}
/* ── VIDEO GRID ── */
.adv-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

/* ── VIDEO CARD ── */
.adv-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.adv-video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
    border-color: rgba(173, 200, 37, 0.3);
}

.adv-video-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.adv-video-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.adv-video-card:hover .adv-video-thumb-wrap img {
    transform: scale(1.05);
    opacity: 0.85;
}

.adv-video-no-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(189, 46, 46, 0.08), rgba(242, 214, 46, 0.1));
}

.adv-video-no-thumb i {
    font-size: 42px;
    color: var(--brick-red);
    opacity: 0.6;
}

.adv-video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Play button overlay */
.adv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.adv-play-btn i {
    margin-left: 3px;
}

.adv-video-card:hover .adv-play-btn {
    background: var(--brick-red);
    border-color: var(--brick-red);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Card body */
.adv-video-body {
    padding: 20px 22px 24px;
}

.adv-video-title {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0 0 10px;
}

.adv-video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: #888;
    margin-bottom: 10px;
}

.adv-video-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.adv-video-meta i {
    color: var(--pear-green);
}

.adv-video-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* ── EMPTY STATE ── */
.adv-empty-state {
    text-align: center;
    padding: 70px 20px;
    color: #999;
}

.adv-empty-state i {
    font-size: 46px;
    color: rgba(189, 46, 46, 0.35);
    margin-bottom: 16px;
    display: block;
}

.adv-empty-state p {
    font-size: 15px;
    margin: 0;
}

.readmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white-color);
    background: var(--error-color);
    padding: 12px 45px 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    border: none;
    width: auto;
    min-width: 160px;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
    background: var(--gradient);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.readmore-btn:hover::before {
    transform: translateY(-50%) translateX(5px);
}

.mission-bg-section {
    padding: 60px 0;
    background-image: url('../images/Teacher-Programme/preservice-education-1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.mission-bg-section .container-xl {
    position: relative;
    z-index: 2;
}

/* ========================================================
   THEORY OF CHANGE PAGE (.toc-)
   ======================================================== */

.toc-statement-section {
    padding: 60px 0;
    background: #ffffff;
}

.toc-statement-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.toc-statement-text p:last-child {
    margin-bottom: 0;
}

/* ── Problem Section ── */
.toc-problem-section {
    padding: 60px 0;
    background: var(--alternate-bg);
}

.toc-problem-section .ra-feature-card {
    height: 100%;
}

.toc-problem-section .ra-feature-card ul li {
    font-size: 14px;
}

.toc-problem-summary {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 15.5px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
}

/* ── Pathway Section ── */
.toc-pathway-section {
    padding: 60px 0;
    background: #ffffff;
}

.tc-pathway-inner {
    max-width: 680px;
    margin: 50px auto 0;
}

.tc-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tc-label {
    width: 80px;
    flex-shrink: 0;
    text-align: right;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.tc-box {
    flex: 1;
    background: #fff;
    border: 2px solid var(--divider-color);
    border-left: 5px solid var(--tc-color, var(--golden));
    border-radius: 14px;
    padding: 22px 30px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.tc-box.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tc-box:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

@media (prefers-reduced-motion: reduce) {
    .tc-box { transition: none; opacity: 1; transform: none; }
}

.tc-box h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
}

.tc-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.tc-connector {
    display: flex;
    justify-content: center;
    padding-left: 100px;
    height: 36px;
}

.tc-connector svg {
    color: #ccc;
}

.tc-pathway-cta {
    margin-top: 50px;
}

/* ========================================================
   OUR IMPACT PAGE (.impact-)
   ======================================================== */

.impact-intro-section {
    padding: 90px 0 60px;
    background: #ffffff;
}

.impact-intro-text .impact-lead {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.impact-intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.impact-intro-text p:last-child {
    margin-bottom: 0;
}

.impact-intro-text strong {
    color: var(--brick-red);
}

/* ── Stats ── */
.impact-stats-section {
    padding: 30px 0 90px;
    background: #ffffff;
}

.impact-stat-card {
    background: var(--secondary-color);
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    height: 100%;
    border-top: 5px solid var(--stat-color, var(--golden));
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.impact-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.impact-stat-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--stat-color, var(--golden));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.impact-stat-card h3 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.impact-stat-card h3 span {
    color: var(--stat-color, var(--golden));
}

.impact-stat-card p {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.impact-stats-tagline {
    text-align: center;
    max-width: 600px;
    margin: 50px auto 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* ── Alumni ── */
.impact-alumni-section {
    padding: 60px 0;
    background: var(--alternate-bg);
}

.impact-alumni-image-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.impact-alumni-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.impact-alumni-image-wrap:hover img {
    transform: scale(1.04);
}

.impact-quote-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 30px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--pear-green);
}

.impact-quote-card img {
    width: 30px;
    margin-bottom: 14px;
    opacity: 0.7;
}

.impact-quote-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.impact-quote-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 14px;
}

.impact-quote-card strong {
    color: var(--brick-red);
}

/* ── CTA ── */
.impact-page-cta {
    padding: 0 0 90px;
}


/* ── Quote Author Highlight ── */
.impact-quote-author {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 2px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.highlight-name {
    font-family: var(--heading-custom);
    font-size: 22px;
    font-weight: 700;
    color: var(--brick-red);
    display: block;
}

.author-batch {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

/* ========================================================
   TEACHER CAPACITY DEVELOPMENT PAGE (.tcd-)
   ======================================================== */


/* ── Approach pills ── */
.tcd-approach-section {
    padding: 70px 0 90px;
    background: var(--alternate-bg);
}

.tcd-approach-pill {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 14px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tcd-approach-pill:hover {
    background: var(--golden);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 214, 46, 0.25);
}

.tcd-approach-pill i {
    font-size: 22px;
    color: var(--pear-green);
    transition: color 0.3s ease;
}

.tcd-approach-pill:hover i {
    color: var(--primary-color);
}

.tcd-approach-pill span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

/* ── Highlights list ── */
.tcd-highlights-section {
    padding: 60px 0;
    background: #ffffff;
}

.tcd-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 22px 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tcd-highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.tcd-highlight-num {
    font-family: var(--heading-custom);
    font-size: 26px;
    font-weight: 700;
    color: var(--golden);
    line-height: 1;
    flex-shrink: 0;
}

.tcd-highlight-item p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
}

/* ── Learning areas ── */
.tcd-learning-section {
    padding: 60px 0;
    background: var(--alternate-bg);
}

/* ── Vision / CTA ── */
.tcd-vision-section {
    padding: 60px 0;
    background: #ffffff;
}

/* ── Our Approach – With Background Image ───────────── */

.tcd-approach-bg {
    position: relative;
    background-image: url(../images/Teacher-Programme/Inservice-Teacher-Education-1.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    overflow: hidden;
    z-index: 1;
}

/* Dark overlay */
.tcd-approach-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

/* Ensure content is above overlay */
.tcd-approach-bg .container {
    position: relative;
    z-index: 2;
}

/* ── Approach Pills – Glass style ── */
.tcd-approach-bg .tcd-approach-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.tcd-approach-bg .tcd-approach-pill:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tcd-approach-bg .tcd-approach-pill i {
    color: var(--golden);
}

.tcd-approach-bg .tcd-approach-pill span {
    color: #fff;
}
/* ========================================================
   GET INVOLVED PAGE — ADDITIONAL COMPONENTS
   ======================================================== */

/* ── Approach / Opportunity pills (reused for Volunteer + Pro Bono) ── */
.tcd-approach-pill {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 14px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tcd-approach-pill:hover {
    background: var(--golden);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(242, 214, 46, 0.25);
}

.tcd-approach-pill i {
    font-size: 20px;
    color: var(--pear-green);
    transition: color 0.3s ease;
}

.tcd-approach-pill:hover i {
    color: var(--primary-color);
}

.tcd-approach-pill span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

/* ── Employee Engagement grid — now 4 columns (7 cards) ── */
.pw-individual-grid {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
    .pw-individual-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Research area chips (reused .gi-acad-feature look, tighter) ── */
#research .gi-acad-feature {
    font-size: 13px;
    padding: 8px 14px;
}

/* ── Enquiry Form section ── */
#enquiry-form .cu-dashboard-section {
    background: transparent;
}

#enquiry-form .contact-info-wrapper {
    border-radius: 24px 0 0 24px;
}

#enquiry-form .contact-form-wrapper {
    border-radius: 0 24px 24px 0;
    border-left: none;
}


/* ========================================================
   HUB & SPOKES — RADIAL DIAGRAM (.hs-)
   ======================================================== */

.hub-spokes-sec {
    padding: 60px 0;
    background: var(--alternate-bg);
}

/* ── Radial wrapper ── */
.hs-radial-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 640px;
    margin: 60px auto 30px;
}

/* Center hub circle */
.hs-radial-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: linear-gradient(145deg, #BD2E2E, #b50000);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25), 0 0 0 8px #ffffff, 0 0 0 10px rgba(0,0,0,0.05);
    z-index: 3;
}

.hs-center-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--golden);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
    box-shadow: 0 8px 18px rgba(242, 214, 46, 0.35);
}

.hs-radial-center h4 {
    font-family: var(--heading-custom);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 4px;
}

.hs-radial-center span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--golden);
}

/* Connecting dashed lines */
.hs-radial-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    height: 0;
    border-top: 2px dashed var(--line-color, var(--golden));
    transform-origin: left center;
    transform: rotate(var(--angle));
    opacity: 0.55;
    z-index: 1;
}

/* Spoke nodes */
.hs-radial-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    margin-top: -75px;
    margin-left: -75px;
    transform: rotate(var(--angle)) translate(255px) rotate(calc(-1 * var(--angle)));
    background: #ffffff;
    border-radius: 50%;
    border: 3px solid var(--node-color, var(--golden));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    z-index: 2;
}

.hs-radial-node:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.hs-node-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--node-color, var(--golden));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 8px;
}

.hs-radial-node span {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.35;
}

/* Outer label */
.hs-radial-outer-label {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 4;
}

/* ── Mobile fallback diagram ── */
.hs-mobile-diagram {
    max-width: 500px;
    margin: 50px auto 0;
    text-align: center;
}

.hs-mobile-hub {
    /* background: linear-gradient(145deg, #1f1f1f, #333333); */
    background: linear-gradient(145deg, #BD2E2E, #b50000);;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 20px;
}

.hs-mobile-hub .hs-center-icon {
    margin: 0 auto 10px;
}

.hs-mobile-hub h4 {
    color: #fff;
    font-family: var(--heading-custom);
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

.hs-mobile-nodes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hs-mobile-node {
    background: #fff;
    border: 2px solid var(--node-color, var(--golden));
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.hs-mobile-node i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--node-color, var(--golden));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ── Hub details card (below diagram) ── */
.hs-hub-details {
    max-width: 800px;
    margin: 20px auto 0;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px 34px;
}

.hs-hub-details h5 {
    font-family: var(--heading-custom);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: center;
}

.hs-hub-details .hs-tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hs-hub-details .hs-tag-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
}

.hs-hub-details .hs-tag-list li i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(242, 214, 46, 0.15);
    color: var(--golden);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ── Continuous Learning Cycle ── */
.hs-cycle-wrap {
    max-width: 1100px;
    margin: 60px auto 0;
    text-align: center;
}

.hs-cycle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 6px;
}

.hs-cycle-step {
    background: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.hs-cycle-step:hover {
    background: var(--golden);
    transform: translateY(-3px);
}

.hs-cycle-final {
    background: var(--brick-red);
    color: #fff;
    border-color: var(--brick-red);
}

.hs-cycle-arrow {
    color: #ccc;
    font-size: 12px;
}

.hs-cycle-caption {
    margin-top: 16px;
    font-size: 13px;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ── Systemic Change Note ── */
.hs-systemic-note {
    max-width: 950px;
    margin: 50px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--alternate-bg);
    border-left: 5px solid var(--golden);
    border-radius: 18px;
    padding: 32px 36px;
}

.hs-systemic-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--golden);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(242, 214, 46, 0.25);
}

.hs-systemic-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hs-systemic-text p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.hs-systemic-text strong {
    color: var(--brick-red);
}

/* ========================================================
   BELIEF SYSTEM SECTION (.belief-)
   ======================================================== */

.belief-sec {
    padding: 60px 0;
    
}

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

.belief-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 26px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-top: 4px solid var(--belief-color, var(--golden));
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.belief-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
}

.belief-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--brick-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.belief-item p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

/* ========================================================
   BACK TO TOP BUTTON
   ======================================================== */

.back-to-top-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--golden);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 28px rgba(242, 214, 46, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.85);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.back-to-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    background: var(--primary-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.back-to-top-btn i {
    position: relative;
    z-index: 2;
    font-size: 17px;
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-to-top-btn:hover i {
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Circular scroll-progress ring */
.btt-progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 1;
}

.btt-progress-ring-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.08);
    stroke-width: 2.5;
}

.btt-progress-ring-fill {
    fill: none;
    stroke: var(--pear-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 100.5; /* 2 * PI * r(16) */
    stroke-dashoffset: 100.5;
    transition: stroke-dashoffset 0.1s linear;
}
/* ── Vacancy Cards (reuse from earlier) ── */
.vacancy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.vacancy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.vacancy-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.vacancy-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.vacancy-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
    flex: 1;
}
.vacancy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}
.vacancy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--pear-green);
    color: #ffffff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}
.vacancy-btn:hover {
    background: #8faa20;
    color: #ffffff;
}

/* ── Statutory Documents – Actions ── */
.sdc-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.sdc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pear-green);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(173, 200, 37, 0.08);
}

.sdc-link:hover {
    background: var(--pear-green);
    color: #ffffff;
    gap: 10px;
}

.sdc-download {
    color: var(--brick-red);
    background: rgba(189, 46, 46, 0.08);
}

.sdc-download:hover {
    background: var(--brick-red);
    color: #ffffff;
}

/* Card – ensure consistent height */
.stat-doc-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px 24px;
}

/* ── Statutory Documents Request Note ── */

.stat-doc-request {
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--pear-green);
}

.stat-doc-request-icon {
    font-size: 36px;
    color: var(--pear-green);
    margin-bottom: 16px;
}

.stat-doc-request h4 {
    font-family: var(--heading-custom);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-doc-request p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 24px;
}

.stat-doc-request .btn-default {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
}

/*  */
/* ── CHILD'S JOURNEY CAROUSEL ────────────────────────── */

.cj-carousel-section {
    padding: 80px 0 60px;
    background: #f8f7f4;
}

/* ---- Carousel wrapper ---- */
.cj-carousel-wrapper {
    position: relative;
    margin-top: 40px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cj-carousel {
    border-radius: 28px;
    overflow: hidden;
}

/* ---- Each slide ---- */
.cj-slide {
    position: relative;
    height: clamp(350px, 45vw, 520px);
    background: #1a1a1a;
}

.cj-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.cj-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark gradient overlay – bottom to top */
.cj-slide-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 30%,
        rgba(0, 0, 0, 0.35) 55%,
        rgba(0, 0, 0, 0.10) 75%,
        transparent 100%
    );
}
/* ---- Slide content (overlaid) ---- */
.cj-slide-content {
    position: absolute;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    color: #fff;
    z-index: 2;

    max-width: 500px;
}

.cj-slide-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.cj-slide-step {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 4px 12px;
    border-radius: 30px;
}

.cj-slide-icon {
    font-size: 30px;
    color: rgba(255,255,255,0.6);
}

.cj-slide-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--golden);
}

.cj-slide-desc {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    font-weight: 400;
    opacity: 0.9;
    max-width: 80%;
    font-style: italic;
    margin: 0;
}

/* ---- Navigation & Pagination ---- */
.cj-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-bottom: 8px;
}

.cj-button-prev,
.cj-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.cj-button-prev:hover,
.cj-button-next:hover {
    background: var(--pear-green);
    color: #ffffff;
    border-color: var(--pear-green);
    transform: scale(1.05);
}

.cj-pagination {
    display: flex;
    gap: 12px;
    justify-content:center;
}
.cj-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0 !important;
}
.cj-pagination .swiper-pagination-bullet-active {
    background: var(--pear-green);
    opacity: 1;
    width: 28px;
    border-radius: 20px;
}

/* ---- CTA ---- */
.cj-cta {
    margin-top: 50px;
}

/* ── Age span inside title ── */
.cj-slide-age {
    font-weight: 400;
    font-size: 1em;
    opacity: 0.7;
    color: var(--white-color);
    margin-bottom: 5px;
}

/* ── Sub text (the additional outcome) ── */
.cj-slide-sub {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 0.3px;
    color: var(--white-color);
}

/* =========================================
   IMPACT PARTNERSHIPS
========================================= */

.impact-partnerships-section {
    width: 100%;
    padding: 70px 0 80px;
    background: #fff;
}

.impact-partnerships-inner {
    width: 92%;
    max-width: 1450px;
    margin: 0 auto;
}


/* MAIN HEADING */

.impact-main-heading {
    text-align: left;
    margin-bottom: 45px;
}

.impact-main-heading h2 {
    display: inline-block;
    position: relative;

    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 700;
    color: #111;

    margin: 0;
}


/* =========================================
   PROJECT
========================================= */

.impact-project {
    width: 100%;
    margin-bottom: 42px;
}

.impact-project h3 {
    text-align: center;

    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 700;

    color: #222;

    margin: 0 0 10px;
    text-transform: uppercase;
}


/* =========================================
   STAT STRIP
========================================= */

.impact-stat-row {
    width: 100%;

    display: grid;

    border-radius: 13px;
    overflow: hidden;

    min-height: 145px;
}


/* 4 COLUMNS */

.impact-stat-row:has(.impact-stat:nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
}


/* 5 COLUMNS */

.impact-stat-row:has(.impact-stat:nth-child(5):last-child) {
    grid-template-columns: repeat(5, 1fr);
}


/* 6 COLUMNS */

.impact-stat-row:has(.impact-stat:nth-child(6):last-child) {
    grid-template-columns: repeat(6, 1fr);
}


/* =========================================
   GREEN STRIP
========================================= */

.impact-green {
    background: #8ab51b;
}


/* =========================================
   YELLOW STRIP
========================================= */

.impact-yellow {
    background: #e0b900;
}


/* =========================================
   EACH STAT
========================================= */

.impact-stat {
    display: flex;
    flex-direction: column;

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

    text-align: center;

    padding: 16px 14px 13px;

    border-right: 1px solid rgba(255,255,255,0.35);
}

.impact-stat:last-child {
    border-right: none;
}


/* NUMBER */

.impact-stat strong {
    display: block;

    font-family: "Playfair Display", serif;

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

    font-weight: 800;

    color: #111;

    margin-bottom: 9px;

    white-space: nowrap;
}


/* DESCRIPTION */

.impact-stat span {
    display: block;

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

    font-size: 12px;
    line-height: 1.35;

    font-weight: 500;

    color: #222;

    max-width: 190px;
}


/* ── Reach so far – Circles ────────────────────────── */

.reach-summary {
    margin-top: 50px;
    background: var(--secondary-color, #f5f3ed);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
}

.reach-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}
.reach-icon {
    font-size: 32px;
    color: var(--golden);
}
.reach-title {
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.reach-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.reach-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
}

/* ── Circle colours ── */
.reach-circle-gold {
    background: var(--golden);
}
.reach-circle-green {
    background: var(--pear-green);
}
.reach-circle-red {
    background: var(--brick-red);
}

.reach-number {
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}
.reach-label {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 4px;
}


/* ── Impact Partnerships ────────────────────────────── */

.partnership-project {
    margin-bottom: 40px;
}

.partnership-project-title {
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-align: center;
}

.partnership-location {
    font-weight: 400;
    font-size: 0.8em;
    color: #888;
}

/* ── Stats Grid ──────────────────────────────────────── */

.partnership-stats-grid {
    display: grid;
    border-radius: 16px;
    overflow: hidden;
    background: var(--pear-green);
}

.partnership-stats-grid .partnership-stat {
    padding: 18px 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 130px;
}
.partnership-stats-grid .partnership-stat:last-child {
    border-right: none;
}

/* Grid column counts */
.partnership-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.partnership-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}
.partnership-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Alternate background for odd/even projects */
.partnership-project:nth-child(odd) .partnership-stats-grid {
    background: var(--pear-green);
}
.partnership-project:nth-child(even) .partnership-stats-grid {
    background: var(--golden);
}

/* Stat content */
.partnership-number {
    display: block;
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 6px;
}
.partnership-desc {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 500;
    max-width: 220px;
    margin: 0 auto;
}

/* ── Reach Summary ──────────────────────────────────── */

/* ── Reach so far ──────────────────────────────────── */

.reach-summary {
    margin-top: 50px;
    background: var(--secondary-color, #f5f3ed);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
}

.reach-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}
.reach-icon {
    font-size: 32px;
    color: var(--golden);
}
.reach-title {
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.reach-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.reach-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
}

/* Individual circle colors */
.reach-circle:nth-child(1) {
    background: var(--golden);
}
.reach-circle:nth-child(2) {
    background: var(--pear-green);
}
.reach-circle:nth-child(3) {
    background: var(--brick-red);
}

.reach-number {
    font-family: var(--heading-custom, 'Cormorant Garamond', serif);
    font-size: 30px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.reach-label {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   HOME ALUMNI GRID – TWO CARDS
════════════════════════════════════════ */

.home-alumni-grid {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* ── Each Card ── */
.alumni-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.alumni-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.09);
}

/* ── Image ── */
.alumni-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f0f0f0;
}

.alumni-card-image img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alumni-card:hover .alumni-card-image img {
    transform: scale(1.04);
}

/* ── Body ── */
.alumni-card-body {
    padding: 24px 26px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alumni-card-tag {
    display: inline-block;
    background: rgba(173, 200, 37, 0.10);
    color: var(--pear-green);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 14px;
    border-radius: 40px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.alumni-card-name {
    font-family: var(--heading-custom);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.alumni-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
}

.alumni-card-meta i {
    color: var(--golden);
    margin-right: 4px;
    font-size: 14px;
}

.alumni-card-quote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--brick-red);
    font-weight: 600;
    font-style: italic;
    border-left: 3px solid var(--golden);
    padding-left: 18px;
    margin: 0 0 20px 0;
    flex: 1;
}

.alumni-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pear-green);
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.alumni-card-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.alumni-card-link:hover {
    gap: 14px;
    color: var(--brick-red);
}

.alumni-card-link:hover i {
    transform: translateX(3px);
}




/* ── Problem point with icon ── */
.problem-point {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
    text-align: left;
    width: 100%;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.problem-icon {
    color: var(--belief-color, var(--pear-green));
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Remove the old pseudo‑element */
.problem-point::before {
    display: none;
}

/* ── Full-width image section ── */
.toc-image-full {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.toc-image-full-inner {
    width: 100%;
    line-height: 0;
}

.toc-full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Bottom Stat ── */
.impact-bottom-stat {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    /* border-top: 1px solid rgba(0,0,0,0.06); */
}

.impact-bottom-stat .isi-number-big {
    display: block;
    font-family: var(--sketch-font, 'Caveat', cursive);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--pear-green);
    line-height: 1.1;
}

.impact-bottom-stat .isi-label-big {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    max-width: 240px;
    margin: 4px auto 0;
}

@media (max-width: 880px) {
    .impact-bottom-stat {
        margin-top: 16px;
        padding-top: 16px;
    }
}

/* ── Our Story ────────────────────────────────────── */

.our-story-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.our-story-content {
    max-width: 820px;
    margin: 0 auto;
}

.our-story-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
    text-align: justify;
}

.our-story-content p:last-of-type {
    margin-bottom: 0;
}

.our-story-highlight {
    font-weight: 500;
    color: var(--brick-red);
    border-left: 4px solid var(--pear-green);
    padding-left: 24px;
    font-style: italic;
}

/* ── Decorative Separator ── */
.our-story-separator {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
}

.story-sep-icon {
    color: var(--pear-green);
    font-size: 18px;
    opacity: 0.4;
}

/* ========================================================
   WHY PARTNER — BENEFIT GRID (.gi-why-)
   ======================================================== */

.gi-why-lead {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.gi-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.gi-why-item {
    background: var(--secondary-color);
    border-radius: 18px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-top: 4px solid var(--why-color, var(--golden));
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.gi-why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
}

.gi-why-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--why-color, var(--golden));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.gi-why-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
}

.gi-why-closing {
    max-width: 750px;
    margin: 0 auto 24px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #666;
    font-style: italic;
}

/* Section heading letter (A. / B. / C.) inside gi-section-content h2 */
.gi-section-content h2 b {
    color: var(--brick-red);
    font-weight: 800;
    margin-right: 4px;
}

/* ════════════════════════════════════════════════════════
   WHY PARTNER — BENTO GRID
════════════════════════════════════════════════════════ */

.gi-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(190px, auto);
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
}

/* ── All tiles ── */
.gi-bento-tile {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gi-bento-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ── Large tile (image + overlay) ── */
.gi-bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
    background: #1a1a1a;
    border: none;
}

.gi-bento-large-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gi-bento-tile.gi-bento-large:hover .gi-bento-large-img {
    transform: scale(1.05);
}

.gi-bento-large-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(20, 20, 20, 0.85) 10%, rgba(20, 20, 20, 0.50) 60%, rgba(20, 20, 20, 0.30) 100%);
    z-index: 1;
}

.gi-bento-large-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 40px 36px;
}

.gi-bento-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--golden);
    margin-bottom: 12px;
}

.gi-bento-large-content h3 {
    font-family: var(--heading-custom);
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.gi-bento-large-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.gi-bento-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--golden);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    width: fit-content;
    transition: gap 0.3s ease;
}

.gi-bento-link:hover {
    gap: 16px;
}

/* ── Small tiles ── */
.gi-bento-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--tile-color, var(--golden)) 12%, transparent);
    color: var(--tile-color, var(--golden));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.gi-bento-tile:hover .gi-bento-icon {
    background: var(--tile-color, var(--golden));
    color: #ffffff;
    transform: scale(1.05);
}

.gi-bento-tile h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.gi-bento-tile p {
    font-size: 14px !important;
    line-height: 1.5;
    /* color: #666; */
    margin: 0;
}

.gi-bento-tile:hover h4 {
    color: var(--tile-color, var(--golden));
}


/* ── Responsive ── */
@media (max-width: 992px) {
    .gi-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(170px, auto);
    }
    .gi-bento-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    .gi-bento-large-content {
        padding: 32px 28px;
    }
    .gi-bento-large-content h3 {
        font-size: 22px;
    }
}
/* ════════════════════════════════════════════════════════
   SECTION HEADING + LETTER BADGE (shared A / B / C)
════════════════════════════════════════════════════════ */

.gi-letter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--brick-red), #a02525);
    color: #fff;
    font-family: var(--heading-custom);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(189, 46, 46, 0.28);
    margin-bottom: 18px;
}

.gi-letter-badge-light {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.gi-panel-heading {
    font-family: var(--heading-custom);
    font-size: 34px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.gi-panel-heading span {
    color: var(--brick-red);
}

.gi-panel-heading-light,
.gi-panel-heading-light span {
    color: #fff;
}

.gi-panel-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    max-width: 780px;
    margin: 0 auto;
}

.gi-panel-lead-light {
    color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════════════
   SECTION A — PANEL CARDS
════════════════════════════════════════════════════════ */

.gi-panel-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 38px 34px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.gi-panel-card-dark {
    background: linear-gradient(150deg, #1f1f1f, #333333);
    border: none;
}

.gi-panel-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
}

.gi-panel-card-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    background: color-mix(in srgb, var(--panel-color, var(--golden)) 15%, transparent);
    color: var(--panel-color, var(--golden));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.gi-panel-card-dark .gi-panel-card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.gi-panel-card-head h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.gi-panel-card-dark .gi-panel-card-head h4 {
    color: #fff;
}

.gi-panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.gi-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: #4a4a4a;
    line-height: 1.5;
}

.gi-panel-list li i {
    color: var(--pear-green);
    margin-top: 3px;
    flex-shrink: 0;
}

.gi-panel-list-dark li {
    color: rgba(255, 255, 255, 0.82);
}

.gi-panel-list-dark li i {
    color: var(--golden);
}

.gi-panel-badge {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--pear-green);
    font-size: 13.5px;
    font-weight: 700;
}

.gi-panel-badge i {
    font-size: 18px;
}

/* ════════════════════════════════════════════════════════
   SECTION B — DARK STAT-BANNER LAYOUT
════════════════════════════════════════════════════════ */

.gi-school-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.gi-school-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.gi-school-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 20, 20, 0.92), rgba(20, 20, 20, 0.82));
    z-index: 1;
}

.gi-school-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 10px;
}

.gi-school-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gi-school-tags span i {
    color: var(--golden);
    font-size: 11px;
}

.gi-school-tags span:hover {
    background: var(--golden);
    color: var(--primary-color);
    border-color: var(--golden);
}

.gi-school-tags span:hover i {
    color: var(--primary-color);
}

/* ════════════════════════════════════════════════════════
   SECTION C — COLLABORATION ICON GRID
════════════════════════════════════════════════════════ */

.gi-collab-tile {
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.04);
    border-radius: 18px;
    padding: 26px 18px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.gi-collab-tile:hover {
    border-color: var(--collab-color, var(--golden));
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.09);
}

.gi-collab-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--collab-color, var(--golden)) 15%, transparent);
    color: var(--collab-color, var(--golden));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    transition: all 0.35s ease;
}

.gi-collab-tile:hover .gi-collab-icon {
    background: var(--collab-color, var(--golden));
    color: #fff;
    transform: scale(1.08) rotate(-6deg);
}

.gi-collab-tile span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
}

/* ════════════════════════════════════════════════════════
   MUKTANGAN CHILD GROWTH STORY (.mcs-)
════════════════════════════════════════════════════════ */

.mcs-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
    position: relative;
    overflow: hidden;
}

.mcs-thread-wrap {
    position: relative;
    max-width: 1100px;
    margin: 70px auto 0;
}

/* ── Curvy connecting SVG ── */
.mcs-connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.mcs-path-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.06);
    stroke-width: 3;
    stroke-linecap: round;
}

.mcs-path-draw {
    fill: none;
    stroke: url(#mcsPathGrad);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 10 9;
    opacity: 0.9;
}

.mcs-travel-dot {
    fill: var(--golden);
    filter: drop-shadow(0 0 8px rgba(242, 214, 46, 0.75));
}

/* ── Row layout ── */
.mcs-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    z-index: 1;
}

.mcs-row:last-child {
    margin-bottom: 0;
}

.mcs-row-rev {
    flex-direction: row-reverse;
}

.mcs-media,
.mcs-content {
    flex: 1;
    min-width: 0;
}

/* ── Media side ── */
.mcs-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.mcs-photo-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 4.6;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.22);
    border: 6px solid #ffffff;
    outline: 2px solid var(--mcs-color, var(--golden));
    outline-offset: 4px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mcs-row:hover .mcs-photo-frame {
    transform: translateY(-8px) scale(1.015);
}

.mcs-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.mcs-row:hover .mcs-photo-frame img {
    transform: scale(1.06);
}

.mcs-photo-frame-final::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 34px;
    border: 2px solid var(--pear-green);
    opacity: 0.5;
    animation: mcsPulseRing 2.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mcsPulseRing {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.06); opacity: 0; }
}

/* Anchor node — the actual point the curvy line passes through */
.mcs-node {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--mcs-color, var(--golden));
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 3px var(--mcs-color, var(--golden)), 0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 3;
}

.mcs-node-final {
    animation: mcsNodeGlow 2s ease-in-out infinite;
}

@keyframes mcsNodeGlow {
    0%, 100% { box-shadow: 0 0 0 3px var(--pear-green), 0 8px 20px rgba(0, 0, 0, 0.15); }
    50% { box-shadow: 0 0 0 9px rgba(173, 200, 37, 0.3), 0 8px 20px rgba(0, 0, 0, 0.15); }
}

/* Ghost number */
.mcs-ghost-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--heading-custom);
    font-size: clamp(140px, 16vw, 220px);
    font-weight: 700;
    color: var(--mcs-color, var(--golden));
    opacity: 0.08;
    z-index: -1;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
}

/* ── Content side ── */
.mcs-content {
    position: relative;
    padding: 10px 0;
}

.mcs-stage-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--mcs-color, var(--golden)) 14%, transparent);
    color: var(--mcs-color, var(--golden));
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.mcs-quote {
    font-family: var(--caption-custom);
    font-style: italic;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--primary-color);
    margin: 0 0 20px;
    padding-left: 24px;
    border-left: 4px solid var(--mcs-color, var(--golden));
}

.mcs-desc {
    font-size: 15.5px;
    line-height: 1.85;
    color: #666;
    max-width: 460px;
    margin: 0;
}

.mcs-row-rev .mcs-desc {
    margin-left: auto;
}

.mcs-stage-tag-final {
    background: var(--pear-green);
    color: #fff;
}

.mcs-row-final .mcs-quote {
    color: var(--brick-red);
}

.mcs-cta {
    margin-top: 80px;
}

/* ════════════════════════════════════════════════════════
   TOOLKIT PAGE – PREMIUM REDESIGN
════════════════════════════════════════════════════════ */

/* ── Alerts ── */
.toolkit-alert {
    padding: 16px 22px;
    border-radius: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}
.toolkit-alert-success {
    background: rgba(173, 200, 37, 0.1);
    border: 1px solid rgba(173, 200, 37, 0.3);
    color: #6a7d15;
}
.toolkit-alert-error {
    background: rgba(189, 46, 46, 0.07);
    border: 1px solid rgba(189, 46, 46, 0.25);
    color: var(--brick-red);
}
.toolkit-alert i { font-size: 20px; }

/* ════════════════════════════════════════════════════════
   TOOLKIT CARDS
════════════════════════════════════════════════════════ */

.toolkit-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 34px 28px 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.toolkit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--tk-color, var(--pear-green));
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.toolkit-card:hover::before {
    transform: scaleX(1);
}

.toolkit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.1);
}

.toolkit-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.toolkit-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--tk-color, var(--pear-green)) 14%, transparent);
    color: var(--tk-color, var(--pear-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all 0.4s ease;
}

.toolkit-card:hover .toolkit-card-icon {
    background: var(--tk-color, var(--pear-green));
    color: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.toolkit-version-badge {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--tk-color, var(--pear-green));
    background: color-mix(in srgb, var(--tk-color, var(--pear-green)) 12%, transparent);
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.toolkit-card h3 {
    font-family: var(--heading-custom);
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.toolkit-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #666;
    flex: 1;
    margin-bottom: 24px;
}

.toolkit-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.toolkit-download-btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--tk-color, var(--pear-green));
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 22px color-mix(in srgb, var(--tk-color, var(--pear-green)) 30%, transparent);
}

.toolkit-download-btn-sm:hover {
    filter: brightness(0.92);
    color: #ffffff;
    transform: translateY(-3px);
}

.toolkit-request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: transparent;
    color: var(--tk-color, var(--pear-green));
    border: 2px solid var(--tk-color, var(--pear-green));
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toolkit-request-btn:hover {
    background: var(--tk-color, var(--pear-green));
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--tk-color, var(--pear-green)) 35%, transparent);
}

/* ════════════════════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════════════════════ */

.toolkit-empty {
    text-align: center;
    padding: 90px 20px;
    max-width: 460px;
    margin: 0 auto;
}

.toolkit-empty-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--golden);
}

.toolkit-empty h4 {
    font-family: var(--heading-custom);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.toolkit-empty p {
    font-size: 15px;
    color: #888;
    margin: 0;
}

/* ════════════════════════════════════════════════════════
   TOOLKIT MODAL — FORM STYLING (matches contact form style)
════════════════════════════════════════════════════════ */

/* ── Modal shell ── */
.toolkit-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.toolkit-modal-overlay.active {
    display: flex;
}

.toolkit-modal {
    position: relative;
    background: var(--white-color);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--divider-color);
}

.toolkit-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--secondary-color);
    border: none;
    font-size: 20px;
    line-height: 1;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.toolkit-modal-close:hover {
    background: var(--brick-red);
    color: #fff;
    transform: rotate(90deg);
}

/* ── Header text (matches .contact-form-wrapper h3) ── */
.toolkit-modal h3 {
    color: var(--primary-color);
    font-family: var(--heading-custom);
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.toolkit-modal p.toolkit-modal-desc {
    font-family: var(--default-font);
    color: var(--text-color);
    margin-bottom: 30px;
}

.toolkit-modal p.toolkit-modal-desc strong {
    color: var(--brick-red);
}

/* ── Form grid ── */
.toolkit-modal .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.toolkit-modal .form-group-full {
    grid-column: 1 / -1;
}

.toolkit-modal .form-group {
    display: flex;
    flex-direction: column;
}

/* ── Labels (matches .custom-form-label) ── */
.toolkit-modal .custom-form-label {
    font-family: var(--default-font);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    font-size: 13px;
}

.toolkit-modal .custom-form-label .req {
    color: var(--brick-red);
    margin-left: 2px;
}

/* ── Inputs / selects / textareas (matches .form-control-custom) ── */
.toolkit-modal .form-control-custom {
    background: var(--secondary-color);
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 15px 20px;
    font-family: var(--default-font);
    color: var(--text-color);
    width: 100%;
    transition: all 0.3s ease;
}

.toolkit-modal .form-control-custom:focus {
    background: var(--white-color);
    border-color: var(--pear-green);
    box-shadow: 0 0 0 4px rgba(173, 200, 37, 0.1);
    outline: none;
}

.toolkit-modal .form-control-custom::placeholder {
    color: #aaa;
}

.toolkit-modal select.form-control-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 42px;
    cursor: pointer;
}

.toolkit-modal textarea.form-control-custom {
    min-height: 100px;
    resize: vertical;
}

/* ── Terms checkbox ── */
.toolkit-modal .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px 10px;
    background: var(--secondary-color);
    border-radius: 10px;
}

.toolkit-modal .checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--pear-green);
    margin-top: 2px;
    cursor: pointer;
}

.toolkit-modal .checkbox-label span {
    font-family: var(--default-font);
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.toolkit-modal .checkbox-label span a {
    color: var(--brick-red);
    font-weight: 600;
    text-decoration: underline;
}

.toolkit-modal .checkbox-label span a:hover {
    color: var(--pear-green);
}

/* ── Submit button (matches .btn-submit-new) ── */
.toolkit-modal .form-actions {
    margin-top: 25px;
}

.toolkit-modal .btn-submit-new {
    background: var(--pear-green);
    color: var(--white-color);
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--default-font);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.toolkit-modal .btn-submit-new:hover {
    background: var(--golden);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(242, 214, 46, 0.2);
}

/* Field-level error text inside modal */
.toolkit-modal .tk-field-error {
    display: block;
    font-size: 12px;
    color: var(--brick-red);
    margin-top: 4px;
    min-height: 14px;
}

/* Red border on invalid input */
.toolkit-modal .cu-input-error {
    border-color: var(--brick-red) !important;
    background: rgba(189, 46, 46, 0.04) !important;
}

/* Ensure spinner aligns nicely */
.toolkit-modal .btn-submit-new .btn-spinner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ── Three Stats Row ── */
.sp-impact-stats-row {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* ── Each Stat ── */
.sp-impact-stat {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Connector ── */
.sp-impact-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.sp-impact-connector__line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, #F2D62E, transparent);
}
.sp-impact-connector__dot {
    width: 18px;
    height: 18px;
    background: #F2D62E;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.6);
    box-shadow: 0 0 0 6px rgba(242,214,46,0.2);
}

/* ════════════════════════════════════════════════════════
   6-COLUMN IMPACT STAT GRID (Proven Impact section)
════════════════════════════════════════════════════════ */

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

.out2-stat-grid-6 .out2-stat-card small {
    font-size: 0.55em;
    font-weight: 700;
    vertical-align: super;
}

/* ════════════════════════════════════════════════════════
   PARTNERSHIP MODEL CARDS (4 numbered cards + buttons)
════════════════════════════════════════════════════════ */

.out2-model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.out2-model-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.out2-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--model-color, var(--golden));
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.out2-model-card:hover::before {
    transform: scaleX(1);
}

.out2-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}

.out2-model-num {
    position: absolute;
    top: 24px;
    right: 30px;
    font-family: var(--heading-custom);
    font-size: 52px;
    font-weight: 700;
    color: var(--model-color, var(--golden));
    opacity: 0.12;
    line-height: 1;
}

.out2-model-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--model-color, var(--golden)) 14%, transparent);
    color: var(--model-color, var(--golden));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: all 0.35s ease;
}

.out2-model-card:hover .out2-model-icon {
    background: var(--model-color, var(--golden));
    color: #fff;
    transform: rotate(-6deg) scale(1.06);
}

.out2-model-card h4 {
    font-family: var(--heading-custom);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 14px;
    line-height: 1.35;
}

.out2-model-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #666;
    margin-bottom: 26px;
    flex: 1;
}

.out2-model-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--model-color, var(--golden));
    text-decoration: none;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transition: gap 0.3s ease, color 0.3s ease;
}

.out2-model-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.out2-model-btn:hover {
    gap: 16px;
    color: var(--primary-color);
}

.out2-model-btn:hover i {
    transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════
   FAQ ACCORDION
════════════════════════════════════════════════════════ */

.out2-faq-wrap {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.out2-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.out2-faq-item.is-open {
    border-color: var(--golden);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.out2-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 26px;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.out2-faq-q i {
    flex-shrink: 0;
    font-size: 14px;
    color: var(--pear-green);
    transition: transform 0.3s ease;
}

.out2-faq-item.is-open .out2-faq-q i {
    transform: rotate(180deg);
    color: var(--brick-red);
}

.out2-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 26px;
}

.out2-faq-item.is-open .out2-faq-a {
    max-height: 300px;
    padding: 0 26px 24px;
}

.out2-faq-a p {
    font-size: 14.5px;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

/* ════════════════════════════════════════════════════════
   IMPACT NUMBERS - BENTO GRID (circles + squares)
════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   COST CALLOUT
════════════════════════════════════════════════════════ */

.imp-cost-section {
    padding: 30px 0 90px;
    background: #ffffff;
}

.imp-cost-card {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white-color);
    border-radius: 28px;
    padding: 42px 44px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.imp-cost-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 20px;
    background: var(--golden);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 12px 28px rgba(242, 214, 46, 0.3);
}

.imp-cost-content {
    flex: 1;
}

.imp-cost-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--golden);
    margin-bottom: 8px;
}

.imp-cost-content h3 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.imp-cost-figure {
    font-family: var(--heading-custom);
    font-size: 38px;
    font-weight: 700;
    color: var(--pear-green);
}

.imp-cost-per {
    font-size: 15px;
    font-weight: 600;
    color: var(--near-black);
}

.imp-cost-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--near-black);
    margin: 0;
}

.imp-cost-content strong {
    color: var(--golden);
}

/* ── Inclusion Without Dilution – Clean & Best ────────── */

.inclusion-clean-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Stat cards */
.inclusion-clean-stat {
    background: #fafaf8;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border-top: 5px solid var(--stat-color, var(--golden));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.inclusion-clean-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.stat-change {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 8px;
}

.stat-from,
.stat-to {
    font-family: var(--heading-custom);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-from {
    color: var(--brick-red);
}

.stat-to {
    color: var(--stat-color, var(--golden));
}

.stat-arrow {
    color: var(--stat-color, var(--golden));
    font-size: 20px;
    opacity: 0.5;
}

.stat-single .stat-number {
    font-family: var(--heading-custom);
    font-size: 48px;
    font-weight: 700;
    color: var(--stat-color, var(--pear-green));
    line-height: 1.1;
    display: block;
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

/* Narrative box */
.inclusion-clean-narrative {
    display: flex;
    gap: 24px;
    background: #fafaf8;
    border-radius: 20px;
    padding: 32px 30px;
    border-left: 5px solid var(--brick-red);
    align-items: flex-start;
}

.narrative-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(189, 46, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--brick-red);
}

.narrative-text h5 {
    font-family: var(--heading-custom);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.narrative-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.narrative-text p strong {
    color: var(--brick-red);
}

.highlight-text {
    display: inline-block;
    background: rgba(242, 214, 46, 0.15);
    color: var(--primary-color);
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
}

.logo-meaning-card-minimal p { 
    font-size : 16.5px !important;
}

.policy-section{padding:80px 0}
.policy-content{max-width:850px;margin:0 auto}
.policy-content h3{font-family:var(--heading-custom);font-size:22px;color:var(--primary-color);margin:36px 0 14px;padding-left:14px;border-left:4px solid var(--golden)}
.policy-content h3:first-child{margin-top:0}
.policy-content p{font-size:15px;line-height:1.8;color:#555;margin-bottom:16px}
.policy-content ul{padding-left:20px;margin-bottom:16px}
.policy-content ul li{font-size:15px;line-height:1.8;color:#555;margin-bottom:8px}
.policy-content ul li::marker{color:var(--pear-green)}
.policy-updated{display:inline-block;background:var(--secondary-color);color:var(--primary-color);font-size:13px;font-weight:600;padding:8px 18px;border-radius:50px;margin-bottom:30px}