
/* ================== RESET & BASE ================== */
:root {
    --primary-green: #0b6623;
    --dark-green: #094e1c;
    --light-green: #0f8730;
    --gold: #D4AF37;
    --light-gold: #F4E4C1;
    --dark-gold: #C9A961;
    --white: #ffffff;
    --off-white: #f9fafb;
    --light-gray: #f7f9fb;
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    padding-top: 90px;
    overflow-x: hidden;
}

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

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

/* ================== UTILITIES ================== */
.section {
    padding: 100px 0;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background: var(--light-gray);
}

.container {
    max-width: 1250px;
}

/* ================== TOP BAR ================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
}

.lang-btn {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* ================== NAVBAR ================== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-green) !important;
    transition: var(--transition);
}

.brand-icon {
    font-size: 1.8rem;
    margin-right: 10px;
    color: var(--gold);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.logo-img {
    height: 40px; 
    width: auto; 
    transition: var(--transition); 
}

.navbar-brand:hover .logo-img {
    opacity: 0.9; 
}

@media (max-width: 768px) {
    .logo-img {
        height: 30px;
    }
}

.btn-donate {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212,175,55,0.4);
}

/* ================== HERO ================== */
.hero {
    background: linear-gradient(135deg, rgba(11,102,35,0.95) 0%, rgba(9,78,28,0.95) 100%),
                url("../images/hero.jpg") center/cover no-repeat fixed;
    color: var(--white);
    padding: 180px 20px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.2);
}

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

.btn-hero-primary {
    background: var(--gold);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
    color: var(--white);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--white);
    transform: translateY(-3px);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ================== PAGE HEADER BANNER ================== */
.page-header-banner {
    background: linear-gradient(135deg, rgba(11,102,35,0.95) 0%, rgba(9,78,28,0.95) 100%),
                url("assets/images/page-header.jpg") center/cover no-repeat;
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.1) 0%, transparent 50%);
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-flex;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.9);
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* ================== SECTION HEADERS ================== */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title.text-white {
    color: var(--white);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ================== IMAGE TEXT GRID ================== */
.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.image-text-grid.reverse {
    direction: rtl;
}

.image-text-grid.reverse > * {
    direction: ltr;
}

.image-column {
    position: relative;
}

.showcase-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.showcase-image:hover {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

.image-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
    text-align: center;
}

.achievement-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.badge-item {
    flex: 1;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.badge-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: block;
}

.badge-item span {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.text-column {
    padding: 20px;
}

.content-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.text-column p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    border-left: 4px solid var(--gold);
    padding: 20px 25px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow-sm);
}

.icon-highlight {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.highlight-box strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ================== STATS SECTION ================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-gold);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin: 0;
}

/* ================== WORK SECTION ================== */
.section-work {
    background: var(--white);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.work-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.work-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.work-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--gold), transparent);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-card:hover .work-icon::after {
    opacity: 0.3;
}

