/* National Leadership Academy - Modern Website Styles */

:root {
    --primary-color: #418FDE;
    --secondary-color: #2c2c2c;
    --accent-gold: #FFD700;
    --text-charcoal: #2c2c2c;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Merriweather', serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-charcoal);
    line-height: 1.6;
    font-size: 16px;
    padding-top: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-charcoal);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-monument-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    gap: 0;
    z-index: 0;
}

.monument-grid-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Individual monument animations with different timings */
.monument-1 {
    animation: monumentMove1 25s ease-in-out infinite;
}

.monument-2 {
    animation: monumentMove2 30s ease-in-out infinite;
}

.monument-3 {
    animation: monumentMove3 28s ease-in-out infinite;
}

.monument-4 {
    animation: monumentMove4 32s ease-in-out infinite;
}

.monument-5 {
    animation: monumentMove5 27s ease-in-out infinite;
}

@keyframes monumentMove1 {
    0%, 100% {
        transform: scale(1.3) translate(0, 0);
    }
    25% {
        transform: scale(1.35) translate(-1.5%, -1%);
    }
    50% {
        transform: scale(1.38) translate(1%, 1.5%);
    }
    75% {
        transform: scale(1.33) translate(-0.8%, 0.8%);
    }
}

@keyframes monumentMove2 {
    0%, 100% {
        transform: scale(1.3) translate(0, 0);
    }
    20% {
        transform: scale(1.38) translate(1.5%, -1.5%);
    }
    40% {
        transform: scale(1.35) translate(-1.2%, 1.5%);
    }
    60% {
        transform: scale(1.4) translate(1.8%, 0.8%);
    }
    80% {
        transform: scale(1.32) translate(-0.8%, -1.2%);
    }
}

@keyframes monumentMove3 {
    0%, 100% {
        transform: scale(1.3) translate(0, 0);
    }
    30% {
        transform: scale(1.36) translate(-1.5%, 1.5%);
    }
    60% {
        transform: scale(1.39) translate(1.8%, -1.2%);
    }
    90% {
        transform: scale(1.34) translate(-1%, 1%);
    }
}

@keyframes monumentMove4 {
    0%, 100% {
        transform: scale(1.3) translate(0, 0);
    }
    25% {
        transform: scale(1.38) translate(1.8%, 1.5%);
    }
    50% {
        transform: scale(1.35) translate(-1.8%, -1.5%);
    }
    75% {
        transform: scale(1.4) translate(1.2%, 1.2%);
    }
}

@keyframes monumentMove5 {
    0%, 100% {
        transform: scale(1.3) translate(0, 0);
    }
    20% {
        transform: scale(1.34) translate(-1.2%, 1.5%);
    }
    40% {
        transform: scale(1.38) translate(1.5%, -1%);
    }
    60% {
        transform: scale(1.36) translate(-1.8%, 1.5%);
    }
    80% {
        transform: scale(1.33) translate(1%, -1.2%);
    }
}

@media (max-width: 768px) {
    .hero-monument-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    
    .monument-grid-item {
        background-size: cover;
    }
    
    .monument-1, .monument-2, .monument-3, .monument-4, .monument-5 {
        animation-duration: 20s;
    }
    
    .navbar-logo-text {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .hero-monument-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 58, 147, 0.75);
    z-index: 1;
}

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

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #87CEEB;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.hero-golden-line {
    width: 100px;
    height: 4px;
    background-color: var(--accent-gold);
    margin: 0 auto var(--spacing-md);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border: none;
}

.btn-hero-primary:hover {
    background-color: #357ABD;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-outline {
    background-color: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section {
    padding: 20px 0 var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--secondary-color);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
}

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

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.card-text {
    color: #666;
    margin-bottom: var(--spacing-md);
}

/* Statistics Section */
.stats-section {
    background: var(--light-bg);
    padding: var(--spacing-xl) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-charcoal);
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: var(--spacing-xl) 0;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

/* About The Academy Section */
.about-academy-section {
    padding: 60px 0 0 0;
    background: #f4f6fb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.about-academy-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.about-academy-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-academy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.about-academy-divider {
    width: 60px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 12px auto 20px;
}

.about-academy-tagline {
    text-align: center;
    color: #444;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.about-academy-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.about-academy-image {
    position: relative;
}

.about-academy-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #87CEEB;
    display: block;
    filter: grayscale(100%);
}

