/**
 * TOP Theme Styles
 *
 * IMPORTANT: You need to copy your existing CSS from the HTML version here.
 * This file is referenced by the WordPress theme and should contain all your
 * custom styles for colors, typography, spacing, sections, etc.
 *
 * The theme already loads:
 * - Bootstrap 5.3.0
 * - Google Fonts (Montserrat and Merriweather)
 *
 * Add your custom styles below this comment.
 */

/* ========================================
   ADD YOUR CUSTOM CSS BELOW THIS LINE
   ======================================== */
/* =====================================================
   TOP — TARGETED OPPORTUNITY PIPELINE
   Complete Stylesheet (style.css)
   Brand-Spec Compliant
   ===================================================== */

/* --- CSS Variables (from spec page 18) --- */
:root {
    --top-yellow: #F2B705;
    --top-blue: #2F3E4E;
    --top-teal: #3FA6A0;
    --top-bg-light: #F7F7F7;
    --top-white: #ffffff;
    --top-yellow-hover: #d9a504;
    --top-blue-light: #4a5e6e;
    --top-teal-light: #5bc4ba;
}

/* --- Global Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--top-blue);
    background: var(--top-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--top-blue);
}

.programme-name {
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: var(--top-teal);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Wave Decorations (Reusable SVG backgrounds) --- */
.wave-decoration,
.wave-decoration-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%233FA6A0' fill-opacity='0.3' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,70 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23F2B705' fill-opacity='0.4' d='M0,80 C360,20 720,100 1080,40 C1260,10 1380,30 1440,50 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%232F3E4E' fill-opacity='0.12' d='M0,90 C480,30 960,110 1440,50 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.wave-decoration-middle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%233FA6A0' fill-opacity='0.25' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,65 1440,55 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F2B705' fill-opacity='0.35' d='M0,65 C360,15 720,85 1080,35 C1260,10 1380,25 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

.wave-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%233FA6A0' fill-opacity='0.25' d='M0,40 C300,90 600,10 900,50 C1100,70 1300,60 1440,45 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F2B705' fill-opacity='0.3' d='M0,60 C400,10 800,80 1200,30 C1350,15 1400,20 1440,35 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

.wave-decoration-apply {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23F2B705' fill-opacity='0.2' d='M0,40 C360,0 720,80 1080,30 C1260,10 1380,20 1440,35 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}


/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
    background: var(--top-white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 70px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--top-blue) !important;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--top-teal) !important;
}

.nav-link.active {
    border-bottom: 2px solid var(--top-yellow);
}

.btn-apply {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 2px solid var(--top-blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232F3E4E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.section-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.check-icon {
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.check-icon.teal,
.check-icon:not(.yellow) {
    color: var(--top-teal);
}

.check-icon.yellow {
    color: var(--top-yellow);
}

.detail-image,
.feature-image {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   HOME PAGE
   ========================================================= */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
    min-height: 480px;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--top-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(242, 183, 5, 0.35);
}

.btn-secondary-custom {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: transparent;
    border: 2px solid var(--top-blue);
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--top-blue);
    color: var(--top-white);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- What is TOP Section --- */
.what-is-section {
    padding: 80px 0;
    background: var(--top-white);
}

.features-box {
    background: var(--top-bg-light);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid var(--top-yellow);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-checkmark {
    color: var(--top-teal);
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--top-blue);
    line-height: 1.5;
}

/* --- Pipeline Section --- */
.pipeline-section {
    padding: 80px 0;
    background: var(--top-bg-light);
}

.pipeline-intro {
    font-size: 1.05rem;
    color: var(--top-blue-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.pipeline-steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pipeline-step {
    background: var(--top-white);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.pipeline-step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--top-yellow);
    color: var(--top-blue);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--top-blue-light);
    margin: 0;
}

/* --- Who Section --- */
.who-section {
    padding: 80px 0;
    background: var(--top-white);
}

.who-card {
    background: var(--top-bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-4px);
}

.who-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.who-card-content {
    padding: 24px;
}

.who-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.who-card-text {
    font-size: 0.95rem;
    color: var(--top-blue-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-card {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: var(--top-yellow-hover);
    color: var(--top-blue);
    transform: translateY(-2px);
}

/* --- Why Different Section (Home page Section 5) --- */
.why-different-section {
    padding: 80px 0;
    background: var(--top-bg-light);
}

.why-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
}

.why-different-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--top-blue);
}

.why-different-item .check-icon {
    color: var(--top-teal);
    font-size: 1.2rem;
    margin-top: 2px;
}


/* =========================================================
   CTA SECTION (Global)
   ========================================================= */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--top-teal), var(--top-blue));
}

