/* ----- RESET & GLOBAL ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.5;
    padding-top: 80px;
}

:root {
    --primary-deep: #138FCE;
    /* deep blue */
    --primary-soft: #E4F4FE;
    /* soft sky */
    --accent-coral: #F68A44;
    /* warm coral */
    --accent-light: #E7F8C9;
    /* soft mint (also used as --accent-mint) */
    --white: #FFFFFF;
    --gray-light: #f8fafc;
    --text-dark: #0b2b3c;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ----- NAVIGATION (consistent across all pages) ----- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 3px solid var(--accent-coral);
    background-color: var(--white);
    flex-wrap: wrap;
    position: fixed;
    left: 10px;
    right: 10px;
    top: 0;
    z-index: 888;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-deep);
}

.logo span {
    color: var(--accent-coral);
    font-weight: 400;
    font-size: 1rem;
    margin-left: 6px;
    background: var(--primary-soft);
    padding: 4px 16px;
    border-radius: 40px;
    display: inline-block;
    vertical-align: middle;
}

.logo img {
    /* height: 50px; */
    width: 130px;
}

.nav-links {
    display: flex;
    gap: 36px;
    font-weight: 500;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #1e3e50;
    transition: 0.2s;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: var(--accent-coral);
    color: var(--primary-deep);
}

.join-btn {
    background-color: var(--primary-deep);
    color: white !important;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: 600;
    border-bottom: none !important;
    box-shadow: 0 6px 12px rgba(19, 143, 206, 0.2);
}

.join-btn:hover {
    background-color: #0f7bb3;
    border-bottom: none !important;
    color: white;
}

/* ----- HERO SECTIONS (shared styles) ----- */
.join-hero,
.member-hero,
.about-hero,
.projects-hero {
    background: linear-gradient(145deg, var(--primary-soft) 0%, #ffffff 80%);
    border-radius: 0 0 60px 60px;
    margin: 0 -32px 30px -32px;
    padding: 60px 32px;
    position: relative;
    overflow: hidden;
}

.join-hero::before,
.member-hero::before,
.about-hero::before {
    font-size: 12rem;
    color: var(--accent-coral);
    opacity: 0.07;
    position: absolute;
    bottom: -30px;
    right: 0;
    transform: rotate(5deg);
    pointer-events: none;
}

.join-hero::before {
    content: "✨🤝✨";
}

.member-hero::before {
    content: "👥👥👥";
    left: 20px;
    transform: rotate(-5deg);
}

.about-hero::before {
    content: "〆";
    font-size: 16rem;
    right: 10px;
    bottom: -40px;
    transform: rotate(15deg);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.join-hero h2,
.member-hero h2,
.about-hero h2,
.projects-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-deep);
    line-height: 1.2;
}

.join-hero h2 i,
.member-hero h2 i,
.about-hero h2 i,
.projects-hero h2 i {
    color: var(--accent-coral);
    font-style: normal;
    background: rgba(246, 138, 68, 0.15);
    padding: 0 20px;
    border-radius: 80px;
}

.join-hero p,
.member-hero p,
.about-hero p,
.projects-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    color: #1c5878;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 60px;
    margin-top: 20px;
    backdrop-filter: blur(2px);
}

/* ----- CAROUSEL (home) ----- */
.hero {
    margin-top: 36px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 35px -15px rgba(19, 143, 206, 0.3);
}

.slider {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide-list {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    flex-shrink: 0;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(19, 143, 206, 0.4) 0%, rgba(0, 40, 60, 0.2) 80%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 20, 30, 0.5);
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

.slide-tag {
    background: var(--accent-coral);
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: #0d2d3a;
    font-size: 1rem;
    box-shadow: 0 6px 14px rgba(246, 138, 68, 0.3);
}

.slide1 {
    background-image: linear-gradient(0deg, rgba(0, 60, 90, 0.3), rgba(0, 0, 0, 0.2)), url('https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=2070&auto=format&fit=crop');
}

.slide2 {
    background-image: linear-gradient(0deg, rgba(19, 143, 206, 0.3), rgba(0, 30, 50, 0.3)), url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?q=80&w=2074&auto=format&fit=crop');
}

.slide3 {
    background-image: linear-gradient(0deg, rgba(246, 138, 68, 0.3), rgba(0, 30, 40, 0.3)), url('https://jci.cc/wp-content/uploads/2026/01/homepage-hero-bod-2-1.webp');
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 44px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active-dot,
.dot:hover {
    background: var(--accent-coral);
}

/* ----- PRESIDENT SECTION (home) ----- */
.president-section {
    margin: 80px 0 60px;
}

.president-card {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    background: var(--primary-soft);
    border-radius: 80px 20px 80px 20px;
    padding: 48px 48px;
    box-shadow: 0 25px 35px -18px rgba(19, 143, 206, 0.2);
}

.president-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--accent-light);
    box-shadow: 0 20px 25px -10px var(--primary-deep);
}

