/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --primary-hover: #1a252f;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --text-dark: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --success: #27ae60;
    --warning: #f39c12;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

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

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

/* Navigation - Enhanced Modern Design */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* When navbar has sticky class - complete override */
body .navbar.sticky {
    background-color: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 0.75rem 0;
}

/* Override text colors in sticky navbar - but NOT for donate button */
body .navbar.sticky *:not(.donate-btn) {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

/* Specific overrides for logo */
body .navbar.sticky .logo-text,
body .navbar.sticky .logo-text:hover,
body .navbar.sticky .logo-text:visited {
    background: none !important;
    color: var(--primary-color) !important;
    -webkit-text-fill-color: var(--primary-color) !important;
    text-fill-color: var(--primary-color) !important;
}

/* Specific overrides for nav links (excluding donate button) */
body .navbar.sticky .nav-menu .nav-link:not(.donate-btn),
body .navbar.sticky .nav-menu .nav-link:not(.donate-btn):hover,
body .navbar.sticky .nav-menu .nav-link:not(.donate-btn):visited,
body .navbar.sticky .nav-menu .nav-link:not(.donate-btn):active,
body .navbar.sticky .nav-menu .nav-link:not(.donate-btn):focus {
    color: var(--primary-color) !important;
    text-shadow: none !important;
}

/* Nav link underline in sticky state */
body .navbar.sticky .nav-link:not(.donate-btn)::after {
    background-color: var(--primary-color) !important;
}

/* Hover state for nav links when sticky */
body .navbar.sticky .nav-link:not(.donate-btn):hover {
    background-color: rgba(44, 62, 80, 0.05) !important;
}

/* Active nav link when sticky */
body .navbar.sticky .nav-link.active:not(.donate-btn) {
    font-weight: 600 !important;
}

/* Donate button special case - FORCE WHITE TEXT */
body .navbar.sticky .nav-menu .donate-btn,
body .navbar.sticky .nav-menu .donate-btn:hover,
body .navbar.sticky .nav-menu .donate-btn:visited,
body .navbar.sticky .nav-menu .donate-btn:active,
body .navbar.sticky .nav-menu .donate-btn:focus {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border: 2px solid var(--primary-color) !important;
    text-shadow: none !important;
}

body .navbar.sticky .nav-menu .donate-btn:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover) !important;
    color: #ffffff !important;
}

/* Mobile menu toggle when sticky */
body .navbar.sticky .mobile-menu-toggle span {
    background-color: var(--primary-color) !important;
}

/* Remove all conflicting styles */
.navbar.scrolled,
.navbar.scrolled * {
    /* Completely remove these */
}

.navbar.scrolled .logo-text {
    /* Remove or comment out these styles */
}

.navbar.scrolled .nav-link,
.navbar.scrolled .nav-link:visited,
.navbar.scrolled .nav-link:active,
.navbar.scrolled .nav-link:focus {
    /* Remove or comment out these styles */
}

.navbar.scrolled .nav-link::after {
    /* Remove or comment out these styles */
}

/* General Navbar Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

/* Text Logo Styles */
.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff !important;
    padding: 0.75rem 2rem !important;
    margin-left: 1rem;
    text-shadow: none !important;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.donate-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.donate-btn::after {
    display: none;
}