.cta-section h2 {
    color: var(--top-white);
    font-size: 1.75rem;
}

.cta-section .btn-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--top-blue);
    border-radius: 50px;
    padding: 12px 28px;
}

.cta-section .btn-outline-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
}


/* =========================================================
   FOOTER (Global)
   ========================================================= */
.footer-section {
    padding: 40px 0;
    background: var(--top-bg-light);
    border-top: 3px solid var(--top-yellow);
}

.footer-logo {
    height: 60px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: var(--top-teal);
    font-size: 0.95rem;
    margin: 0;
}

.footer-website {
    font-weight: 600;
    font-size: 1rem;
    color: var(--top-blue);
    margin: 0;
}

.social-footer {
    padding: 16px 0;
    background: var(--top-blue);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--top-white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--top-yellow);
    color: var(--top-blue);
}


/* =========================================================
   PROGRAMME PAGE
   ========================================================= */
.page-header-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--top-teal);
    margin-bottom: 16px;
}

.page-description {
    font-size: 1rem;
    color: var(--top-blue-light);
    max-width: 700px;
    line-height: 1.7;
}

/* Pathway Flow */
.pathway-flow-section {
    padding: 60px 0;
    background: var(--top-white);
}

.section-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 30px;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.process-flow-steps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.flow-step {
    background: var(--top-bg-light);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    border-top: 3px solid var(--top-yellow);
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
}

.flow-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--top-yellow);
    color: var(--top-blue);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.flow-step .step-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.flow-description {
    font-size: 0.92rem;
    color: var(--top-blue-light);
    line-height: 1.6;
}

/* Evaluation Focus Box */
.evaluation-focus-box {
    background: var(--top-bg-light);
    border-radius: 14px;
    padding: 30px;
    border-left: 4px solid var(--top-teal);
}

.focus-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 18px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--top-blue);
    margin-bottom: 10px;
}

/* Step Detail Section */
.step-detail-section {
    padding: 70px 0;
    background: var(--top-white);
}

.step-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 14px;
}

.step-detail-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.key-principle-box {
    background: var(--top-bg-light);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--top-yellow);
}

.principle-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--top-white);
    background: var(--top-teal);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 10px;
}

.principle-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Core Programme Detail */
.core-programme-section {
    padding: 70px 0;
    background: var(--top-bg-light);
}

.core-areas-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.core-area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}

/* Specialised Tracks Detail */
.specialised-tracks-section {
    padding: 70px 0;
    background: var(--top-white);
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}

/* Why Works Section */
.why-works-section {
    position: relative;
    padding: 70px 0;
    background: var(--top-bg-light);
    overflow: hidden;
}

.works-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 24px;
}

.works-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.works-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.works-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}


/* =========================================================
   PARTICIPANTS PAGE
   ========================================================= */
.hero-description {
    font-size: 1.05rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    max-width: 650px;
    margin-top: 16px;
}

.participants-gain-section {
    position: relative;
    padding: 80px 0;
    background: var(--top-white);
    overflow: hidden;
}

.gain-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}

.who-apply-section {
    position: relative;
    padding: 80px 0;
    background: var(--top-bg-light);
    overflow: hidden;
}

.who-apply-section-alt {
    padding: 80px 0;
    background: var(--top-white);
}

.apply-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}


/* =========================================================
   FACILITATORS PAGE
   ========================================================= */
.facilitator-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
    min-height: 480px;
}