.president-message {
    flex: 1;
}

.president-message h3 {
    font-size: 2.4rem;
    color: var(--primary-deep);
    font-weight: 700;
}

.president-title {
    background: var(--accent-coral);
    display: inline-block;
    padding: 4px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: #022c3a;
    margin: 12px 0 20px;
    letter-spacing: 0.3px;
}

.president-message p {
    font-size: 1.4rem;
    font-style: italic;
    color: #1a4f64;
    line-height: 1.5;
    border-left: 10px solid var(--accent-coral);
    padding-left: 30px;
    margin-top: 15px;
}

.president-signature {
    margin-top: 25px;
    font-weight: 600;
    color: var(--primary-deep);
}

/* ----- STATS GRID (shared) ----- */
.stats-grid,
.stats-row {
    display: flex;
    gap: 28px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 70px 0;
}

.stat-item {
    background: var(--accent-light);
    flex: 1 1 180px;
    padding: 32px 16px;
    border-radius: 50px;
    text-align: center;
    border: 3px solid white;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.02);
}

.stat-item i {
    font-size: 2.8rem;
    color: var(--primary-deep);
    background: var(--white);
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.stat-item .number,
.stat-item h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-deep);
    margin: 12px 0 4px;
}

.stat-item p {
    color: #173e51;
    font-weight: 500;
}

/* ----- ABOUT SUMMARY (home) ----- */
.about-summary {
    display: flex;
    gap: 40px;
    margin: 80px 0;
    flex-wrap: wrap;
}

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.6rem;
    color: var(--primary-deep);
    border-left: 18px solid var(--accent-coral);
    padding-left: 25px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.2rem;
    color: #255e75;
    margin-bottom: 25px;
}

.pillar-box {
    flex: 1;
    background: var(--primary-soft);
    border-radius: 60px;
    padding: 35px 30px;
    border: 2px dashed var(--accent-coral);
}

.pillar-box h4 {
    font-size: 1.9rem;
    color: var(--primary-deep);
    margin-bottom: 20px;
}

.pillar-box ul {
    list-style: none;
}

.pillar-box li {
    margin-bottom: 16px;
    font-size: 1.15rem;
    font-weight: 500;
}

.pillar-box i {
    color: var(--accent-coral);
    width: 32px;
}

/* ----- SECTION TITLES (shared) ----- */
.section-title,
.timeline-title,
.past-title {
    text-align: center;
    margin: 70px 0 40px;
}

.section-title span,
.timeline-title span,
.past-title h3 {
    background: var(--primary-soft);
    color: var(--primary-deep);
    padding: 12px 40px;
    border-radius: 60px;
    font-size: 2rem;
    font-weight: 600;
    border: 3px solid var(--accent-coral);
    display: inline-block;
}

/* ----- NEWS GRID (home) ----- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.news-card {
    background: var(--primary-soft);
    border-radius: 40px;
    padding: 32px 24px;
    border-bottom: 8px solid var(--primary-deep);
    transition: 0.15s;
}

.news-card:hover {
    transform: translateY(-8px);
    background: #d7efff;
}

.news-date {
    background: var(--accent-coral);
    display: inline-block;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 600;
    color: #022d39;
    margin-bottom: 18px;
}

.news-card h4 {
    font-size: 1.7rem;
    color: #103e51;
}

/* ----- CTA (home) ----- */
.cta-large {
    background: linear-gradient(145deg, var(--accent-coral), #f8b481, var(--accent-light));
    border-radius: 120px 20px 120px 20px;
    padding: 65px 50px;
    margin: 90px 0 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.cta-large h2 {
    font-size: 2.8rem;
    color: #052f40;
    font-weight: 800;
}

.cta-large .btn {
    background: var(--primary-deep);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 18px -8px #0f5780;
    transition: all 0.2s;
    border: 3px solid white;
}

.cta-large .btn:hover {
    background: #0e6190;
    transform: scale(1.03);
}

/* ----- BOARD SHOWCASE (home) & LEADERSHIP (about) ----- */
.board-showcase,
.board-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--primary-soft);
    border-radius: 80px;
    padding: 48px;
    margin: 70px 0;
    justify-content: center;
}