.work-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.work-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.work-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.work-link {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.work-link:hover {
    color: var(--gold);
    gap: 12px;
}

/* ================== PROOF SECTION ================== */
.proof-section {
    background: var(--off-white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.proof-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.proof-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.proof-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.proof-card:hover .proof-image {
    transform: scale(1.1);
}

.proof-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,102,35,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proof-card:hover .proof-overlay {
    opacity: 1;
}

.proof-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.proof-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
}

.proof-card p {
    padding: 0 20px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ================== BUTTONS ================== */
.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: var(--white);
}

/* ================== CTA SECTION ================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.btn-cta-primary {
    background: var(--gold);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
    color: var(--white);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* ================== ACTIVITIES PAGE SPECIFIC ================== */
.activity-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.summary-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.summary-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.summary-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.summary-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.summary-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.activity-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.activity-showcase.reverse {
    direction: rtl;
}

.activity-showcase.reverse > * {
    direction: ltr;
}

.showcase-content {
    position: relative;
}

.showcase-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(11,102,35,0.1);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
    line-height: 1;
}

.showcase-text {
    position: relative;
    z-index: 1;
}

.showcase-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.showcase-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.impact-list li {
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
}

.impact-list i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.highlight-stat {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    padding: 25px;
border-radius: 15px;
border-left: 4px solid var(--gold);
margin: 25px 0;
}
.stat-value {
font-size: 3rem;
font-weight: 800;
color: var(--primary-green);
line-height: 1;
margin-bottom: 10px;
}
.stat-label {
font-size: 1.05rem;
color: var(--white);
margin: 0;
}
.showcase-image-wrapper {
position: relative;
}
.activity-image {
width: 100%;
height: 450px;
object-fit: cover;
border-radius: 20px;
box-shadow: var(--shadow-lg);
cursor: pointer;
transition: transform 0.3s ease;
}
.activity-image:hover {
transform: scale(1.02);
}
.image-overlay-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white);
padding: 12px 24px;
border-radius: 25px;
font-weight: 700;
box-shadow: var(--shadow-gold);
}
/* ================== TIMELINE ================== */
.activities-timeline {
position: relative;
padding: 40px 0;
}
.activities-timeline::before {
content: '';
position: absolute;
left: 50%;
top: 0;
bottom: 0;
width: 4px;
background: linear-gradient(180deg, var(--primary-green), var(--gold));
transform: translateX(-50%);
}
.timeline-item {
display: grid;
grid-template-columns: 1fr auto 1fr;
gap: 40px;
align-items: center;
margin-bottom: 60px;
position: relative;
}
.timeline-item:nth-child(even) .timeline-content:first-child {
text-align: right;
}
.timeline-item:nth-child(odd) .timeline-content:last-child {
grid-column: 3;
}
.timeline-marker {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary-green), var(--light-green));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 0 8px var(--white), var(--shadow-md);
position: relative;
z-index: 2;
}
.timeline-marker i {
font-size: 1.8rem;
color: var(--white);
}
.timeline-content {
background: var(--white);
padding: 30px;
border-radius: 15px;
box-shadow: var(--shadow-md);
transition: var(--transition);
}
.timeline-content:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.timeline-date {
display: inline-block;
background: var(--gold);
color: var(--white);
padding: 6px 16px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 15px;
}
.timeline-content h4 {
font-size: 1.3rem;
font-weight: 700;
color: var(--primary-green);
margin-bottom: 15px;
}
.timeline-content p {
font-size: 0.95rem;
color: var(--text-gray);
margin-bottom: 8px;
}
.timeline-content strong {
color: var(--text-dark);
}
/* ================== PARTNERS GRID ================== */
.partners-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 35px;
margin-top: 50px;
}
.partner-card {
background: var(--white);
padding: 40px 30px;
border-radius: 20px;
box-shadow: var(--shadow-md);
text-align: center;
transition: var(--transition);
}
.partner-card:hover {
transform: translateY(-10px);
box-shadow: var(--shadow-lg);
}
.partner-logo {
width: 90px;
height: 90px;
background: linear-gradient(135deg, var(--light-gold), var(--white));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
border: 3px solid var(--gold);
}
.partner-logo i {
font-size: 2.5rem;
color: var(--primary-green);
}
.partner-card h4 {
font-size: 1.2rem;
font-weight: 700;
color: var(--text-dark);
margin-bottom: 15px;
}
.partner-card p {
font-size: 0.95rem;
color: var(--text-gray);
margin: 0;
}
/* ================== IMPACT SUMMARY SECTION ================== */
.impact-summary-section {
background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
color: var(--white);
position: relative;
overflow: hidden;
}
.impact-summary-section::before {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.1) 0%, transparent 70%);
}
.impact-summary-content {
position: relative;
z-index: 2;
}
.impact-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
}
.impact-value {
font-size: 5rem;
font-weight: 900;
color: var(--gold);
margin: 30px 0;
text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}
.impact-description {
font-size: 1.2rem;
max-width: 700px;
margin: 0 auto 40px;
line-height: 1.8;
}
.impact-note {
display: flex;
align-items: flex-start;
gap: 20px;
background: rgba(255,255,255,0.1);
padding: 25px;
border-radius: 15px;
max-width: 700px;
margin: 0 auto;
backdrop-filter: blur(10px);
}
.impact-note i {
font-size: 2rem;
color: var(--gold);
flex-shrink: 0;
}
.impact-note p {
margin: 0;
font-size: 1rem;
line-height: 1.7;
}
/* ================== HISTORY PAGE SPECIFIC ================== */
.history-era {
margin-bottom: 80px;
}
.era-header {
text-align: center;
margin-bottom: 50px;
}
.era-year {
display: inline-block;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white);
padding: 10px 30px;
border-radius: 30px;
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 20px;
}
.era-title {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary-green);
margin-bottom: 15px;
}
.key-fact-box {
background: linear-gradient(135deg, var(--light-gray), var(--white));
border-left: 4px solid var(--primary-green);
padding: 25px;
border-radius: 12px;
margin-top: 30px;
display: flex;
gap: 20px;
align-items: flex-start;
}
.key-fact-box i {
font-size: 2rem;
color: var(--primary-green);
flex-shrink: 0;
}
.key-fact-box strong {
display: block;
font-size: 1.1rem;
color: var(--primary-green);
margin-bottom: 10px;
}
.key-fact-box p {
margin: 0;
font-size: 0.95rem;
line-height: 1.7;
}
.timeline-badge {
position: absolute;
bottom: 20px;
right: 20px;
background: rgba(11,102,35,0.95);
color: var(--white);
padding: 12px 24px;
border-radius: 25px;
font-weight: 700;
font-size: 0.95rem;
}
.registration-proof {
background: var(--light-gray);
padding: 25px;
border-radius: 15px;
margin-top: 30px;
}
.registration-proof h4 {
color: var(--primary-green);
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}
.registration-proof h4 i {
font-size: 1.5rem;
}
.registration-proof p {
margin-bottom: 10px;
}
.registration-proof ul {
list-style: none;
padding-left: 20px;
}
.registration-proof li {
padding: 8px 0;
color: var(--text-gray);
position: relative;
}
.registration-proof li::before {
content: '•';
color: var(--gold);
font-weight: bold;
position: absolute;
left: -20px;
}
.wamy-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white);
padding: 15px 25px;
border-radius: 15px;
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
box-shadow: var(--shadow-gold);
}
.wamy-badge i {
font-size: 1.5rem;
}
.wamy-benefits h4 {
color: var(--primary-green);
margin: 30px 0 20px;
}
.benefit-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 20px;
}
.benefit-item {
display: flex;
align-items: flex-start;
gap: 15px;
padding: 20px;
background: var(--light-gray);
border-radius: 12px;
}
.benefit-item i {
font-size: 1.8rem;
color: var(--primary-green);
flex-shrink: 0;
}
.benefit-item p {
margin: 0;
font-size: 0.95rem;
color: var(--text-gray);
}
.war-context-box {
background: linear-gradient(135deg, var(--light-gray), var(--white));
border: 2px solid var(--gold);
border-radius: 20px;
padding: 40px;
margin-bottom: 60px;
display: flex;
gap: 25px;
}
.context-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.context-icon i {
font-size: 2rem;
color: var(--white);
}
.context-content h3 {
font-size: 1.8rem;
color: var(--primary-green);
margin-bottom: 15px;
}
.context-content p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--text-gray);
margin: 0;
}
.major-achievement {
background: linear-gradient(135deg, var(--light-gold), var(--white));
border-left: 5px solid var(--gold);
padding: 30px;
border-radius: 15px;
display: flex;
gap: 25px;
margin: 30px 0;
}
.achievement-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.achievement-icon i {
font-size: 2.5rem;
color: var(--white);
}
.achievement-content h4 {
font-size: 1.4rem;
color: var(--primary-green);
margin-bottom: 10px;
}
.achievement-stat {
font-size: 2.5rem;
font-weight: 800;
color: var(--gold);
line-height: 1;
margin-bottom: 15px;
}
.achievement-content p {
font-size: 1rem;
color: var(--text-gray);
line-height: 1.7;
margin: 0;
}
.operation-stats {
position: absolute;
bottom: 20px;
left: 20px;
right: 20px;
display: flex;
gap: 15px;
}
.stat-item {
flex: 1;
background: rgba(11,102,35,0.95);
padding: 15px;
border-radius: 12px;
text-align: center;
}
.stat-item strong {
display: block;
font-size: 1.8rem;
color: var(--gold);
margin-bottom: 5px;
}
.stat-item span {
display: block;
font-size: 0.85rem;
color: var(--white);
}
.reconstruction-badge {
position: absolute;
top: 20px;
left: 20px;
background: linear-gradient(135deg, var(--primary-green), var(--light-green));
color: var(--white);
padding: 12px 20px;
border-radius: 25px;
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
box-shadow: var(--shadow-md);
}
.reconstruction-badge i {
font-size: 1.3rem;
}
.program-list {
margin-top: 30px;
}
.program-item {
display: flex;
gap: 20px;
padding: 25px;
background: var(--light-gray);
border-radius: 12px;
margin-bottom: 15px;
transition: var(--transition);
}
.program-item:hover {
background: var(--white);
box-shadow: var(--shadow-md);
}
.program-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-green), var(--light-green));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.program-icon i {
font-size: 1.8rem;
color: var(--white);
}
.program-item strong {
display: block;
font-size: 1.1rem;
color: var(--primary-green);
margin-bottom: 8px;
}
.program-item p {
margin: 0;
font-size: 0.95rem;
color: var(--text-gray);
}
.dormancy-explanation {
max-width: 1000px;
margin: 0 auto;
}
.explanation-content h3 {
font-size: 2.2rem;
color: var(--primary-green);
text-align: center;
margin-bottom: 30px;
}
.explanation-card {
background: var(--light-gray);
padding: 30px;
border-radius: 15px;
height: 100%;
}
.explanation-card h4 {
font-size: 1.3rem;
margin-bottom: 15px;
}
.explanation-card p {
font-size: 1rem;
line-height: 1.8;
color: var(--text-gray);
}
.intact-list {
list-style: none;
padding: 0;
margin-top: 15px;
}
.intact-list li {
padding: 10px 0;
display: flex;
align-items: center;
font-size: 1rem;
color: var(--text-gray);
}
.intact-list i {
color: var(--primary-green);
margin-right: 12px;
font-size: 1.1rem;
}
.financial-context {
background: linear-gradient(135deg, var(--light-gold), var(--white));
padding: 30px;
border-radius: 15px;
border-left: 4px solid var(--gold);
}
.financial-context h4 {
font-size: 1.4rem;
color: var(--primary-green);
margin-bottom: 15px;
}
.financial-context p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--text-gray);
margin: 0;
}
/* ================== REVIVAL VISION SECTION ================== */
.revival-vision-section {
background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
color: var(--white);
position: relative;
overflow: hidden;
}
.revival-vision-section::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.revival-content {
position: relative;
z-index: 2;
}
.revival-badge {
display: inline-block;
background: var(--gold);
color: var(--white);
padding: 10px 30px;
border-radius: 30px;
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 20px;
}
.revival-title {
font-size: 3rem;
font-weight: 700;
margin-bottom: 30px;
}
.revival-text {
font-size: 1.2rem;
line-height: 1.8;
max-width: 900px;
margin: 0 auto 50px;
}
.revival-pillars {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 30px;
margin: 50px 0;
}
.pillar-item {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 35px 25px;
border-radius: 20px;
text-align: center;
transition: var(--transition);
border: 1px solid rgba(255,255,255,0.2);
}
.pillar-item:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-10px);
}
.pillar-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
box-shadow: var(--shadow-gold);
}
.pillar-icon i {
font-size: 2rem;
color: var(--white);
}
.pillar-item h4 {
font-size: 1.3rem;
margin-bottom: 10px;
color: var(--white);
}
.pillar-item p {
font-size: 0.95rem;
color: rgba(255,255,255,0.9);
margin: 0;
}
.digital-platform-note {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
padding: 30px;
border-radius: 20px;
display: flex;
align-items: center;
gap: 20px;
max-width: 800px;
margin: 50px auto 0;
}
.digital-platform-note i {
font-size: 3rem;
color: var(--gold);
flex-shrink: 0;
}
.digital-platform-note p {
font-size: 1.1rem;
line-height: 1.7;
margin: 0;
}
/* ================== ABOUT PAGE SPECIFIC ================== */
.feature-badges {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
}
.feature-badge {
background: var(--white);
padding: 20px;
border-radius: 15px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: var(--transition);
}
.feature-badge:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
}
.vision-mission-card {
background: var(--white);
padding: 45px;
border-radius: 20px;
box-shadow: var(--shadow-lg);
height: 100%;
}
.card-icon {
width: 90px;
height: 90px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
}
.vision-icon {
background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}
.mission-icon {
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
}
.card-icon i {
font-size: 2.5rem;
color: var(--white);
}
.vision-mission-card h3 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--text-dark);
}
.vision-points {
list-style: none;
padding: 0;
margin-top: 25px;
}
.vision-points li {
padding: 10px 0;
display: flex;
align-items: center;
font-size: 1.05rem;
}
.vision-points i {
color: var(--primary-green);
margin-right: 12px;
font-size: 1.2rem;
}
.mission-list {
list-style: none;
padding: 0;
margin-top: 25px;
}
.mission-list li {
display: flex;
gap: 15px;
padding: 20px;
background: var(--light-gray);
border-radius: 12px;
margin-bottom: 15px;
transition: var(--transition);
}
.mission-list li:hover {
background: var(--white);
box-shadow: var(--shadow-sm);
}
.mission-list i {
font-size: 1.8rem;
color: var(--gold);
flex-shrink: 0;
margin-top: 5px;
}
.mission-list strong {
display: block;
color: var(--primary-green);
margin-bottom: 5px;
}
.mission-list p {
margin: 0;
font-size: 0.95rem;
color: var(--text-gray);
}
.registration-details {
margin-top: 30px;
}
.detail-item {
display: flex;
gap: 20px;
padding: 20px;
background: var(--light-gray);
border-radius: 12px;
margin-bottom: 15px;
transition: var(--transition);
}
.detail-item:hover {
background: var(--white);
box-shadow: var(--shadow-sm);
}
.detail-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary-green), var(--light-green));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.detail-icon i {
font-size: 1.5rem;
color: var(--white);
}
.detail-content strong {
display: block;
color: var(--primary-green);
margin-bottom: 5px;
font-size: 1.05rem;
}
.detail-content p {
margin: 0;
font-size: 0.95rem;
color: var(--text-gray);
}
.partner-badge {
position: absolute;
bottom: 20px;
left: 20px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white);
padding: 15px 25px;
border-radius: 15px;
display: flex;
align-items: center;
gap: 10px;
font-weight: 600;
box-shadow: var(--shadow-gold);
}
.partner-badge i {
font-size: 1.5rem;
}
.cta-box {
background: linear-gradient(135deg, var(--light-gold), var(--white));
padding: 30px;
border-radius: 15px;
border-left: 4px solid var(--gold);
margin-top: 30px;
}
.cta-box h4 {
color: var(--primary-green);
margin-bottom: 15px;
font-size: 1.3rem;
}
.cta-box p {
margin-bottom: 20px;
}
.values-section {
background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
position: relative;
overflow: hidden;
}
.values-section::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 0.3;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 35px;
margin-top: 50px;
position: relative;
z-index: 2;
}
.value-card {
background: rgba(255,255,255,0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255,255,255,0.2);
padding: 40px 30px;
border-radius: 20px;
text-align: center;
transition: var(--transition);
}
.value-card:hover {
background: rgba(255,255,255,0.15);
transform: translateY(-10px);
}
.value-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.value-icon i {
font-size: 2rem;
color: var(--white);
}
.value-card h4 {
color: var(--white);
font-size: 1.5rem;
margin-bottom: 15px;
}
.value-card p {
color: rgba(255,255,255,0.9);
margin: 0;
}
/* ================== FOOTER ================== */
.footer {
background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
color: #ccc;
padding: 70px 0 30px;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, var(--primary-green), var(--gold), var(--primary-green));
}
.footer-content {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 50px;
margin-bottom: 50px;
}
.footer-section h4,
.footer-section h5 {
color: var(--white);
margin-bottom: 20px;
}
.footer-title {
font-size: 1.8rem;
display: flex;
align-items: center;
gap: 10px;
}
.footer-text {
color: #aaa;
line-height: 1.7;
margin-bottom: 25px;
}
.social-links {
display: flex;
gap: 15px;
}
.social-link {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
transition: var(--transition);
}
.social-link:hover {
background: var(--gold);
transform: translateY(-3px);
color: var(--white);
}
.footer-heading {
font-size: 1.1rem;
font-weight: 600;
}
.footer-links {
list-style: none;
padding: 0;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links a {
color: #aaa;
transition: var(--transition);
display: inline-block;
}
.footer-links a:hover {
color: var(--gold);
padding-left: 5px;
}
.footer-contact {
list-style: none;
padding: 0;
}
.footer-contact li {
color: #aaa;
margin-bottom: 15px;
display: flex;
gap: 12px;
line-height: 1.6;
}
.footer-contact i {
color: var(--gold);
margin-top: 3px;
flex-shrink: 0;
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
color: #888;
}
/* ================== BACK TO TOP ================== */
.back-to-top {
position: fixed;
bottom: 30px;
right: 30px;
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--gold), var(--dark-gold));
color: var(--white);
border: none;
border-radius: 50%;
font-size: 1.2rem;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: var(--transition);
box-shadow: var(--shadow-gold);
z-index: 999;
}
.back-to-top.show {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(212,175,55,0.5);
}
/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
.hero-title {
font-size: 2.5rem;
}
.hero-subtitle {
    font-size: 1.1rem;
}