.facilitator-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.facilitator-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.facilitator-hero-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.8;
    max-width: 500px;
}

.facilitator-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.facilitator-looking-section {
    padding: 80px 0;
    background: var(--top-white);
}

.facilitator-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.facilitator-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--top-blue);
    line-height: 1.5;
}

.facilitator-image-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.facilitator-image-frame img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    max-height: 350px;
}

.facilitator-why-section {
    position: relative;
    padding: 80px 0;
    background: var(--top-bg-light);
    overflow: hidden;
}

.facilitator-apply-section {
    padding: 60px 0;
    background: var(--top-white);
}

.facilitator-apply-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 30px;
}

.btn-facilitator-apply {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--top-blue);
    background: transparent;
    border: 2.5px solid var(--top-yellow);
    border-radius: 50px;
    padding: 14px 40px;
    transition: all 0.3s ease;
}

.btn-facilitator-apply:hover {
    background: var(--top-yellow);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.4);
}


/* =========================================================
   PARTNER PAGE
   ========================================================= */
.partner-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
    min-height: 460px;
}

.partner-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 14px;
    line-height: 1.2;
}

.partner-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.partner-hero-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.8;
    max-width: 480px;
}

.partner-hero-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.partner-types-section {
    padding: 70px 0 50px;
    background: var(--top-white);
}

.partner-types-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 36px;
}

.partner-types-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.partner-type-card {
    background: var(--top-bg-light);
    border-radius: 16px;
    padding: 30px 22px;
    height: 100%;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.partner-type-icon {
    margin-bottom: 18px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-type-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 18px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-type-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.partner-type-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--top-blue-light);
    line-height: 1.5;
}

.partner-cta-section {
    position: relative;
    padding: 50px 0 60px;
    background: var(--top-white);
    overflow: hidden;
}

.btn-partner-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--top-blue);
    background: transparent;
    border: 2.5px solid var(--top-yellow);
    border-radius: 50px;
    padding: 14px 48px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-partner-cta:hover {
    background: var(--top-yellow);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.4);
}


/* =========================================================
   APPLY PAGE
   ========================================================= */
.apply-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
}

.apply-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.apply-hero-text {
    font-size: 1.05rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    max-width: 600px;
}

.apply-paths-section {
    padding: 80px 0;
    background: var(--top-white);
}

.apply-path-card {
    background: var(--top-bg-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--top-yellow);
}

.apply-path-card:hover {
    transform: translateY(-4px);
}

.apply-path-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--top-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.apply-path-icon svg {
    color: var(--top-blue);
}

.apply-path-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 14px;
}