.member-mini,
.board-card {
    flex: 1 1 160px;
    text-align: center;
    background: white;
    border-radius: 40px;
    padding: 32px 20px;
    max-width: 260px;
    box-shadow: 0 15px 25px -8px #9ac7e7;
    border: 2px solid var(--primary-deep);
}

.member-mini i,
.board-card .photo-placeholder i {
    font-size: 3.2rem;
    background: white;
    padding: 20px;
    border-radius: 50%;
    color: var(--primary-deep);
    border: 4px solid var(--accent-coral);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.board-card h4 {
    font-size: 1.6rem;
    color: var(--primary-deep);
    margin-bottom: 6px;
}

.board-card .role {
    color: var(--accent-coral);
    font-weight: 600;
    background: #ffefe2;
    padding: 4px 12px;
    border-radius: 40px;
    display: inline-block;
}

.board-card .bio {
    margin: 16px 0 8px;
    color: #23678b;
}

/* ----- MEMBERS PAGE SPECIFIC ----- */
.member-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.member-intro-text {
    flex: 2 1 300px;
}

.member-intro-text h3 {
    font-size: 2.3rem;
    color: var(--primary-deep);
    border-left: 12px solid var(--accent-coral);
    padding-left: 24px;
    margin-bottom: 20px;
}

.member-intro-text p {
    font-size: 1.18rem;
    color: #215e7c;
}

.member-count-card {
    background: var(--accent-light);
    border-radius: 50px 50px 50px 10px;
    padding: 32px 40px;
    flex: 1 1 220px;
    border: 4px solid var(--primary-deep);
    box-shadow: 0 12px 0 var(--accent-coral);
    text-align: center;
}

.member-count-card .big-number {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1;
}

.member-count-card span {
    color: #1b506b;
    font-size: 1.2rem;
}

/* ----- TIER CARDS (membership) ----- */
.tier-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.tier-card {
    background: white;
    border-radius: 40px 40px 40px 12px;
    padding: 32px 28px;
    flex: 1 1 260px;
    max-width: 300px;
    box-shadow: 0 20px 30px -10px rgba(19, 143, 206, 0.25);
    border: 2px solid var(--primary-soft);
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-coral);
}

.tier-card.popular::after {
    content: "most active";
    background: var(--accent-coral);
    color: #0d2b36;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 28px;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(38deg);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.tier-icon {
    font-size: 3rem;
    color: var(--primary-deep);
    background: var(--primary-soft);
    width: 80px;
    height: 80px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tier-card h4 {
    font-size: 2rem;
    color: var(--primary-deep);
    margin-bottom: 8px;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-coral);
    margin: 10px 0 16px;
    border-bottom: 2px dashed var(--primary-soft);
    padding-bottom: 12px;
}

.tier-price small {
    font-size: 1rem;
    color: #3f718b;
    font-weight: 400;
}

.tier-features {
    list-style: none;
    margin: 20px 0;
}

.tier-features li {
    padding: 8px 0;
    color: #25516b;
}

.tier-features i {
    color: var(--accent-coral);
    margin-right: 10px;
}

.tier-btn {
    background: var(--primary-deep);
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.15s;
    box-shadow: 0 5px 0 #0b5780;
}

.tier-btn:hover {
    background: #0f7bb3;
    transform: scale(0.98);
}