.image-text-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.image-text-grid.reverse {
    direction: ltr;
}

.footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.activity-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
}

.activity-showcase.reverse {
    direction: ltr;
}

.activities-timeline::before {
    left: 30px;
}

.timeline-item {
    grid-template-columns: auto 1fr;
    gap: 30px;
}

.timeline-item:nth-child(even) .timeline-content:first-child,
.timeline-item:nth-child(odd) .timeline-content:last-child {
    text-align: left;
}

.timeline-marker {
    width: 60px;
    height: 60px;
}

.benefit-grid {
    grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
body {
padding-top: 70px;
}
.hero {
    padding: 120px 20px 80px;
}

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

.hero-buttons {
    flex-direction: column;
    align-items: stretch;
}

.showcase-image,
.activity-image {
    height: 350px;
}

.stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

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

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

.footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
}

.section {
    padding: 60px 0;
}

.cta-title,
.revival-title {
    font-size: 2rem;
}

.contact-info span:last-child {
    display: none;
}

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

.feature-badges {
    grid-template-columns: 1fr;
}

.values-grid,
.revival-pillars {
    grid-template-columns: 1fr;
}

.activities-timeline::before {
    left: 20px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
}

.timeline-marker i {
    font-size: 1.2rem;
}

.operation-stats {
    flex-direction: column;
}
}
@media (max-width: 480px) {
.hero-title {
font-size: 1.6rem;
}
.stats-grid {
    grid-template-columns: 1fr;
}

.stat-number {
    font-size: 2.5rem;
}

.impact-value {
    font-size: 3.5rem;
}

.era-title {
    font-size: 1.8rem;
}

.revival-title {
    font-size: 1.8rem;
}
}