.apply-path-text {
    font-size: 0.95rem;
    color: var(--top-blue-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-apply-path {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-apply-path:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(242, 183, 5, 0.35);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
    .hero-section,
    .facilitator-hero-section,
    .partner-hero-section,
    .apply-hero-section {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .hero-title,
    .facilitator-hero-title,
    .partner-hero-title {
        font-size: 2.2rem;
    }

    .apply-hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .pipeline-steps,
    .process-flow-steps {
        gap: 14px;
    }

    .pipeline-step,
    .flow-step {
        min-width: 150px;
    }

    .why-different-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .facilitator-hero-section,
    .partner-hero-section,
    .apply-hero-section {
        padding: 40px 0 40px;
    }

    .hero-title,
    .facilitator-hero-title,
    .partner-hero-title {
        font-size: 1.8rem;
    }

    .apply-hero-title {
        font-size: 1.7rem;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .hero-subtitle,
    .facilitator-hero-subtitle,
    .partner-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .pipeline-steps,
    .process-flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .pipeline-step,
    .flow-step {
        max-width: 100%;
        width: 100%;
    }

    .who-section,
    .what-is-section,
    .pipeline-section,
    .participants-gain-section,
    .who-apply-section,
    .who-apply-section-alt,
    .facilitator-looking-section,
    .facilitator-why-section,
    .partner-types-section,
    .apply-paths-section {
        padding: 50px 0;
    }

    .wave-decoration,
    .wave-decoration-hero {
        height: 70px;
    }

    .wave-decoration-middle,
    .wave-decoration-bottom {
        height: 60px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .hero-title,
    .facilitator-hero-title,
    .partner-hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        width: 100%;
    }
}

/* Apply */
/* =====================================================
   TOP — TARGETED OPPORTUNITY PIPELINE
   Complete Stylesheet (style.css)
   Brand-Spec Compliant
   ===================================================== */

/* --- CSS Variables (from spec page 18) --- */
:root {
    --top-yellow: #F2B705;
    --top-blue: #2F3E4E;
    --top-teal: #3FA6A0;
    --top-bg-light: #F7F7F7;
    --top-white: #ffffff;
    --top-yellow-hover: #d9a504;
    --top-blue-light: #4a5e6e;
    --top-teal-light: #5bc4ba;
}

/* --- Global Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: var(--top-blue);
    background: var(--top-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--top-blue);
}

.programme-name {
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: var(--top-teal);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- Wave Decorations (Reusable SVG backgrounds) --- */
.wave-decoration,
.wave-decoration-hero {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%233FA6A0' fill-opacity='0.3' d='M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,70 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23F2B705' fill-opacity='0.4' d='M0,80 C360,20 720,100 1080,40 C1260,10 1380,30 1440,50 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%232F3E4E' fill-opacity='0.12' d='M0,90 C480,30 960,110 1440,50 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.wave-decoration-middle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%233FA6A0' fill-opacity='0.25' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,65 1440,55 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F2B705' fill-opacity='0.35' d='M0,65 C360,15 720,85 1080,35 C1260,10 1380,25 1440,40 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

.wave-decoration-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%233FA6A0' fill-opacity='0.25' d='M0,40 C300,90 600,10 900,50 C1100,70 1300,60 1440,45 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center,
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23F2B705' fill-opacity='0.3' d='M0,60 C400,10 800,80 1200,30 C1350,15 1400,20 1440,35 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}

.wave-decoration-apply {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23F2B705' fill-opacity='0.2' d='M0,40 C360,0 720,80 1080,30 C1260,10 1380,20 1440,35 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
}


/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
    background: var(--top-white);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 70px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--top-blue) !important;
    padding: 8px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--top-teal) !important;
}

.nav-link.active {
    border-bottom: 2px solid var(--top-yellow);
}

.btn-apply {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 2px solid var(--top-blue);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232F3E4E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =========================================================
   SHARED SECTION STYLES
   ========================================================= */
.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.section-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.check-icon {
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.check-icon.teal,
.check-icon:not(.yellow) {
    color: var(--top-teal);
}

.check-icon.yellow {
    color: var(--top-yellow);
}

.detail-image,
.feature-image {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}


/* =========================================================
   HOME PAGE
   ========================================================= */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
    min-height: 480px;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--top-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(242, 183, 5, 0.35);
}

.btn-secondary-custom {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: transparent;
    border: 2px solid var(--top-blue);
    border-radius: 50px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--top-blue);
    color: var(--top-white);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- What is TOP Section --- */
.what-is-section {
    padding: 80px 0;
    background: var(--top-white);
}

.features-box {
    background: var(--top-bg-light);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid var(--top-yellow);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-checkmark {
    color: var(--top-teal);
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--top-blue);
    line-height: 1.5;
}

/* --- Pipeline Section --- */
.pipeline-section {
    padding: 80px 0;
    background: var(--top-bg-light);
}

.pipeline-intro {
    font-size: 1.05rem;
    color: var(--top-blue-light);
    margin-bottom: 40px;
    max-width: 600px;
}

.pipeline-steps {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pipeline-step {
    background: var(--top-white);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.pipeline-step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--top-yellow);
    color: var(--top-blue);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--top-blue-light);
    margin: 0;
}

/* --- Who Section --- */
.who-section {
    padding: 80px 0;
    background: var(--top-white);
}

.who-card {
    background: var(--top-bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-4px);
}

.who-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.who-card-content {
    padding: 24px;
}

.who-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.who-card-text {
    font-size: 0.95rem;
    color: var(--top-blue-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-card {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-card:hover {
    background: var(--top-yellow-hover);
    color: var(--top-blue);
    transform: translateY(-2px);
}

/* --- Why Different Section (Home page Section 5) --- */
.why-different-section {
    padding: 80px 0;
    background: var(--top-bg-light);
}

.why-different-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
}

.why-different-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--top-blue);
}

.why-different-item .check-icon {
    color: var(--top-teal);
    font-size: 1.2rem;
    margin-top: 2px;
}


/* =========================================================
   CTA SECTION (Global)
   ========================================================= */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--top-teal), var(--top-blue));
}