/* ----- BENEFITS SECTION (members) ----- */
.benefits-section {
    background: linear-gradient(145deg, var(--accent-light), #ddf0e0);
    border-radius: 100px 20px 100px 20px;
    padding: 50px 40px;
    margin: 60px 0;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    background: white;
    border-radius: 30px 30px 30px 10px;
    padding: 28px 24px;
    flex: 1 1 200px;
    text-align: center;
    box-shadow: 0 10px 18px -8px #75b3d3;
    border-bottom: 8px solid var(--primary-deep);
}

.benefit-item i {
    font-size: 2.5rem;
    background: var(--primary-soft);
    padding: 20px;
    border-radius: 30px;
    color: var(--accent-coral);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 1.6rem;
    color: var(--primary-deep);
}

/* ----- TESTIMONIAL (members) ----- */
.testimonial {
    background: var(--primary-soft);
    border-radius: 60px 20px 60px 20px;
    padding: 40px 40px;
    margin: 50px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.testimonial-img {
    font-size: 7rem;
    color: var(--primary-deep);
    background: white;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid var(--accent-coral);
}

.testimonial-quote {
    flex: 1;
}

.testimonial-quote i {
    color: var(--accent-coral);
    font-size: 2.5rem;
    opacity: 0.5;
}

.testimonial-quote p {
    font-size: 1.3rem;
    color: #0d3a4e;
    font-style: italic;
}

.testimonial-author {
    margin-top: 16px;
    font-weight: 600;
    color: var(--primary-deep);
}

/* ----- FORM SECTION (members) ----- */
.form-section {
    background: var(--accent-light);
    border-radius: 50px;
    padding: 50px 40px;
    margin: 70px 0;
    box-shadow: 0 18px 0 var(--primary-deep);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.form-text {
    flex: 1 1 260px;
}

.form-text h3 {
    font-size: 2.2rem;
    color: var(--primary-deep);
}

.form-text p {
    color: #1f5f7d;
}

.member-form {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.member-form input {
    flex: 1 1 200px;
    padding: 16px 22px;
    border: 2px solid var(--primary-deep);
    border-radius: 60px;
    font-size: 1rem;
    outline: none;
}

.member-form input:focus {
    border-color: var(--accent-coral);
}

.member-form button {
    background: var(--primary-deep);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: 2px solid white;
    transition: 0.15s;
}

.member-form button:hover {
    background: #0f7bb3;
}

/* ----- DIRECTORY PREVIEW (members) ----- */
.directory-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0;
}

.avatar-item {
    text-align: center;
    width: 100px;
}

.avatar-circle {
    background: var(--primary-soft);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-deep);
    border: 4px solid var(--accent-coral);
    margin: 0 auto 10px;
}

/* ----- JOIN PAGE (form & info) ----- */
.join-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0 60px;
}

.join-form-col {
    flex: 2 1 400px;
}

.join-info-col {
    flex: 1.2 1 280px;
}

.form-card {
    background: white;
    border-radius: 40px 40px 40px 12px;
    padding: 40px 36px;
    box-shadow: 0 25px 35px -15px rgba(19, 143, 206, 0.3);
    border: 2px solid var(--primary-soft);
}

.form-card h3 {
    font-size: 2rem;
    color: var(--primary-deep);
    margin-bottom: 10px;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    font-weight: 600;
    color: #0f4b68;
    display: block;
    margin-bottom: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #cde3f0;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: 0.15s;
    background: #f9fdff;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--accent-coral);
}

.form-row textarea {
    border-radius: 30px;
    resize: vertical;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-row input {
    width: 22px;
    height: 22px;
    accent-color: var(--accent-coral);
}

.submit-btn {
    background: var(--primary-deep);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: 0.15s;
    box-shadow: 0 10px 0 #0b5780;
}

.submit-btn:hover {
    background: #0f7bb3;
    transform: translateY(-2px);
    box-shadow: 0 12px 0 #094a6b;
}

.info-card {
    background: var(--accent-light);
    border-radius: 40px 40px 40px 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 3px solid var(--primary-deep);
}

.info-card h4 {
    font-size: 1.8rem;
    color: var(--primary-deep);
    margin-bottom: 16px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    border-bottom: 1px dashed #9bc96b;
    color: #1d5a6b;
}

.info-card i {
    color: var(--accent-coral);
    margin-right: 14px;
    width: 24px;
}

.tier-summary {
    background: white;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 8px 0 var(--accent-coral);
}

.tier-summary h5 {
    font-size: 1.4rem;
    color: var(--primary-deep);
}

.tier-summary .price {
    font-size: 1.8rem;
    color: var(--accent-coral);
    font-weight: 700;
}

.dot-sep {
    border-top: 3px dotted var(--primary-soft);
    margin: 24px 0;
}

.perk-badge {
    background: var(--primary-soft);
    border-radius: 50px;
    padding: 12px 18px;
    display: inline-block;
    margin: 5px 3px;
    font-weight: 500;
    color: #11577a;
}

/* ----- ABOUT PAGE (story, timeline, values) ----- */
.story-grid {
    display: flex;
    gap: 48px;
    margin: 80px 0;
    flex-wrap: wrap;
}

.story-text {
    flex: 2 1 350px;
}

.story-text h3 {
    font-size: 2.2rem;
    color: var(--primary-deep);
    border-left: 12px solid var(--accent-coral);
    padding-left: 24px;
    margin-bottom: 32px;
}

.story-text p {
    font-size: 1.18rem;
    color: #255f7a;
    margin-bottom: 24px;
}

.milestone-badge {
    background: var(--accent-light);
    border-radius: 32px;
    padding: 24px 28px;
    flex: 1 1 240px;
    border: 2px dashed var(--primary-deep);
    background-color: #f2ffee;
}

.milestone-badge i {
    font-size: 3rem;
    color: var(--accent-coral);
    margin-bottom: 10px;
}

.milestone-badge h4 {
    font-size: 2.2rem;
    color: var(--primary-deep);
}

.timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.timeline-item {
    background: white;
    border-radius: 30px 30px 30px 10px;
    box-shadow: 0 15px 25px -10px rgba(19, 143, 206, 0.15);
    flex: 1 1 200px;
    min-width: 180px;
    padding: 28px 18px;
    text-align: center;
    border-top: 8px solid var(--primary-deep);
    transition: 0.15s;
}

.timeline-item:nth-child(even) {
    border-top-color: var(--accent-coral);
    background: var(--primary-soft);
}

.timeline-item .year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-deep);
    background: var(--accent-light);
    display: inline-block;
    padding: 0 12px;
    border-radius: 40px;
    margin-bottom: 15px;
}

