:root {
    --primary-blue: #03224d;
    --primary-red: #c24132;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(3, 34, 77, 0.1);
    --shadow-md: 0 6px 12px rgba(3, 34, 77, 0.15);
    --shadow-lg: 0 10px 25px rgba(3, 34, 77, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    text-align: center;
    color: var(--gray-color);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.title-highlight {
    color: var(--primary-red);
    position: relative;
    display: inline-block;
}

.section-badge {
    display: inline-block;
    background-color: rgba(3, 34, 77, 0.1);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== BUTTONS - RECTANGLE STYLE ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-weight: 600;
}

/* Desktop buttons */
.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 0;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #021a3a;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 0;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ===== HERO BUTTONS ===== */
.hero-cta .btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 32px;
    border-radius: 0;
    font-size: 1rem;
}

.hero-cta .btn-primary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.hero-cta .btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 32px;
    border-radius: 0;
    font-size: 1rem;
}

.hero-cta .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1rem;
}

/* ===== HERO SECTION - WITH SUBTLE OVERLAY ===== */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Subtle Overlay - matches page colors */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 25, 36, 0.85) 0%, rgba(9, 7, 26, 0.8) 100%);
    z-index: 1;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 20px;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-red);
    padding-left: 20px;
}

.about-text p {
    margin-bottom: 25px;
    color: #4a5568;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #f8fafc;
    border-radius: 16px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(3, 34, 77, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 24px;
    color: var(--primary-red);
}

.highlight-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.highlight-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-timeline {
    background: var(--primary-blue);
    border-radius: 24px;
    padding: 35px;
    color: white;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.timeline-wrapper {
    position: relative;
    padding-left: 30px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 25px;
}

.timeline-dot {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 2px solid white;
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.strategic-alignment {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    padding: 20px 30px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
}

.alignment-icon i {
    font-size: 2rem;
    color: var(--primary-red);
}

/* ===== VISION & MISSION ===== */
.vision-mission-section {
    padding: 60px 0;
    background: var(--light-color);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vm-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.vm-card.vision {
    border-top: 4px solid var(--primary-blue);
}

.vm-card.mission {
    border-top: 4px solid var(--primary-red);
}

.vm-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-color);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 60px 0;
    background: var(--light-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-item {
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.value-item i {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-red);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ===== CAROUSEL COMMON STYLES ===== */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    width: calc(100% - 100px);
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.4s ease;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    flex-shrink: 0;
    border-radius: 0;
}

.carousel-btn:hover {
    background: var(--primary-red);
}

/* ===== PROGRAM CAROUSEL CARDS ===== */
.programs-carousel-section {
    padding: 60px 0;
    background: var(--white);
}

.program-carousel-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eef2f6;
}

.program-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-image-placeholder {
    width: 100%;
    margin: 0 0 20px;
    display: flex;
    justify-content: center;
}

.program-wordmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(3, 34, 77, 0.08);
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.program-carousel-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.program-carousel-card p {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.program-features span {
    font-size: 0.7rem;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--primary-blue);
}

/* ===== STAKEHOLDER CAROUSEL ===== */
.stakeholder-carousel-section {
    padding: 60px 0;
    background: var(--light-color);
}

.stakeholder-card {
    flex: 0 0 220px;
    background: var(--white);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stakeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stakeholder-image-placeholder {
    position: relative;
    width: 100%;
    min-height: 110px;
    margin: 0 0 15px;
    padding: 14px;
    background: linear-gradient(145deg, #eef4fa, #dce8f4);
    border: 2px ;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--primary-blue);
    border-radius: 16px;
    overflow: hidden;
}

.stakeholder-image-placeholder > * {
    position: relative;
    z-index: 1;
}

.stakeholder-image-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.stakeholder-image-placeholder img[src=""] {
    display: none;
}

.placeholder-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
}

.placeholder-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 100%;
    word-break: break-word;
}

.stakeholder-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.stakeholder-card p {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* ===== STRATEGIC VALUE ===== */
.strategic-value {
    padding: 60px 0;
    background: var(--white);
}

.strategic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.strategic-card {
    padding: 30px;
    background: #f8fafc;
    border-radius: 20px;
}

.strategic-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.strategic-card ul {
    list-style: none;
}

.strategic-card li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.strategic-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* ===== TARGET GROUP ===== */
.target-group {
    padding: 60px 0;
    background: var(--light-color);
}

.target-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.target-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.target-content h3 {
    margin: 20px 0 15px;
    color: var(--primary-blue);
}

.target-content ul {
    list-style: none;
}

.target-content li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.target-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* ===== RECRUITMENT SECTION ===== */
.recruitment-section {
    padding: 60px 0;
    background: var(--primary-blue);
    color: white;
}

.recruitment-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.recruitment-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.recruitment-text p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.benefits-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin-bottom: 25px;
}

.benefits-box h4 {
    margin-bottom: 15px;
}

.benefits-box ul {
    list-style: none;
    text-align: left;
    display: inline-block;
}

.benefits-box li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.benefits-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

/* ===== ACTIVITIES SECTION ===== */
.activities-section {
    padding: 60px 0;
    background: var(--white);
}

.activities-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.activities-card, .outcomes-card {
    padding: 40px;
    background: #f8fafc;
    border-radius: 20px;
}

.activities-card h3, .outcomes-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    text-align: center;
}

.activities-list, .outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item, .outcome-item {
    padding: 15px 20px;
    background: var(--white);
    border-radius: 12px;
    font-size: 0.95rem;
    border-left: 3px solid var(--primary-red);
    transition: var(--transition);
}

.activity-item:hover, .outcome-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

/* ===== GOVERNANCE SECTION ===== */
.governance-section {
    padding: 60px 0;
    background: var(--light-color);
}

.governance-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.governance-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.governance-card h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
    width: auto;
}