.cta-section h2 {
    color: var(--top-white);
    font-size: 1.75rem;
}

.cta-section .btn-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--top-blue);
    border-radius: 50px;
    padding: 12px 28px;
}

.cta-section .btn-outline-light {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 28px;
}


/* =========================================================
   FOOTER (Global)
   ========================================================= */
.footer-section {
    padding: 40px 0;
    background: var(--top-bg-light);
    border-top: 3px solid var(--top-yellow);
}

.footer-logo {
    height: 60px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    color: var(--top-teal);
    font-size: 0.95rem;
    margin: 0;
}

.footer-website {
    font-weight: 600;
    font-size: 1rem;
    color: var(--top-blue);
    margin: 0;
}

.social-footer {
    padding: 16px 0;
    background: var(--top-blue);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--top-white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--top-yellow);
    color: var(--top-blue);
}


/* =========================================================
   PROGRAMME PAGE
   ========================================================= */
.page-header-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--top-teal);
    margin-bottom: 16px;
}

.page-description {
    font-size: 1rem;
    color: var(--top-blue-light);
    max-width: 700px;
    line-height: 1.7;
}

/* Pathway Flow */
.pathway-flow-section {
    padding: 60px 0;
    background: var(--top-white);
}

.section-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 30px;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.process-flow-steps {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.flow-step {
    background: var(--top-bg-light);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    border-top: 3px solid var(--top-yellow);
    transition: transform 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
}

.flow-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--top-yellow);
    color: var(--top-blue);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.flow-step .step-content h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.flow-description {
    font-size: 0.92rem;
    color: var(--top-blue-light);
    line-height: 1.6;
}

/* Evaluation Focus Box */
.evaluation-focus-box {
    background: var(--top-bg-light);
    border-radius: 14px;
    padding: 30px;
    border-left: 4px solid var(--top-teal);
}

.focus-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 18px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--top-blue);
    margin-bottom: 10px;
}

/* Step Detail Section */
.step-detail-section {
    padding: 70px 0;
    background: var(--top-white);
}

.step-detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 14px;
}

.step-detail-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.key-principle-box {
    background: var(--top-bg-light);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--top-yellow);
}

.principle-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--top-white);
    background: var(--top-teal);
    border-radius: 20px;
    padding: 4px 14px;
    margin-bottom: 10px;
}

.principle-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Core Programme Detail */
.core-programme-section {
    padding: 70px 0;
    background: var(--top-bg-light);
}

.core-areas-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.core-area-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}

/* Specialised Tracks Detail */
.specialised-tracks-section {
    padding: 70px 0;
    background: var(--top-white);
}

.tracks-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}

/* Why Works Section */
.why-works-section {
    position: relative;
    padding: 70px 0;
    background: var(--top-bg-light);
    overflow: hidden;
}

.works-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 24px;
}

.works-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.works-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.works-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}


/* =========================================================
   PARTICIPANTS PAGE
   ========================================================= */
.hero-description {
    font-size: 1.05rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    max-width: 650px;
    margin-top: 16px;
}

.participants-gain-section {
    position: relative;
    padding: 80px 0;
    background: var(--top-white);
    overflow: hidden;
}

.gain-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}

.who-apply-section {
    position: relative;
    padding: 80px 0;
    background: var(--top-bg-light);
    overflow: hidden;
}

.who-apply-section-alt {
    padding: 80px 0;
    background: var(--top-white);
}