/* Hero Section - Enhanced */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Mission Section - Revolutionized Style */
.mission {
    padding: 120px 0;
    background: radial-gradient(ellipse at top right, #eaf6fb 0%, #f8f9fa 60%, #f5eafc 100%);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: -12%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52,152,219,0.10) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(8px);
}

.mission::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(231,76,60,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(6px);
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.mission-content {
    flex: 1 1 380px;
    background: linear-gradient(120deg, #fff 60%, #eaf6fb 100%);
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(44,62,80,0.10);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.mission-content::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 18px rgba(44,62,80,0.10);
    position: relative;
    z-index: 1;
}

.mission-content p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    background: rgba(244,247,252,0.7);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.03);
    position: relative;
    z-index: 1;
}

.mission-content p.highlight {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 2rem;
    background: rgba(231,76,60,0.07);
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.2rem;
}

.mission-stats {
    flex: 1 1 380px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    background: linear-gradient(120deg, #fff 60%, #eaf6fb 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.09);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid rgba(52,152,219,0.07);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.stat-card i {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    font-size: 1.05rem;
    color: #3a3a3a;
    margin: 0;
    font-weight: 500;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(44,62,80,0.13);
    background: linear-gradient(120deg, var(--primary-color) 60%, var(--accent-color) 100%);
    color: #fff;
}

.stat-card:hover i {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.stat-card:hover h3 {
    -webkit-text-fill-color: #fff;
    color: #fff;
}

.stat-card:hover p {
    color: #fff;
}

/* Mission Section Header */
.mission .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.mission .section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.7;
}

.mission .section-header h2 {
    font-size: 2.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(44,62,80,0.10);
    font-weight: 800;
    letter-spacing: -1px;
}

.mission .section-header p {
    font-size: 1.15rem;
    color: #3a3e3a;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 24px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.03);
}

/* Services Section */
.services {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(0deg) scale(1.1);
}

/* About Section - Revolutionized Style */
.about {
    padding: 120px 0;
    background: radial-gradient(ellipse at top left, #eaf6fb 0%, #f8f9fa 60%, #f5eafc 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(52,152,219,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(10px);
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231,76,60,0.10) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(8px);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.about-text {
    flex: 1 1 380px;
    background: linear-gradient(120deg, #fff 60%, #eaf6fb 100%);
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(44,62,80,0.10);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 18px rgba(44,62,80,0.10);
    position: relative;
    z-index: 1;
}

.about-text h3 {
    color: var(--accent-color);
    margin: 2rem 0 1.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    background: rgba(244,247,252,0.7);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 8px rgba(44,62,80,0.03);
    position: relative;
    z-index: 1;
}

.about-values h3 {
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: linear-gradient(120deg, #f7fafc 0%, #eaf6fb 100%);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(44,62,80,0.06);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.08rem;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(52,152,219,0.08);
    position: relative;
    overflow: hidden;
}

.value-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
    transition: color 0.3s;
    z-index: 1;
}

.value-item:hover {
    background: linear-gradient(120deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 8px 32px rgba(44,62,80,0.14);
}

.value-item:hover i {
    color: #fff;
}

.about-image {
    flex: 1 1 340px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(44,62,80,0.13);
    background: linear-gradient(120deg, #eaf6fb 0%, #f5eafc 100%);
    padding: 12px;
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
}

.image-caption {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: linear-gradient(to top, rgba(44,62,80,0.96), rgba(44,62,80,0.7));
    color: #fff;
    padding: 20px 12px;
    text-align: center;
    border-radius: 0 0 18px 18px;
    font-size: 1.12rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(44,62,80,0.18);
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    z-index: 2;
}

/* About Section Header */
.about .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.about .section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.7;
}

.about .section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(44,62,80,0.10);
    font-weight: 800;
    letter-spacing: -1px;
}

.about .section-header p {
    font-size: 1.18rem;
    color: #3a3a3a;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 24px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(44,62,80,0.03);
}

/* News Section - Modernized */
.news {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.news .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.news .section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-color);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
    flex: 1;
}

.news-content p {
    font-size: 0.975rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    gap: 12px;
}

.news-link i {
    font-size: 0.875rem;
}

.news-footer {
    text-align: center;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

/* Sticky navbar styles */
.navbar.sticky {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Override nav-link colors when sticky */
.navbar.sticky .nav-link {
    color: var(--primary-color) !important;
    transition: color 0.3s ease;
}

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

/* Active nav link in sticky state */
.navbar.sticky .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

/* Logo text color when sticky */
.navbar.sticky .logo-text {
    color: var(--primary-color) !important;
}

/* Donate button special styling when sticky */
.navbar.sticky .donate-btn {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: 2px solid var(--primary-color);
}

.navbar.sticky .donate-btn:hover {
    background: var(--primary-hover) !important;
    border-color: var(--primary-hover);
}

/* Section backgrounds - consistent white */
.mission,
.services,
.about,
.news,
.contact {
    background: #fff;
    color: var(--text-dark);
}

/* Alternate section backgrounds for visual separation */
.services,
.news {
    background: #f8f9fa;
}

/* Ensure proper text contrast */
.section-header h2 {
    color: var(--text-dark);
}

.section-header p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-impact {
        justify-content: space-around;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .news-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about .section-header h2,
    .news .section-header h2 {
        font-size: 2rem;
    }
    
    .impact-stat h4 {
        font-size: 2rem;
    }
    
    .about-impact {
        gap: 25px;
    }
}

/* About Section - Enhanced */
.about {
    padding: 60px 0;          /* was 80px */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;                /* was 4rem */
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem; /* tighter spacing */
}

.about-text p:nth-of-type(n+3) { display: none; } /* show only first two paragraphs to match image height */

.about-text h3 {
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-text h3::before {
    content: '✦';
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.objectives-list {
    list-style: none;
    margin: 1.5rem 0;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.objectives-list li:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateX(10px);
}

.objectives-list i {
    color: var(--success);
    margin-right: 1rem;
    margin-top: 2px;
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-stat p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.about-image:hover::before {
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
    color: var(--white);
    padding: 2.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Mission Section - fix right cards layout */
.mission-stats {
    flex: 1 1 380px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .mission-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .stat-card {
        min-width: 0;
    }
}

/* News Section */
.news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    border-radius: 20px;
    overflow: hidden;
    background: white;
    display: block;
}

.news-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-card.featured .news-image {
    height: 100%;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--gray);
    font-size: 0.875rem;
    margin-top: 48px; /* Add margin to push date below the close button */
}

.news-content h3 {
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.read-more {
    color: var(--accent-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 1rem;
}

.news-link i {
    font-size: 0.875rem;
}

.news-footer {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form - Modern Design */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Footer - Modern Enhanced Design */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '▸';
    margin-right: 0.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Updated Social Links in Footer */
.footer .social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px) rotate(360deg);
}

/* News Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: fixed;
    top: 32px;
    right: 32px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2100;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1.2rem;
    color: #333;
}

.modal-header {
    padding: 30px 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 48px; /* Add margin to push date below the close button */
}

.modal-title {
    padding: 0 30px 20px;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #eee;
}

.modal-footer .btn {
    flex: 1;
    text-align: center;
    padding: 12px 24px;
}

.modal-share {
    background: #f0f0f0;
    color: var(--primary-color);
    border: none;
}

.modal-share:hover {
    background: #e0e0e0;
}

/* Modal Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-title {
        font-size: 1.5rem;
        padding: 0 20px 15px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.modal-close {
    position: fixed;
    top: 32px;
    right: 32px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2100;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-close i {
    font-size: 1.2rem;
    color: #333;
}

.modal-header {
    padding: 30px 30px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-category {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.modal-date {
    color: #666;
    font-size: 0.9rem;
    margin-top: 48px; /* Add margin to push date below the close button */
}

.modal-title {
    padding: 0 30px 20px;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.modal-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #eee;
}

.modal-footer .btn {
    flex: 1;
    text-align: center;
    padding: 12px 24px;
}

.modal-share {
    background: #f0f0f0;
    color: var(--primary-color);
    border: none;
}

.modal-share:hover {
    background: #e0e0e0;
}

/* Modal Scrollbar Styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 2.5vh auto;
    }
    
    .modal-title {
        font-size: 1.5rem;
        padding: 0 20px 15px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-body p {
        font-size: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}
body.modal-open {
    overflow: hidden;
}