.governance-card p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.governance-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.governance-item {
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 10px;
    font-size: 0.9rem;
    border-left: 3px solid var(--primary-red);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    background: var(--primary-red);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-red);
    padding: 12px 28px;
    font-size: 0.95rem;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE - MOBILE COMPATIBLE ===== */
@media (max-width: 992px) {
    .about-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid, .strategic-grid, .governance-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .activities-wrapper {
        grid-template-columns: 1fr;
    }
    
    .carousel-track-container {
        width: calc(100% - 80px);
    }
    
    .program-carousel-card {
        flex: 0 0 260px;
    }
    
    .stakeholder-card {
        flex: 0 0 200px;
    }
    
    /* Hero tablet adjustments */
    .hero {
        height: 60vh;
        min-height: 450px;
        max-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 500px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline-light {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 400px;
        max-height: 500px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        max-width: 400px;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline-light {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .vm-grid, .governance-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-grid, .strategic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-track-container {
        width: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .strategic-alignment {
        flex-direction: column;
        text-align: center;
    }
    
    .program-carousel-card {
        flex: 0 0 260px;
    }
    
    .activities-card, .outcomes-card {
        padding: 25px;
    }
    
    .governance-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero section - small mobile - REDUCED HEIGHT & SMALLER BUTTONS */
    .hero {
        height: 45vh;
        min-height: 320px;
        max-height: 400px;
    }
    
    .hero-eyebrow {
        font-size: 0.55rem;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }
    
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .hero-description {
        font-size: 0.7rem;
        margin-bottom: 14px;
        max-width: 280px;
        line-height: 1.3;
    }
    
    .hero-cta {
        gap: 8px;
    }
    
    /* FIXED SMALL BUTTONS ON MOBILE */
    .hero-cta .btn-primary,
    .hero-cta .btn-outline-light {
        padding: 6px 14px;
        font-size: 0.65rem;
        min-width: 100px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-highlights {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .program-carousel-card {
        flex: 0 0 240px;
    }
    
    .stakeholder-card {
        flex: 0 0 170px;
    }
    
    .activity-item, .outcome-item {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .governance-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .strategic-card {
        padding: 20px;
    }
    
    .strategic-card h3 {
        font-size: 1.1rem;
    }
    
    .vm-card {
        padding: 25px;
    }
    
    .vm-card h3 {
        font-size: 1.3rem;
    }
}

/* Extra small devices */
@media (max-width: 400px) {
    .hero {
        height: 40vh;
        min-height: 280px;
        max-height: 350px;
    }
    
    .hero-title {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.6rem;
        max-width: 250px;
        margin-bottom: 10px;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-outline-light {
        padding: 5px 10px;
        font-size: 0.6rem;
        min-width: 85px;
    }
}