.about-academy-text-content {
    padding-left: 30px;
}

.academy-info-block {
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
    border-left: 3px solid #d4af37;
}

.academy-established {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.academy-vision {
    font-size: 0.85rem;
    color: #418FDE;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.academy-mission {
    margin-bottom: 25px;
}

.academy-mission p {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.academy-mission p:last-child {
    margin-bottom: 0;
}

.academy-location-block {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    border-left: 3px solid #418FDE;
}

.academy-location-block p {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.about-academy-cta {
    margin-top: 30px;
}

.btn-about-academy {
    display: inline-block;
    background-color: #418FDE;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-about-academy:hover {
    background-color: #357ABD;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65, 143, 222, 0.3);
}

@media (max-width: 992px) {
    .about-academy-content {
        padding: 30px;
    }
    
    .about-academy-image {
        margin-bottom: 30px;
    }
    
    .about-academy-text-content {
        padding-left: 0;
    }
    
    .academy-info-block,
    .academy-location-block {
        padding-left: 18px;
    }
}

@media (max-width: 768px) {
    .about-academy-section {
        padding: 40px 0;
    }
    
    .about-academy-title {
        font-size: 2rem;
    }
    
    .about-academy-divider {
        width: 50px;
        height: 3px;
        margin: 10px auto 15px;
    }
    
    .about-academy-tagline {
        font-size: 0.95rem;
    }
    
    .about-academy-content {
        padding: 25px;
    }
    
    .academy-established {
        font-size: 1.5rem;
    }
    
    .academy-vision {
        font-size: 0.8rem;
    }
    
    .academy-mission p,
    .academy-location-block p {
        font-size: 0.95rem;
    }
    
    .btn-about-academy {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .about-academy-section {
        padding: 40px 0;
    }
    
    .about-academy-title {
        font-size: 2rem;
        padding-bottom: 15px;
    }
    
    .about-academy-title::after {
        width: 80px;
        height: 4px;
    }
    
    .about-academy-tagline {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .about-academy-content-box {
        padding: 30px 20px;
    }
    
    .academy-established {
        font-size: 1.6rem;
    }
    
    .academy-vision {
        font-size: 0.85rem;
    }
    
    .academy-mission p,
    .academy-location-content p {
        font-size: 1rem;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
    font-size: 1.2rem;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff !important;
}

.vision-mission-section .container {
    padding: 40px 20px;
}

.vision-mission-section.bg-light {
    background: #ffffff !important;
}

.vision-mission-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.vision-mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.vision-mission-quote-box {
    background: #f4f6fb;
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.quote-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    gap: 12px;
}

.quote-yellow-line {
    width: 50px;
    height: 3px;
    background-color: #d4af37;
    margin: 0;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background-color: #418FDE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(65, 143, 222, 0.3);
}

.vision-mission-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #1a1a2e;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    flex: 1;
    font-family: 'Merriweather', serif;
}

.vision-mission-block {
    height: 100%;
}

.vision-mission-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.vision-mission-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #418FDE;
    border-radius: 2px;
}

.vision-mission-text {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.vision-mission-keypoints {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.keypoint-box {
    background: #f4f6fb;
    border-radius: 6px;
    padding: 15px 18px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.keypoint-box:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.keypoint-content {
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 992px) {
    .vision-mission-quote-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 30px;
    }
    
    .quote-icon-wrapper {
        width: 100%;
        justify-content: center;
    }
    
    .quote-yellow-line {
        margin-left: 15px;
    }
    
    .vision-mission-quote {
        font-size: 1.2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 40px 0;
    }
    
    .vision-mission-title {
        font-size: 2rem;
        padding-bottom: 15px;
        margin-bottom: 30px;
    }
    
    .vision-mission-title::after {
        width: 80px;
        height: 4px;
    }
    
    .vision-mission-quote-box {
        padding: 20px 25px;
        margin-bottom: 40px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .quote-yellow-line {
        width: 40px;
        height: 3px;
    }
    
    .vision-mission-quote {
        font-size: 1.1rem;
    }
    
    .vision-mission-heading {
        font-size: 1.5rem;
        padding-left: 20px;
    }
    
    .vision-mission-heading::before {
        width: 5px;
    }
    
    .vision-mission-text {
        font-size: 1rem;
    }
    
    .vision-mission-keypoints {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .keypoint-box {
        padding: 15px 18px;
        padding-left: 22px;
    }
    
    .keypoint-content {
        font-size: 0.95rem;
    }
}

/* Core Values Section */
.core-values-section {
    padding: 0 0 60px 0;
    background: linear-gradient(to bottom, #f4f6fb 0%, #eef2f7 100%);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
}

.core-values-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* Header */
.core-values-header {
    text-align: center;
    margin-bottom: 35px;
}

.core-values-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.core-values-divider {
    width: 50px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin: 10px auto 15px;
}

.core-values-subtitle {
    text-align: center;
    color: #444;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Our Guiding Principles Block */
.core-values-principles-block {
    background: #ffffff;
    border-top: 2px solid #418FDE;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.principles-icon-wrapper {
    flex-shrink: 0;
}

.principles-icon {
    width: 45px;
    height: 45px;
    background-color: #418FDE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.principles-content {
    flex: 1;
}

.principles-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.principles-text {
    color: #444;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Our Commitment Block */
.core-values-commitment-block {
    background: #ffffff;
    border-left: 2px solid #418FDE;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.commitment-icon-wrapper {
    flex-shrink: 0;
}

.commitment-icon {
    width: 45px;
    height: 45px;
    background-color: #418FDE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.commitment-content {
    flex: 1;
}

.commitment-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.commitment-text {
    color: #444;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.value-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.value-card-left {
    border-left: 2px solid #418FDE;
}

.value-card-right {
    border-left: 2px solid #d4af37;
}

.value-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    color: #ffffff;
    flex-shrink: 0;
}

.value-icon.blue {
    background-color: #418FDE;
}

.value-icon.gold {
    background-color: #d4af37;
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.value-description {
    color: #444;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
    .core-values-section {
        padding: 70px 0;
    }
    
    .core-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .core-values-principles-block,
    .core-values-commitment-block {
        flex-direction: column;
        padding: 20px 25px;
    }
    
    .principles-icon-wrapper,
    .commitment-icon-wrapper {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 50px 0;
    }
    
    .core-values-header {
        margin-bottom: 40px;
    }
    
    .core-values-title {
        font-size: 28px;
    }
    
    .core-values-divider {
        width: 50px;
        height: 3px;
        margin: 10px auto 15px;
    }
    
    .core-values-subtitle {
        font-size: 15px;
    }
    
    .core-values-principles-block,
    .core-values-commitment-block {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .principles-heading,
    .commitment-heading {
        font-size: 20px;
    }
    
    .principles-text,
    .commitment-text {
        font-size: 14px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .value-header {
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .value-title {
        font-size: 18px;
    }
    
    .value-description {
        font-size: 14px;
    }
}

/* Learning & Curriculum Section */
.learning-curriculum {
    padding: 20px 0 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Header */
.learning-curriculum .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.learning-curriculum .section-header h2 {
    font-size: 34px;
    color: #1f3c88;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.learning-curriculum .section-header .divider {
    width: 60px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 12px auto 0;
}

/* Highlight Box */
.learning-curriculum .highlight-box {
    background: #f4f6fb;
    border-left: 6px solid #4f7cd1;
    padding: 25px;
    margin-bottom: 50px;
}

.learning-curriculum .highlight-box .label {
    display: inline-block;
    background: #4f7cd1;
    color: #fff;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 3px;
    margin-bottom: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.learning-curriculum .highlight-box p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin: 0;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
}

/* Grid */
.learning-curriculum .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Image */
.learning-curriculum .image-box {
    width: 100%;
}

.learning-curriculum .image-box img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Text */
.learning-curriculum .text-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
}

.learning-curriculum .text-box .intro {
    font-weight: 600;
}

.learning-curriculum .text-box .curriculum-description {
    border-left: 4px solid #d4af37;
    padding-left: 20px;
    margin-left: 0;
}

.learning-curriculum .text-box h4 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1f3c88;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.learning-curriculum .text-box ul {
    padding-left: 20px;
    margin-bottom: 30px;
    list-style: disc;
}

.learning-curriculum .text-box ul li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

/* Button */
.learning-curriculum .btn-primary {
    display: inline-block;
    background: #4f7cd1;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    line-height: 1.5;
    text-align: center;
}

.learning-curriculum .btn-primary:hover {
    background: #3b63b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 124, 209, 0.3);
    color: #fff;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .learning-curriculum {
        padding: 60px 0;
    }
    
    .learning-curriculum .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .learning-curriculum .section-header h2 {
        font-size: 28px;
    }
    
    .learning-curriculum .highlight-box {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .learning-curriculum .highlight-box p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .learning-curriculum {
        padding: 50px 0;
    }
    
    .learning-curriculum .section-header h2 {
        font-size: 24px;
    }
    
    .learning-curriculum .section-header .divider {
        width: 50px;
        height: 3px;
    }
    
    .learning-curriculum .highlight-box {
        padding: 18px;
        margin-bottom: 30px;
    }
    
    .learning-curriculum .highlight-box .label {
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .learning-curriculum .highlight-box p {
        font-size: 15px;
    }
    
    .learning-curriculum .content-grid {
        gap: 30px;
    }
    
    .learning-curriculum .text-box p {
        font-size: 15px;
    }
    
    .learning-curriculum .text-box h4 {
        font-size: 1.2rem;
        margin-top: 20px;
    }
    
    .learning-curriculum .text-box ul li {
        font-size: 15px;
    }
    
    .learning-curriculum .btn-primary {
        padding: 12px 24px;
        font-size: 15px;
    }
}

/* Who We Serve Section */
.who-we-serve {
    padding: 20px 0 90px 0;
    background: #f4f6fb;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Header */
.who-we-serve .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.who-we-serve .section-header h2 {
    font-size: 36px;
    color: #1a1a2e;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0;
}

.who-we-serve .section-header .divider {
    width: 60px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 12px auto 0;
}

/* Timeline Container */
.who-we-serve .serve-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Vertical Divider Line */
.who-we-serve .serve-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #418FDE;
    transform: translateX(-50%);
    z-index: 0;
}

/* Serve Item */
.who-we-serve .serve-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
    position: relative;
}

.who-we-serve .serve-item:last-child {
    margin-bottom: 0;
}

/* Content Columns */
.who-we-serve .serve-content-left,
.who-we-serve .serve-content-right {
    position: relative;
    z-index: 1;
}

.who-we-serve .serve-content-left h3,
.who-we-serve .serve-content-right h3 {
    color: #1a1a2e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.who-we-serve .serve-content-left h4,
.who-we-serve .serve-content-right h4 {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.who-we-serve .serve-subtitle {
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.who-we-serve .serve-content-left p,
.who-we-serve .serve-content-right p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

/* Serve List */
.who-we-serve .serve-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
}

.who-we-serve .serve-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

.who-we-serve .serve-list li:last-child {
    margin-bottom: 0;
}

/* Checkmarks on the right for left column lists */
.who-we-serve .serve-content-left .serve-list li {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.who-we-serve .serve-content-left .serve-list li i {
    color: #d4af37;
    font-size: 16px;
    margin-left: 12px;
    margin-right: 0;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Checkmarks on the left for right column lists */
.who-we-serve .serve-content-right .serve-list li i {
    color: #d4af37;
    font-size: 16px;
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.who-we-serve .serve-list li span {
    flex: 1;
}

/* Serve Card */
.who-we-serve .serve-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Border for cards in left column */
.who-we-serve .serve-content-left .serve-card {
    border-left: 3px solid #418FDE;
}

/* Border for cards in right column */
.who-we-serve .serve-content-right .serve-card {
    border-left: 3px solid #d4af37;
}

.who-we-serve .serve-card h4 {
    color: #1a1a2e;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.who-we-serve .serve-card p {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Divider with Icon */
.who-we-serve .serve-divider {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    z-index: 2;
}

.who-we-serve .serve-divider .divider-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #418FDE;
    z-index: 0;
}

.who-we-serve .serve-divider .divider-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.who-we-serve .serve-divider .divider-icon.blue {
    background: #418FDE;
}

.who-we-serve .serve-divider .divider-icon.gold {
    background: #d4af37;
}

.who-we-serve .serve-divider .divider-icon i {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .who-we-serve {
        padding: 60px 0;
    }
    
    .who-we-serve .section-header h2 {
        font-size: 28px;
    }
    
    .who-we-serve .serve-timeline::before {
        left: 40px;
    }
    
    .who-we-serve .serve-item {
        grid-template-columns: auto 1fr;
        gap: 25px;
        margin-bottom: 60px;
    }
    
    .who-we-serve .serve-content-left,
    .who-we-serve .serve-content-right {
        grid-column: 2;
    }
    
    .who-we-serve .serve-divider {
        width: 60px;
    }
    
    .who-we-serve .serve-divider .divider-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .who-we-serve .serve-divider .divider-icon i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .who-we-serve {
        padding: 50px 0;
    }
    
    .who-we-serve .section-header {
        margin-bottom: 40px;
    }
    
    .who-we-serve .section-header h2 {
        font-size: 24px;
    }
    
    .who-we-serve .section-header .divider {
        width: 50px;
        height: 3px;
    }
    
    .who-we-serve .serve-item {
        margin-bottom: 50px;
        gap: 20px;
    }
    
    .who-we-serve .serve-content-left h3,
    .who-we-serve .serve-content-right h3 {
        font-size: 20px;
    }
    
    .who-we-serve .serve-content-left h4,
    .who-we-serve .serve-content-right h4 {
        font-size: 18px;
    }
    
    .who-we-serve .serve-subtitle {
        font-size: 15px;
    }
    
    .who-we-serve .serve-content-left p,
    .who-we-serve .serve-content-right p {
        font-size: 14px;
    }
    
    .who-we-serve .serve-list li {
        font-size: 14px;
    }
    
    .who-we-serve .serve-card {
        padding: 20px;
    }
    
    .who-we-serve .serve-card h4 {
        font-size: 18px;
    }
    
    .who-we-serve .serve-card p {
        font-size: 14px;
    }
}

/* Programs Section */
.programs-section {
    background: var(--light-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 60px 0;
}

.program-card {
    transition: var(--transition);
}

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

/* News Section */
.news-card {
    transition: var(--transition);
}

.news-meta {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: var(--spacing-xs);
}

/* Events Section */
.event-card {
    transition: var(--transition);
}

.event-date-badge {
    display: inline-block;
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* Gallery Section */
.gallery-section {
    padding: 20px 0 var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-item-home {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
    margin-bottom: var(--spacing-sm);
}

.gallery-item-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item-home:hover .gallery-overlay-home {
    opacity: 1;
}

.gallery-overlay-home i {
    font-size: 2rem;
    color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    color: var(--white);
    opacity: 0.95;
    font-size: 1.1rem;
}

/* Footer */
.footer-main {
    background: #2a5490;
    color: #ffffff;
    padding: 60px 0 20px 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo {
    margin: 0;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-brand-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.footer-mission {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.social-link:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-links a i {
    font-size: 12px;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #d4af37;
    opacity: 1;
    padding-left: 5px;
}

.footer-newsletter-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.9;
}

.newsletter-input-group {
    display: flex;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    padding: 12px 18px;
    background: #418FDE;
    color: #ffffff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: #357ABD;
}

.newsletter-message {
    font-size: 12px;
    margin-top: 5px;
    min-height: 20px;
}

.footer-privacy {
    font-size: 12px;
    color: #ffffff;
    margin-top: 10px;
    opacity: 0.8;
}

.privacy-link {
    color: #ffa500;
    text-decoration: none;
}

.privacy-link:hover {
    color: #ffb84d;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-copyright {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.footer-links-bottom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-link-bottom {
    font-size: 13px;
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-link-bottom:hover {
    opacity: 1;
    text-decoration: underline;
    color: #ffffff !important;
}

.footer-link-separator {
    color: #ffffff;
    opacity: 0.6;
    font-size: 13px;
}

.footer-bottom .text-white {
    color: #ffffff !important;
}

.footer-legal-links {
    display: inline-flex;
    gap: 15px;
}

.footer-legal-links a {
    font-size: 13px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #d4af37;
    opacity: 1;
}

.footer-developer {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

.developer-link-footer {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    transition: all 0.3s ease;
}

.developer-link-footer:hover {
    color: #d4af37;
    opacity: 1;
    text-decoration: underline;
}

.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #418FDE;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top-btn:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 15px 0;
    }
    
    .footer-heading {
        margin-top: 25px;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-bottom: 0;
    }
    
    .footer-links-bottom {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-legal-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-developer {
        text-align: center;
        margin-top: 10px;
    }
    
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Join Us Section */
.join-us-section {
    padding: 40px 0;
    background: #2a5490;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.join-us-content {
    padding-right: 40px;
}

.join-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.join-us-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    font-family: 'Poppins', sans-serif;
}

.join-us-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-join-learn {
    display: inline-block;
    background: #418FDE;
    color: #ffffff;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    font-family: 'Poppins', sans-serif;
}

.btn-join-learn:hover {
    background: #ffffff;
    color: #418FDE;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-join-contact {
    display: inline-block;
    background: #ffffff;
    color: #418FDE;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    font-family: 'Poppins', sans-serif;
}

.btn-join-contact:hover {
    background: #f0f0f0;
    color: #357ABD;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.join-us-stats {
    padding-left: 40px;
}

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

.stats-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.stats-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.stat-number.white {
    color: #ffffff;
}

.stat-number.gold {
    color: #d4af37;
}

.stat-description {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 992px) {
    .join-us-section {
        padding: 30px 0;
    }
    
    .join-us-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .join-us-stats {
        padding-left: 0;
    }
    
    .stats-grid {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .join-us-section {
        padding: 30px 0;
    }
    
    .join-us-title {
        font-size: 2rem;
    }
    
    .join-us-description {
        font-size: 1rem;
    }
    
    .join-us-buttons {
        flex-direction: column;
    }
    
    .btn-join-learn,
    .btn-join-contact {
        width: 100%;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid::before,
    .stats-grid::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-description {
        font-size: 0.9rem;
    }
}

/* Why Kismayo Section */
.why-kismayo-section {
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.why-kismayo-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-kismayo-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.why-kismayo-section .section-header .divider {
    width: 60px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 12px auto 0;
}

.why-kismayo-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #418FDE;
}

.why-kismayo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.why-kismayo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #418FDE 0%, #357ABD 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(65, 143, 222, 0.3);
}

.why-kismayo-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.why-kismayo-card p {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .why-kismayo-section {
        padding: 40px 0;
    }
    
    .why-kismayo-section .section-header h2 {
        font-size: 2rem;
    }
    
    .why-kismayo-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .why-kismayo-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .why-kismayo-card h4 {
        font-size: 1.3rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-golden-line {
        width: 80px;
        height: 3px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: 80px;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

/* Page Content */
.page-content {
    padding: var(--spacing-xl) 0;
}

.content-area {
    line-height: 1.8;
}

.content-area h2,
.content-area h3,
.content-area h4 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.content-area p {
    margin-bottom: var(--spacing-md);
}

.content-area ul,
.content-area ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.content-area li {
    margin-bottom: var(--spacing-xs);
}

/* Forms */
.form-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(65, 143, 222, 0.25);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.invalid-feedback {
    display: none;
    color: var(--danger);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-xs); padding-bottom: var(--spacing-xs); }
.py-2 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-3 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-4 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-5 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.bg-light { background-color: var(--light-bg); }
.bg-white { background-color: var(--white); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }

.text-white { color: var(--white); }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* About Page Specific Styles - Matching Original Design */

/* About The Academy Section */
.about-page-section {
    padding: 40px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.about-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.about-page-divider {
    width: 60px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 12px auto 20px;
}

.about-page-subtitle {
    text-align: center;
    color: #444;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Quote Box */
/* Combined Hero Card */
.about-hero-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-hero-card:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.about-hero-quote {
    background: linear-gradient(135deg, #418FDE 0%, #2d6ba8 100%);
    padding: 30px 35px;
    position: relative;
    display: flex;
    align-items: center;
}

.about-hero-quote .quote-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 0;
}

.about-hero-quote .quote-text {
    color: #ffffff;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    padding-left: 25px;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
}

.about-hero-description {
    padding: 30px 35px;
    background: #ffffff;
}

.about-hero-description p {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.about-quote-box {
    background: #418FDE;
    padding: 35px;
    border-radius: 8px;
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(65, 143, 222, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-quote-box:hover {
    box-shadow: 0 6px 18px rgba(65, 143, 222, 0.3);
    transform: translateY(-2px);
}

.quote-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4af37;
    border-radius: 8px 0 0 8px;
}

.quote-text {
    color: #ffffff;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    padding-left: 20px;
    font-family: 'Merriweather', serif;
}

.about-description-text {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 4px solid #418FDE;
    transition: all 0.3s ease;
    height: 100%;
}

.about-description-text:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.about-description-text p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Background Section */
/* About Card Styles */
.about-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.about-background-section {
    padding-right: 0;
}

.about-key-info-section {
    padding-left: 0;
}

.about-section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #418FDE;
    font-family: 'Poppins', sans-serif;
}

.about-background-section p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-indented-block {
    position: relative;
    padding-left: 20px;
    margin: 20px 0;
}

.indented-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4af37;
}

.about-indented-block p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Key Information Section */
.about-key-info-section {
    padding-left: 30px;
}

.key-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.key-info-icon {
    align-self: center;
}

.key-info-content h4 {
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.key-info-item:hover {
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.key-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(65, 143, 222, 0.3);
}

.key-info-icon.blue {
    background: #418FDE;
}

.key-info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.key-info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.key-info-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Vision & Mission Page Section */
.vision-mission-page-section {
    padding: 40px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.vision-mission-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.vision-mission-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
}

.vision-mission-page-divider {
    width: 60px;
    height: 4px;
    background: #d4af37;
    display: block;
    margin: 12px auto 0;
}

.vision-mission-quote-container {
    margin-bottom: 30px;
}

.quote-gold-lines {
    width: 100%;
    height: 2px;
    background: #d4af37;
}

.vision-mission-quote-box-inner {
    background: #f4f6fb;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quote-icon-box {
    width: 60px;
    height: 60px;
    background: #418FDE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(65, 143, 222, 0.3);
}

.vision-mission-quote-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #1a1a2e;
    font-weight: 500;
    margin: 0;
    flex: 1;
    font-family: 'Merriweather', serif;
}

/* Vision Mission Card Styles */
.vision-mission-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: all 0.3s ease;
}

.vision-mission-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.vision-mission-content-block {
    padding: 0;
}

.vision-mission-content-heading {
    margin-bottom: 15px;
}

.vision-mission-content-text {
    margin-bottom: 20px;
}

.vision-mission-content-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.vision-mission-content-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #418FDE;
    border-radius: 2px;
}

.vision-mission-content-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.vision-mission-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pillar-box {
    background: #f4f6fb;
    border-radius: 6px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pillar-box:hover {
    background: #e8f0f8;
    border-color: #418FDE;
    transform: translateX(5px);
    box-shadow: 0 2px 6px rgba(65, 143, 222, 0.15);
}

.pillar-blue-bar {
    width: 3px;
    height: 100%;
    background: #418FDE;
    border-radius: 2px;
    flex-shrink: 0;
}

.pillar-text {
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Core Functions Section */
.core-functions-section {
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.core-functions-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.core-functions-blue-bar {
    width: 4px;
    height: 60px;
    background: #418FDE;
    border-radius: 2px;
}

.core-functions-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Grid Layout - Matches Original Site */
.core-functions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .core-functions-grid {
        grid-template-columns: 1fr;
    }
}

.core-function-card-wrapper {
    position: relative;
}

/* Core Function Cards - Clean Design */
.core-function-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.core-function-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.core-function-card.featured {
    border: 2px solid #d4af37;
}

.function-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.function-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.function-icon-wrapper.blue {
    background: #418FDE;
}

.function-icon-wrapper.gold {
    background: #d4af37;
}

.function-card-badge {
    background: #f4f6fb;
    color: #418FDE;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #e5e7eb;
}

.function-card-badge.gold-badge {
    background: #fff8e1;
    color: #d4af37;
    border-color: #d4af37;
}

.function-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.function-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Metric Box */
.function-metric-box {
    background: #f4f6fb;
    padding: 20px;
    border-radius: 8px;
    margin-top: auto;
    border-left: 4px solid #418FDE;
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: #418FDE;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.metric-content {
    flex: 1;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.metric-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Tags Redesign */
.function-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.function-tag {
    background: #f4f6fb;
    padding: 8px 14px;
    border-radius: 20px;
    color: #1a1a2e;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.function-tag i {
    font-size: 0.75rem;
    color: #418FDE;
}

.function-tag:hover {
    background: #e8f0f8;
    border-color: #418FDE;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(65, 143, 222, 0.2);
}

/* Checklist Redesign */
.function-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.function-checklist li {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 5px;
}

.function-checklist li i {
    color: #d4af37;
    font-size: 16px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Footer */
.core-functions-footer {
    background: #1a1a2e;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    gap: 30px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    transition: transform 0.3s ease;
}

.footer-item:hover {
    transform: translateX(5px);
}

.footer-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-icon-wrapper.gold {
    background: #d4af37;
}

.footer-icon-wrapper:hover {
    transform: translateY(-2px);
}

.footer-content {
    flex: 1;
}

.footer-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Facility & Funding Section */
.facility-funding-section {
    padding: 20px 0 40px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.facility-funding-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.facility-blue-bar {
    width: 4px;
    height: 60px;
    background: #418FDE;
    border-radius: 2px;
}

.facility-funding-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.facility-image-wrapper {
    position: relative;
    padding-left: 15px;
}

.facility-blue-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #418FDE;
    border-radius: 2px;
    z-index: 2;
}

.facility-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

.facility-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 8px 8px 0 0;
    min-height: 350px;
    max-height: 500px;
}

.facility-image-banner {
    background: #87CEEB;
    color: #1a1a2e;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-top: -4px;
}

.facility-description {
    padding: 0 20px;
}

.facility-description-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.facility-description p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.facility-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-features li {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.blue-check {
    color: #418FDE;
    font-size: 18px;
    margin-top: 3px;
}

.funding-box {
    background: #418FDE;
    padding: 30px;
    border-radius: 8px;
    color: #ffffff;
}

.funding-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.funding-amount {
    margin-bottom: 25px;
}

.funding-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.funding-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    font-family: 'Poppins', sans-serif;
}

.funding-description {
    position: relative;
    padding-left: 20px;
    margin-bottom: 25px;
}

.funding-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #d4af37;
    border-radius: 2px;
}

.funding-description p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.funding-completion {
    margin-top: 25px;
}

.funding-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Global Partnerships Section */
.global-partnerships-section {
    padding: 40px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.global-partnerships-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.partnerships-gold-line {
    width: 4px;
    height: 60px;
    background: #d4af37;
    border-radius: 2px;
}

.global-partnerships-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.partnerships-content {
    padding-right: 20px;
}

.partnerships-content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.partnerships-content p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.partnerships-stat-box {
    background: #f4f6fb;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    padding-left: 30px;
}

.stat-gold-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4af37;
    border-radius: 2px;
}

.stat-number-large {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.partnerships-stat-box p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.partnerships-quote-box {
    background: #418FDE;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 30px;
}

.quote-gold-line-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #d4af37;
    border-radius: 8px 0 0 8px;
}

.partnerships-quote {
    color: #ffffff;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
    margin: 0;
    padding-left: 20px;
    font-family: 'Merriweather', serif;
    line-height: 1.6;
}

.training-framework-box {
    background: #418FDE;
    padding: 25px;
    border-radius: 8px;
}

.framework-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.training-framework-box p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.partnerships-footer {
    background: #1a1a2e;
    padding: 35px;
    border-radius: 8px;
    margin-top: 30px;
}

.footer-content-left h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-content-left p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-footer-explore {
    display: inline-block;
    background: #418FDE;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-footer-explore:hover {
    background: #ffffff;
    color: #418FDE;
}

.btn-footer-contact {
    display: inline-block;
    background: #ffffff;
    color: #418FDE;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-footer-contact:hover {
    background: #f0f0f0;
    color: #357ABD;
}

.footer-features {
    padding-left: 20px;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon.gold {
    background: #d4af37;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-background-section,
    .about-key-info-section {
        padding: 0;
        margin-bottom: 40px;
    }
    
    .core-functions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .core-functions-footer {
        flex-direction: column;
        gap: 25px;
        padding: 30px 25px;
    }
    
    .partnerships-footer .row > div {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .core-functions-content::before {
        display: none;
    }
    
    .about-background-section {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .about-key-info-section {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .about-page-title,
    .vision-mission-page-title,
    .core-functions-title,
    .facility-funding-title,
    .global-partnerships-title {
        font-size: 2rem;
    }
    
    .vision-mission-pillars,
    .function-tags {
        grid-template-columns: 1fr;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
    .btn-footer-explore,
    .btn-footer-contact {
        width: 100%;
        text-align: center;
    }
    
    .about-quote-box {
        min-height: auto;
        padding: 25px;
    }
    
    .about-hero-quote {
        padding: 20px 25px;
    }
    
    .about-hero-quote .quote-text {
        font-size: 1.1rem;
        padding-left: 18px;
    }
    
    .about-hero-description {
        padding: 20px 25px;
    }
    
    .about-hero-description p {
        font-size: 0.95rem;
    }
    
    .about-description-text {
        padding-left: 0;
        border-left: none;
        padding-top: 30px;
    }
}