.timeline-item p {
    color: #175571;
    font-weight: 500;
}

.leadership-section {
    background: var(--primary-soft);
    border-radius: 80px 20px 80px 20px;
    padding: 50px 20px;
    margin: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 2.5rem;
    color: var(--primary-deep);
}

.section-header p {
    color: #226788;
    background: var(--accent-light);
    display: inline-block;
    padding: 6px 28px;
    border-radius: 60px;
}

.values-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 50px 0 70px;
}

.value-card {
    background: white;
    border-radius: 30px;
    padding: 28px 22px;
    flex: 1 1 200px;
    box-shadow: 0 12px 22px -14px #94bed9;
    border-left: 12px solid;
    transition: 0.15s;
}

.value-card:nth-child(1) {
    border-left-color: var(--primary-deep);
}

.value-card:nth-child(2) {
    border-left-color: var(--accent-coral);
}

.value-card:nth-child(3) {
    border-left-color: #9bc96b;
}

.value-card:nth-child(4) {
    border-left-color: var(--primary-deep);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--accent-coral);
    margin-bottom: 18px;
}

.value-card h4 {
    font-size: 1.8rem;
    color: var(--primary-deep);
}

/* ----- PROJECTS PAGE ----- */
.filter-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.filter-section h3 {
    font-size: 2rem;
    color: var(--primary-deep);
    border-left: 10px solid var(--accent-coral);
    padding-left: 20px;
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--primary-soft);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #115e83;
    border: 2px solid var(--primary-soft);
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.15s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-coral);
    color: #0c3342;
    border-color: var(--accent-coral);
    font-weight: 700;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin: 40px 0 70px;
}

.project-card {
    background: white;
    border-radius: 40px 40px 40px 12px;
    overflow: hidden;
    box-shadow: 0 18px 30px -12px rgba(19, 143, 206, 0.25);
    transition: all 0.2s;
    border: 1px solid var(--primary-soft);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px #138fce80;
}