/* ==================== START: Additional CSS for Leadership, Gallery, Archive, Contact, Donate ==================== */

/* ================== LEADERSHIP PAGE SPECIFIC ================== */
.governance-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.structure-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.structure-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.structure-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.structure-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.structure-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.structure-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Leader Profile Featured */
.leader-profile-featured {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-top: 50px;
}

.leader-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.leader-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.leader-badge-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
}

.leader-badge-overlay span {
    display: block;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.leader-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.credential-item {
    background: var(--light-gray);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.credential-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.credential-item i {
    font-size: 1.8rem;
    color: var(--primary-green);
    display: block;
    margin-bottom: 10px;
}

.credential-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.leader-bio-column h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.leader-title-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 30px;
}

.bio-section {
    margin-bottom: 35px;
}

.bio-section h4 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-section h4 i {
    font-size: 1.3rem;
}

.bio-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.achievement-list i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.leader-quote {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold);
    margin-top: 30px;
    position: relative;
}

.leader-quote i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.leader-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-green);
    margin: 0;
    padding-left: 50px;
    line-height: 1.7;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.leader-card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.leader-card:hover .leader-card-image img {
    transform: scale(1.1);
}

.leader-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,102,35,0.95), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.leader-card-content {
    padding: 30px;
}

.leader-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.leader-position {
    display: inline-block;
    background: var(--light-gold);
    color: var(--primary-green);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.leader-responsibilities {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.leader-responsibilities strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1rem;
}

.leader-responsibilities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.leader-responsibilities li {
    padding: 6px 0 6px 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    position: relative;
}

.leader-responsibilities li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Missionary Info */
.missionary-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

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

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

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.info-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

/* Leadership Principles */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.principle-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.principle-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
}