.apply-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.apply-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--top-blue);
}


/* =========================================================
   FACILITATORS PAGE
   ========================================================= */
.facilitator-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
    min-height: 480px;
}

.facilitator-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.facilitator-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.facilitator-hero-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.8;
    max-width: 500px;
}

.facilitator-hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.facilitator-looking-section {
    padding: 80px 0;
    background: var(--top-white);
}

.facilitator-checklist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.facilitator-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--top-blue);
    line-height: 1.5;
}

.facilitator-image-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.facilitator-image-frame img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    max-height: 350px;
}

.facilitator-why-section {
    position: relative;
    padding: 80px 0;
    background: var(--top-bg-light);
    overflow: hidden;
}

.facilitator-apply-section {
    padding: 60px 0;
    background: var(--top-white);
}

.facilitator-apply-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 30px;
}

.btn-facilitator-apply {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--top-blue);
    background: transparent;
    border: 2.5px solid var(--top-yellow);
    border-radius: 50px;
    padding: 14px 40px;
    transition: all 0.3s ease;
}

.btn-facilitator-apply:hover {
    background: var(--top-yellow);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.4);
}


/* =========================================================
   PARTNER PAGE
   ========================================================= */
.partner-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
    min-height: 460px;
}

.partner-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 14px;
    line-height: 1.2;
}

.partner-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 20px;
    line-height: 1.4;
}

.partner-hero-text {
    font-size: 1rem;
    color: var(--top-blue-light);
    line-height: 1.8;
    max-width: 480px;
}

.partner-hero-image img {
    width: 100%;
    max-width: 540px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.partner-types-section {
    padding: 70px 0 50px;
    background: var(--top-white);
}

.partner-types-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 36px;
}

.partner-types-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--top-yellow);
    margin-top: 10px;
}

.partner-type-card {
    background: var(--top-bg-light);
    border-radius: 16px;
    padding: 30px 22px;
    height: 100%;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.partner-type-icon {
    margin-bottom: 18px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-type-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 18px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-type-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: left;
}

.partner-type-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--top-blue-light);
    line-height: 1.5;
}

.partner-cta-section {
    position: relative;
    padding: 50px 0 60px;
    background: var(--top-white);
    overflow: hidden;
}

.btn-partner-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--top-blue);
    background: transparent;
    border: 2.5px solid var(--top-yellow);
    border-radius: 50px;
    padding: 14px 48px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-partner-cta:hover {
    background: var(--top-yellow);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 183, 5, 0.4);
}


/* =========================================================
   APPLY PAGE
   ========================================================= */
.apply-hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--top-bg-light);
    overflow: hidden;
}

.apply-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--top-blue);
    margin-bottom: 16px;
    line-height: 1.2;
}

.apply-hero-text {
    font-size: 1.05rem;
    color: var(--top-blue-light);
    line-height: 1.7;
    max-width: 600px;
}

.apply-paths-section {
    padding: 80px 0;
    background: var(--top-white);
}

.apply-path-card {
    background: var(--top-bg-light);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--top-yellow);
}

.apply-path-card:hover {
    transform: translateY(-4px);
}

.apply-path-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--top-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.apply-path-icon svg {
    color: var(--top-blue);
}

.apply-path-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-bottom: 14px;
}