.card-img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.img-env {
    background-image: linear-gradient(0deg, #138FCE30, #0f344b40), url('https://images.unsplash.com/photo-1593113598335-cb59a0c7c6f9?q=80&w=2070&auto=format&fit=crop');
}

.img-health {
    background-image: linear-gradient(0deg, #F68A4440, #23232330), url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?q=80&w=2074&auto=format&fit=crop');
}

.img-edu {
    background-image: linear-gradient(0deg, #138FCE30, #0f344b40), url('https://images.unsplash.com/photo-1531482615713-2afd69097998?q=80&w=2070&auto=format&fit=crop');
}

.img-entre {
    background-image: linear-gradient(0deg, #5f964060, #1a464b), url('https://images.unsplash.com/photo-1577896851231-70ef188f52e1?q=80&w=2070&auto=format&fit=crop');
}

.img-other {
    background-image: linear-gradient(0deg, #138FCE70, #0f344b70), url('https://images.unsplash.com/photo-1559027615-cd4628902d4a?q=80&w=2074&auto=format&fit=crop');
}

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-coral);
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #0d2e3b;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 26px 20px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-deep);
    margin-bottom: 12px;
}

.card-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
    color: #2f607b;
    font-size: 0.95rem;
}

.card-meta i {
    color: var(--accent-coral);
    margin-right: 5px;
}

.card-content p {
    color: #1d5572;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.status-badge {
    background: var(--accent-light);
    padding: 5px 18px;
    border-radius: 30px;
    font-weight: 500;
    color: #1b6d46;
    border: 1px solid #9bc96b;
}

.status-badge.ongoing {
    background: var(--primary-soft);
    color: var(--primary-deep);
    border-color: var(--primary-deep);
}

.card-link {
    color: var(--primary-deep);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-coral);
}

.card-link i {
    transition: 0.2s;
}

.card-link:hover i {
    transform: translateX(4px);
}

.impact-banner {
    background: var(--accent-light);
    border-radius: 80px 20px 80px 20px;
    padding: 44px 40px;
    margin: 50px 0 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.impact-text h3 {
    font-size: 2.3rem;
    color: var(--primary-deep);
}

.impact-text p {
    color: #1d5a77;
    font-size: 1.2rem;
}

.impact-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.impact-item {
    background: white;
    border-radius: 50px;
    padding: 18px 24px;
    min-width: 140px;
    box-shadow: 0 8px 0 var(--primary-deep);
    text-align: center;
}

.impact-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-coral);
}

.impact-item span {
    color: #0d3d57;
    font-weight: 500;
}

.past-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 70px;
}

.past-item {
    background: #fafeff;
    border-radius: 30px;
    padding: 18px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-left: 12px solid;
    box-shadow: 0 5px 12px rgba(19, 143, 206, 0.1);
}

.past-item:nth-child(1) {
    border-left-color: var(--primary-deep);
}

.past-item:nth-child(2) {
    border-left-color: var(--accent-coral);
}

.past-item:nth-child(3) {
    border-left-color: #9bc96b;
}

.past-item:nth-child(4) {
    border-left-color: var(--primary-deep);
}

.past-item:nth-child(5) {
    border-left-color: var(--accent-coral);
}

.past-name {
    font-weight: 600;
    font-size: 1.3rem;
    color: #0a415a;
}

.past-year {
    background: var(--accent-light);
    padding: 4px 16px;
    border-radius: 30px;
    font-weight: 500;
}

/* ----- FOOTER (unified) ----- */
.footer {
    background-color: var(--primary-deep);
    color: white;
    border-radius: 48px 48px 0 0;
    padding: 48px 32px 24px;
    margin-top: 80px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}

.footer-col p,
.footer-col a {
    color: #d1ecfe;
    max-width: 280px;
    text-decoration: none;
    line-height: 2;
}

.footer-logo h3 {
    font-size: 2rem;
    color: white;
}

.footer-logo span {
    background: var(--accent-coral);
    padding: 3px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #022b38;
}

.social-links a,
.social-icons a {
    color: white;
    background: #2880b0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 1.2rem;
    transition: 0.2s;
}

.social-links a:hover,
.social-icons a:hover {
    background: var(--accent-coral);
    color: #0a2e3b;
}

.copyright {
    text-align: center;
    margin-top: 48px;
    color: #b3defa;
    border-top: 1px solid #2785ba;
    padding-top: 24px;
}

/* ----- UTILITY / EXTRAS ----- */
.extra-space {
    height: 20px;
}