.elementor-7 .elementor-element.elementor-element-89a2d7c{--display:flex;}.elementor-7 .elementor-element.elementor-element-1a6741b{--display:flex;}.elementor-7 .elementor-element.elementor-element-9715fff{--display:flex;}.elementor-7 .elementor-element.elementor-element-6e7e684{--display:flex;}.elementor-7 .elementor-element.elementor-element-acf599d{--display:flex;}.elementor-7 .elementor-element.elementor-element-921c493{--display:flex;}.elementor-7 .elementor-element.elementor-element-7ec3664{--display:flex;}.elementor-7 .elementor-element.elementor-element-123980b{--display:flex;}.elementor-7 .elementor-element.elementor-element-e282e1e{--display:flex;}.elementor-7 .elementor-element.elementor-element-0da4ddc{--display:flex;}.elementor-7 .elementor-element.elementor-element-ab2c1ba{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8705ae1 *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ccc77b *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2edb506 *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a730a4e *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c845b98 *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b78af3c *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e8a8c38 *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e9671a8 *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e27f390 *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8c1d18e *//* ==========================================================================
   Brand Design Tokens & Root Variables
   ========================================================================== */
:root {
    /* Main Brand Palette */
    --primary: #008665;
    --primary-dark: #006F54;
    --accent: #159878;
    --accent-light: #E6F3EF;
    
    /* Neutrals */
    --text-main: #1F1F1F;
    --text-muted: #667085;
    --surface-light: #F8F9FA;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing System */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 1.5rem;   /* 24px */
    --space-lg: 2.5rem;   /* 40px */
    --space-xl: 4rem;     /* 64px */
    --space-2xl: 6rem;    /* 96px */
    
    /* Layout */
    --container-max-width: 1240px;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-standard);
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 9999;
    border-radius: var(--radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

/* Focus Visible outlines */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* ==========================================================================
   Typography & Reusable Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.2px;
}

.section-heading {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-main);
}

.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
}

.section-header {
    margin-bottom: var(--space-lg);
}

.section-header.center {
    text-align: center;
}

.center-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Layout Grids */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-standard);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(0, 134, 101, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--surface-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    color: var(--primary);
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition-standard);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    height: 70px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-standard);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-standard);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-cta-wrapper {
    display: none;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    padding-bottom: 80px; /* Space for welcome card overlap */
}

.slider-container {
    position: relative;
    height: 560px;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 111, 84, 0.9) 0%, rgba(0, 134, 101, 0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 750px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
    color: var(--white);
    line-height: 1.25;
}

.slide-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.slide-actions {
    display: flex;
    gap: 1rem;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-standard);
}

.slider-arrow:hover {
    background-color: var(--white);
    color: var(--primary);
}

.prev-arrow { right: 2rem; }
.next-arrow { left: 2rem; }

.slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-standard);
}

.dot.active {
    width: 32px;
    border-radius: 6px;
    background-color: var(--white);
}

/* ==========================================================================
   Floating Welcome Section
   ========================================================================== */
.welcome-container {
    position: relative;
    margin-top: -80px;
    z-index: 20;
}

.welcome-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.welcome-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

.welcome-pillars {
    display: flex;
    justify-content: space-around;
    border-right: 1px solid var(--border);
    padding-right: 2rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
}

.feature-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
}

.about-visual {
    position: relative;
}

.visual-wrapper {
    position: relative;
    padding: 1rem;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: var(--accent-light);
    border-radius: var(--radius-md);
    transform: rotate(-2deg);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    object-fit: cover;
    width: 100%;
    height: 420px;
}

.floating-impact-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background-color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 280px;
}

.impact-title {
    display: block;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
}

.impact-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   Chairman Section
   ========================================================================== */
.section-chairman {
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
}

.section-chairman .pattern-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(21, 152, 120, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.chairman-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3rem;
    align-items: center;
}

.chairman-img-wrapper {
    position: relative;
}

.chairman-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.chairman-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.chairman-heading {
    font-size: 1.85rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.chairman-body p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.chairman-signature {
    margin-top: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
}

.chairman-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.chairman-role {
    font-size: 0.85rem;
    color: var(--accent);
}

/* ==========================================================================
   Programs Section
   ========================================================================== */
.section-programs {
    background-color: var(--surface-light);
}

.program-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.card-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.program-card:hover .card-image-wrap img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.meta-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.card-link:hover {
    color: var(--primary-dark);
}

/* ==========================================================================
   Statistics Section
   ========================================================================== */
.section-stats {
    background-color: var(--primary);
    color: var(--white);
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-wrap {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.section-news {
    background-color: var(--white);
}

.section-news .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-standard);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.news-img-wrap {
    height: 190px;
    overflow: hidden;
}

.news-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.news-card:hover .news-img-wrap img {
    transform: scale(1.05);
}

.news-body {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-cat {
    color: var(--primary);
    font-weight: 700;
}

.news-date {
    color: var(--text-muted);
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Volunteer Section
   ========================================================================== */
.section-volunteer {
    background-color: var(--surface-light);
}

.volunteer-card {
    background-color: var(--white);
    padding: 2.25rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-standard);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.volunteer-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.v-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.v-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.v-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.section-partners {
    background-color: var(--white);
    overflow: hidden;
}

.partner-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.partner-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: scrollRTL 25s linear infinite;
}

.partner-carousel-wrapper:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo-item {
    width: 180px;
    height: 90px;
    background-color: var(--surface-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

@keyframes scrollRTL {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* ==========================================================================
   Contribution CTA Banner
   ========================================================================== */
.section-cta {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 111, 84, 0.92) 0%, rgba(0, 134, 101, 0.88) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.cta-heading {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section-contact {
    background-color: var(--white);
}

.info-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.contact-form-wrapper {
    background-color: var(--surface-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.req { color: #D92D20; }

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    transition: var(--transition-standard);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 134, 101, 0.15);
}

.form-textarea {
    resize: vertical;
}

.error-message {
    display: none;
    color: #D92D20;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.form-group.has-error .form-input {
    border-color: #D92D20;
}

.form-group.has-error .error-message {
    display: block;
}

.form-alert {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
}

.success-alert {
    background-color: #ECFDF3;
    color: #027A48;
    border: 1px solid #ABE5C6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #004B37;
    color: var(--white);
    padding-top: 4rem;
}

.footer-primary {
    padding-bottom: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--accent);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-right: 4px;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background-color: #003B2B;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 0.75rem;
}

.legal-links a:hover {
    color: var(--white);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop / Medium Desktop (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .welcome-card {
        grid-template-columns: 1fr;
    }
    .welcome-pillars {
        border-right: none;
        padding-right: 0;
        border-top: 1px solid var(--border);
        padding-top: 1.5rem;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    /* Header Mobile Drawer */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-md);
        overflow-y: auto;
    }

    .nav-menu.is-active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }

    .header-btn-desktop {
        display: none;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 2rem;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-img-wrapper {
        max-width: 280px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .desktop-only-btn {
        display: none;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-desc {
        font-size: 1rem;
    }

    .cta-heading {
        font-size: 1.85rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .floating-impact-card {
        position: static;
        margin-top: 1rem;
        max-width: 100%;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-lg);
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .slide-actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}/* End custom CSS */