.principle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.principle-icon i {
    font-size: 2rem;
    color: var(--white);
}

.principle-card h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

/* ================== GALLERY PAGE SPECIFIC ================== */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-stat-item {
    background: linear-gradient(135deg, var(--light-gold), var(--white));
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.gallery-stat-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.gallery-stat-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.gallery-stat-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-color: var(--primary-green);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,102,35,0.95), rgba(11,102,35,0.3));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info {
    text-align: center;
    color: var(--white);
}

.gallery-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-info i {
    font-size: 2rem;
    color: var(--gold);
}

.gallery-caption {
    padding: 20px;
    background: var(--white);
    text-align: center;
}

.gallery-caption strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.gallery-caption span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Context Cards */
.context-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.context-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.context-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.context-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

.context-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.context-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

/* ================== RESPONSIVE FOR LEADERSHIP & GALLERY ================== */
@media (max-width: 992px) {
    .leader-profile-featured {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leader-featured-image {
        height: 400px;
    }
    
    .leader-credentials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .governance-structure {
        grid-template-columns: 1fr;
    }
    
    .leader-credentials {
        grid-template-columns: 1fr;
    }
    
    .leader-bio-column h3 {
        font-size: 2rem;
    }
    
    .leader-profile-featured {
        padding: 30px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 300px;
    }
    
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .leader-featured-image {
        height: 350px;
    }
    
    .leader-card-image {
        height: 300px;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== END: Additional CSS for Leadership & Gallery ==================== */