.apply-path-text {
    font-size: 0.95rem;
    color: var(--top-blue-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-apply-path {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-apply-path:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    color: var(--top-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(242, 183, 5, 0.35);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
    .hero-section,
    .facilitator-hero-section,
    .partner-hero-section,
    .apply-hero-section {
        padding: 60px 0 50px;
        min-height: auto;
    }

    .hero-title,
    .facilitator-hero-title,
    .partner-hero-title {
        font-size: 2.2rem;
    }

    .apply-hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .pipeline-steps,
    .process-flow-steps {
        gap: 14px;
    }

    .pipeline-step,
    .flow-step {
        min-width: 150px;
    }

    .why-different-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .facilitator-hero-section,
    .partner-hero-section,
    .apply-hero-section {
        padding: 40px 0 40px;
    }

    .hero-title,
    .facilitator-hero-title,
    .partner-hero-title {
        font-size: 1.8rem;
    }

    .apply-hero-title {
        font-size: 1.7rem;
    }

    .page-title {
        font-size: 1.7rem;
    }

    .hero-subtitle,
    .facilitator-hero-subtitle,
    .partner-hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .pipeline-steps,
    .process-flow-steps {
        flex-direction: column;
        align-items: center;
    }

    .pipeline-step,
    .flow-step {
        max-width: 100%;
        width: 100%;
    }

    .who-section,
    .what-is-section,
    .pipeline-section,
    .participants-gain-section,
    .who-apply-section,
    .who-apply-section-alt,
    .facilitator-looking-section,
    .facilitator-why-section,
    .partner-types-section,
    .apply-paths-section {
        padding: 50px 0;
    }

    .wave-decoration,
    .wave-decoration-hero {
        height: 70px;
    }

    .wave-decoration-middle,
    .wave-decoration-bottom {
        height: 60px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }

    .navbar-brand img {
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .hero-title,
    .facilitator-hero-title,
    .partner-hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        text-align: center;
        width: 100%;
    }
}
    color: var(--top-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--top-yellow);
}

.form-subsection-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--top-blue);
    margin-top: 28px;
    margin-bottom: 14px;
}

.form-help-text {
    font-size: 0.88rem;
    color: var(--top-blue-light);
    margin-bottom: 12px;
}

.form-label {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--top-blue);
    margin-bottom: 6px;
}

.required {
    color: #e53e3e;
}

.form-control,
.form-select {
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    color: var(--top-blue);
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--top-teal);
    box-shadow: 0 0 0 3px rgba(63, 166, 160, 0.15);
}

/* Rating Grid */
.rating-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 16px;
    background: var(--top-white);
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.rating-label {
    font-size: 0.9rem;
    color: var(--top-blue);
    flex: 1;
    min-width: 200px;
}

.rating-options {
    display: flex;
    gap: 8px;
}

.rating-option {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-option input[type="radio"] {
    display: none;
}

.rating-option span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #999;
    transition: all 0.2s ease;
}

.rating-option input[type="radio"]:checked + span {
    background: var(--top-yellow);
    border-color: var(--top-yellow);
    color: var(--top-blue);
}

.rating-option:hover span {
    border-color: var(--top-teal);
    color: var(--top-teal);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--top-blue);
    cursor: pointer;
    padding: 8px 12px;
    background: var(--top-white);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.checkbox-item:hover {
    border-color: var(--top-teal);
}

.checkbox-item input[type="checkbox"] {
    accent-color: var(--top-teal);
    width: 16px;
    height: 16px;
}

/* Radio Items */
.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    accent-color: var(--top-teal);
    width: 16px;
    height: 16px;
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-form-next,
.btn-form-submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue);
    background: var(--top-yellow);
    border: 2px solid var(--top-yellow);
    border-radius: 50px;
    padding: 10px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-next:hover,
.btn-form-submit:hover {
    background: var(--top-yellow-hover);
    border-color: var(--top-yellow-hover);
    transform: translateY(-1px);
}

.btn-form-prev {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--top-blue-light);
    background: transparent;
    border: 2px solid #d1d5db;
    border-radius: 50px;
    padding: 10px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-form-prev:hover {
    border-color: var(--top-blue);
    color: var(--top-blue);
}

/* Confirmation */
.confirm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--top-teal);
    color: var(--top-white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Responsive form adjustments */
@media (max-width: 767.98px) {
    .form-wrapper {
        padding: 24px 18px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .rating-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-options {
        width: 100%;
        justify-content: space-between;
    }

    .progress-line {
        width: 30px;
    }

    .progress-labels {
        font-size: 0.65rem;
    }

    .form-nav {
        flex-direction: column;
        gap: 12px;
    }

    .form-nav .btn-form-prev,
    .form-nav .btn-form-next,
    .form-nav .btn-form-submit {
        width: 100%;
        text-align: center;
    }
}