/*
Theme Name: Hope Foundation
Theme URI: https://hopefoundation.org
Description: A complete, responsive WordPress theme designed specifically for charity and non-profit organizations. Features include donation system, event management, volunteer registration, and custom post types for causes and testimonials.
Author: Hope Foundation Team
Version: 1.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hope-foundation
Tags: charity, nonprofit, donation, events, volunteers, responsive, bootstrap
*/

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Color Variables */
:root {
    --primary-color: #dc3545;
    --secondary-color: #f39c12;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --gray: #95a5a6;
    --dark-gray: #7f8c8d;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

p {
    margin-bottom: 15px;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

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

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

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

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

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

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

/* Header Styles */
.site-header {
    position: relative;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    position: relative;
    z-index: 999;
    margin: 0;
}

.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(15px);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(44, 62, 80, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(0);
    opacity: 1;
}

.navbar-brand img {
    height: 45px;
    width: auto;
    filter: brightness(1.2);
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--white);
    margin: 0 10px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
    background-color: var(--primary-color);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--white);
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--white);
    background-color: var(--primary-color);
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.5);
    padding: 6px 10px;
    border-radius: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    background-color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.header-buttons .btn {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar .contact-info span {
    margin-right: 15px;
    font-size: 13px;
    display: inline-block;
}

.top-bar .contact-info i {
    margin-right: 6px;
    color: var(--white);
}

.social-links a {
    color: var(--white);
    margin-left: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 4px;
    border-radius: 3px;
}

.social-links a:hover {
    color: var(--white);
    background-color: rgba(255,255,255,0.2);
}

/* Language Switcher */
.language-switcher {
    font-size: 13px;
}

.language-switcher a,
.manual-lang-switcher a {
    color: var(--white);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
}

.language-switcher a:hover,
.manual-lang-switcher a:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    text-decoration: none;
}

.language-switcher .current,
.manual-lang-switcher .current,
.manual-lang-switcher .active {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    font-weight: 600;
}

.manual-lang-switcher .active:hover {
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
}

/* Language switcher loading state */
.manual-lang-switcher a.loading {
    opacity: 0.7;
    pointer-events: none;
}

.language-switcher a.loading,
.manual-lang-switcher a.loading {
    opacity: 0.7;
    pointer-events: none;
}

.language-switcher .fa-spinner,
.manual-lang-switcher .fa-spinner {
    margin-left: 4px;
    font-size: 10px;
}

.manual-lang-switcher a.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-sun svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-letters {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.logo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
}

/* Main Content */
.site-main {
    margin-top: 0;
    padding-top: 0;
}

/* Hero Section */
.hero-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    top: 0;
}

/* Site main container - remove top margin for homepage */
.site-main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure header doesn't push content down on homepage */
body.home .site-main {
    margin-top: 0 !important;
}

/* Fix any potential spacing issues */
.hero-section .hero-slider {
    margin-top: 0;
    padding-top: 0;
}

/* Ensure other pages have proper spacing */
.page-header {
    margin-top: 0;
    padding: 20px 0 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
}

.page-header h1 {
    color: white;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: white !important;
}

/* Hero Section - SKT Charity Style */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(220, 53, 69, 0.7), rgba(52, 58, 64, 0.7));
    z-index: 2;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.nav-dot {
    width: 50px;
    height: 4px;
    background-color: rgba(255,255,255,0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    outline: none;
    --animation-progress: 0%;
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--animation-progress);
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    transition: width 5s linear;
    border-radius: 2px;
}

.nav-dot.active {
    background-color: rgba(255,255,255,0.6);
}

.nav-dot.active::after {
    background-color: white;
    transition: width 5s linear;
}

.nav-dot:hover {
    background-color: rgba(255,255,255,0.6);
}

/* Reset animation when slide changes */
.nav-dot:not(.active) {
    --animation-progress: 0%;
}

.nav-dot:not(.active)::after {
    transition: width 0.3s ease;
}

/* Mission Cards Section - SKT Style */
.mission-section {
    background-color: #f8f9fa;
}

.large-mission-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.large-mission-card .mission-icon i {
    opacity: 0.9;
}

.large-mission-card .mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.small-mission-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.small-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.small-mission-card .card-image {
    height: 150px;
    overflow: hidden;
}

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

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

.small-mission-card .card-title {
    color: #2c3e50;
    font-weight: 600;
}

.bg-purple {
    background-color: #9b59b6 !important;
}

.progress-info .progress {
    background-color: #e9ecef;
}

.progress-info .progress-bar {
    background-color: #007bff !important;
}

/* Support Section - Enhanced */
.support-section {
    position: relative;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.support-section .container {
    position: relative;
    z-index: 2;
}

.support-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-section .section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

.support-section .stat-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.support-section .stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.support-section .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Arial Black', Arial, sans-serif;
}

.support-section .stat-label {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    margin-left: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Section */
.blog-section {
    background-color: #f8f9fa;
}

.blog-section .section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 10px;
}

.blog-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.blog-card .blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card .blog-date .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
}

.blog-card .blog-title a {
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card .blog-title a:hover {
    color: #dc3545 !important;
}

.blog-card .read-more-link {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-card .read-more-link:hover {
    transform: translateX(5px);
    color: #dc3545 !important;
}

/* Map Section - Add before footer */
.map-section {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e9ecef;
}

.map-section.hidden {
    display: none;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Footer Styles */
.mission-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.mission-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.mission-icon {
    margin-bottom: 30px;
}

.mission-icon i {
    font-size: 4rem;
    color: #2c3e50;
    display: block;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.mission-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Support Section - SKT Style */
.support-section {
    background: var(--primary-color);
    padding: 80px 0;
}

.support-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.support-section .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.stat-item {
    padding: 20px 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Causes Section - SKT Style */
.causes-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.cause-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.cause-image {
    position: relative;
    overflow: hidden;
}

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

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

.cause-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cause-content {
    padding: 30px;
}

.cause-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cause-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cause-title a:hover {
    color: var(--primary-color);
}

.cause-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cause-progress {
    margin-top: 20px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.progress-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.progress {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.6s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.progress-stats .raised {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-stats .goal {
    color: #666;
}

.navbar {
    padding: 15px 0;
    background-color: var(--white);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    text-decoration: none;
}

.navbar-brand .logo {
    width: 40px;
    margin-right: 10px;
}

.navbar-brand .brand-text {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.btn-donate {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-donate:hover {
    background-color: #c0392b;
    color: var(--white);
    transform: scale(1.05);
}

/* Main Content */
.site-main {
    margin-top: 120px;
}

/* Override for homepage - no margin */
body.home .site-main {
    margin-top: 0 !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.png') repeat;
    opacity: 0.1;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin-right: 15px;
    margin-bottom: 10px;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Mission Cards */
.mission-cards {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.mission-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.mission-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--gray);
}

/* Support Section */
.support-section {
    padding: 100px 0;
}

.support-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.support-stats {
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(10px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

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

.stat-content h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.stat-content p {
    margin: 0;
    color: var(--gray);
}

.support-images {
    position: relative;
}

.support-images .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Causes Section */
.causes-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

.cause-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.cause-card:hover {
    transform: translateY(-10px);
}

.cause-image {
    position: relative;
    overflow: hidden;
}

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

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

.cause-content {
    padding: 30px;
}

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

.cause-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cause-progress {
    margin: 20px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, var(--success-color), #2ecc71);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--gray);
}

/* Education Section */
.education-section {
    padding: 100px 0;
}

.education-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.education-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateX(10px);
}

.feature-item:hover .feature-icon {
    background: var(--white);
    color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary-color), #f39c12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

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

.feature-content h4 {
    margin-bottom: 5px;
    color: inherit;
}

.feature-content p {
    margin: 0;
    color: inherit;
    opacity: 0.8;
}

.education-image {
    position: relative;
}

.education-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
}

.education-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.education-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.education-stats {
    display: flex;
    gap: 30px;
}

.education-stats .stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.education-stats .stat p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

/* Action Buttons */
.action-buttons {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495e 100%);
}

.action-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.card-donate::before {
    background: linear-gradient(45deg, var(--primary-color), #c0392b);
}

.card-volunteer::before {
    background: linear-gradient(45deg, var(--accent-color), #2980b9);
}

.card-sponsor::before {
    background: linear-gradient(45deg, var(--success-color), #27ae60);
}

.action-card:hover {
    transform: translateY(-10px);
}

.action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-donate .action-icon {
    background: linear-gradient(45deg, var(--primary-color), #c0392b);
}

.card-volunteer .action-icon {
    background: linear-gradient(45deg, var(--accent-color), #2980b9);
}

.card-sponsor .action-icon {
    background: linear-gradient(45deg, var(--success-color), #27ae60);
}

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

.action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.btn-action:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.team-member {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.member-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

.member-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: var(--dark-color);
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Platform Section */
.platform-section {
    padding: 100px 0;
}

.platform-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.platform-features {
    margin-bottom: 40px;
}

.platform-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.platform-features .feature:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateX(10px);
}

.platform-features .feature:hover .feature-icon {
    background: var(--white);
    color: var(--accent-color);
}

.platform-features .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.platform-features .feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.platform-features .feature-text h4 {
    margin-bottom: 5px;
}

.platform-features .feature-text p {
    margin: 0;
    opacity: 0.8;
}

.platform-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    color: var(--white);
}

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

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

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

.news-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-10px);
}

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

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

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

.news-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.news-date .day {
    display: block;
    font-size: 1.5rem;
}

.news-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-content {
    padding: 30px;
}

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

.news-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c0392b;
}

/* Contact Map */
.contact-map {
    padding: 100px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    background: transparent !important;
    color: var(--white);
    padding: 0;
    border-radius: 0;
    text-align: left;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color) !important;
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
    background-color: var(--dark-color) !important;
}

.footer-widget {
    background-color: transparent !important;
}

.footer-widget .contact-info {
    background-color: transparent !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    text-align: left !important;
}

.footer-widget .contact-item {
    background-color: transparent !important;
    background: transparent !important;
}

.footer-widget h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

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

.footer-logo img {
    width: 40px;
    margin-right: 10px;
}

.footer-logo h3 {
    color: var(--primary-color);
    margin: 0;
}

.footer-widget p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #34495e;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

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

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0px;
}

.contact-info .contact-item i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-text p {
    margin: 0;
    color: #bdc3c7;
    line-height: 1.3;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.copyright p {
    margin: 0;
    color: #95a5a6;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), #c0392b);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(45deg, #c0392b, var(--primary-color));
    color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .hero-buttons {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .mission-card,
    .cause-card,
    .team-member,
    .news-card {
        margin-bottom: 20px;
    }
    
    .education-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-widget {
        margin-bottom: 40px;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .education-overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .social-links {
        text-align: center !important;
        margin-top: 10px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 30px;
        margin: 5px;
    }
    
    .mission-card {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .support-section .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        background-color: rgba(44, 62, 80, 0.95);
        padding: 20px;
        border-radius: 8px;
        margin-top: 10px;
    }
    
    .navbar.scrolled .navbar-nav {
        background-color: var(--dark-color);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        color: white;
    }
    
    .page-header {
        margin-top: 100px;
        padding: 20px 0 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin-bottom: 5px;
        text-align: center;
    }
    
    .top-bar .col-md-8,
    .top-bar .col-md-4 {
        text-align: center;
    }
    
    .language-switcher {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .social-links {
        text-align: center;
    }
    
    .navbar-collapse {
        background-color: rgba(44, 62, 80, 0.95);
        margin-top: 15px;
        padding: 20px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
    }
    
    .navbar.scrolled .navbar-collapse {
        background-color: var(--dark-color);
    }
}

.language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.language-switcher li {
    margin: 0 5px;
}

.language-switcher a {
    color: var(--white);
    text-decoration: none;
    padding: 5px 8px;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.language-switcher a:hover {
    background-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.language-switcher .lang-item-first {
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 10px;
    margin-right: 5px;
}

.language-switcher img {
    width: 16px;
    height: 12px;
    margin-right: 5px;
    border-radius: 2px;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .top-bar .contact-info {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .top-bar .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .language-switcher {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .social-links {
        text-align: center;
    }
    
    .mission-card {
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 2rem !important;
        color: white !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem !important;
        color: white !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .mission-card {
        margin-bottom: 20px;
    }
}

.text-primary {
    color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

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

.btn-primary:hover {
    background-color: #c82333;
    border-color: #c82333;
}

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

.btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}

/* Hero Navigation Dots */
.hero-nav button {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    color: rgba(255,255,255,0.7);
    margin: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-nav button:hover,
.hero-nav button.active {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary-color);
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

.animate__delay-1s {
    animation-delay: 1s;
}

.animate__delay-2s {
    animation-delay: 2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* =============================================================
   POLICY PAGES STYLES
   ============================================================= */

.policy-content {
    background-color: #f8f9fa;
    min-height: 60vh;
}

.policy-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.policy-section h3 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}

.policy-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.policy-section ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-section ul li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.policy-section ul li::before {
    content: "▸";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.last-updated {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: #666;
    margin-bottom: 25px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Mobile responsiveness for policy pages */
@media (max-width: 768px) {
    .policy-wrapper {
        padding: 25px 20px;
        margin: 0 15px 30px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section h3 {
        font-size: 16px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center !important;
    }
    
    .contact-info {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .policy-wrapper {
        padding: 20px 15px;
        margin: 0 10px 20px;
        border-radius: 6px;
    }
    
    .policy-section {
        margin-bottom: 25px;
    }
    
    .policy-section ul {
        padding-left: 15px;
    }
    
    .last-updated {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* ========================================
   VOLUNTEER PAGE STYLES
======================================== */

/* Volunteer Hero Section */
.volunteer-hero {
    padding: 80px 0;
    color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.volunteer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.volunteer-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.volunteer-hero .lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.volunteer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.volunteer-stats .stat {
    text-align: center;
}

.volunteer-stats .stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.volunteer-stats .stat p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray);
}

.volunteer-image {
    position: relative;
    z-index: 2;
}

.volunteer-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform: translateY(-20px);
}

/* Volunteer Opportunities Section */
.volunteer-opportunities {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.opportunity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.opportunity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.opportunity-icon i {
    font-size: 1.8rem;
    color: white;
}

.opportunity-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.opportunity-details {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.opportunity-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.opportunity-details li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 16px;
}

.opportunity-card .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Why Volunteer Section */
.why-volunteer {
    padding: 80px 0;
    background: white;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.volunteer-benefits-image {
    position: relative;
}

.volunteer-benefits-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Volunteer Form Section */
.volunteer-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.volunteer-form-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
}

.volunteer-form-section .lead {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Volunteer Stories Section */
.volunteer-stories {
    padding: 80px 0;
    background: white;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

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

.story-image {
    height: 250px;
    overflow: hidden;
}

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

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

.story-content {
    padding: 2rem;
}

.story-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.story-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.story-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-rating {
    display: flex;
    gap: 2px;
}

.story-rating i {
    color: var(--secondary-color);
    font-size: 1rem;
}

/* Enhanced Form Styling */
.volunteer-form .form-group {
    margin-bottom: 1.5rem;
}

.volunteer-form label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.volunteer-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.volunteer-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background: white;
}

.volunteer-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.volunteer-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.volunteer-form .btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

/* Enhanced checkbox styling */
.volunteer-form .checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.volunteer-form .form-check {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.volunteer-form .form-check:hover {
    border-color: var(--primary-color);
    background: #fff;
}

.volunteer-form .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

.volunteer-form .form-check-input {
    margin-right: 8px;
}

.volunteer-form .form-check-label {
    font-weight: 500;
    color: var(--dark-color);
}

/* Testimonials Section */
.volunteer-testimonials {
    padding: 80px 0;
    background: var(--dark-color);
    color: white;
}

.volunteer-testimonials h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h5 {
    margin: 0 0 0.25rem 0;
    color: var(--secondary-color);
}

.author-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .volunteer-hero h2 {
        font-size: 2rem;
    }
    
    .volunteer-stats {
        gap: 1rem;
    }
    
    .volunteer-stats .stat h3 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .opportunity-card {
        padding: 1.5rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .volunteer-form-section h2 {
        font-size: 2rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .volunteer-hero {
        padding: 60px 0;
    }
    
    .volunteer-hero h2 {
        font-size: 1.8rem;
    }
    
    .volunteer-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .volunteer-opportunities,
    .why-volunteer,
    .volunteer-form-section,
    .volunteer-testimonials {
        padding: 60px 0;
    }
    
    .form-container {
        padding: 1.5rem;
    }
}

/* ========================================
   DONATION PAGE STYLES
======================================== */

/* Donation Section */
.donation-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Donation Form Wrapper */
.donation-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(220, 53, 69, 0.1);
    margin-bottom: 2rem;
}

.donation-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.donation-form-wrapper > p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Donation Amounts */
.donation-amounts {
    margin-bottom: 2.5rem;
}

.donation-amounts h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: var(--dark-color);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.amount-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(220, 53, 69, 0.1);
    transform: translateY(-2px);
}

.amount-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.custom-amount {
    margin-top: 1.5rem;
}

.custom-amount label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.custom-amount .input-group {
    max-width: 300px;
}

.custom-amount .input-group-text {
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.custom-amount .form-control {
    border: 2px solid #e9ecef;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.custom-amount .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Donation Type */
.donation-type,
.cause-selection,
.donor-information,
.payment-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.donation-type h3,
.cause-selection h3,
.donor-information h3,
.payment-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.type-options .form-check {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.type-options .form-check:hover {
    border-color: var(--primary-color);
    background: white;
}

.type-options .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
}

.type-options .form-check-label strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.type-options .form-check-label p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Cause Selection */
.cause-selection .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.cause-selection .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background: white;
}

/* Donation Form */
.donation-form .form-group {
    margin-bottom: 1.5rem;
}

.donation-form label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.donation-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.donation-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    background: white;
}

/* Payment Methods */
.payment-methods .form-check {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.payment-methods .form-check:hover {
    border-color: var(--primary-color);
    background: white;
}

.payment-methods .form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Submit Button */
.donation-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.donation-form .btn-primary:hover {
    background: linear-gradient(135deg, #c0392b, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

/* Donation Sidebar */
.donation-sidebar {
    position: sticky;
    top: 100px;
}

.donation-summary,
.impact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.donation-summary h3,
.impact-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid var(--primary-color);
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.tax-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

/* Impact Information */
.impact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.impact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.impact-icon i {
    font-size: 1.2rem;
    color: white;
}

.impact-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.impact-text p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Security Info */
.security-info {
    background: #fff;
    border: 2px solid #e9ecef;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.security-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-info i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-section {
        padding: 60px 0;
    }
    
    .donation-form-wrapper {
        padding: 2rem;
    }
    
    .donation-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .donation-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .donation-summary,
    .impact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .donation-form-wrapper {
        padding: 1.5rem;
    }
    
    .donation-form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Other Ways to Help Section */
.other-ways-section {
    padding: 80px 0;
    background: white;
}

.other-ways-section .section-header {
    margin-bottom: 3rem;
}

.other-ways-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.other-ways-section .section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.help-option {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.help-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.help-icon i {
    font-size: 2rem;
    color: white;
}

.help-option h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.help-option p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.help-option .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.security-feature {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
    transition: transform 0.3s ease;
}

.security-feature:hover {
    transform: translateX(5px);
}

.security-feature i {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-right: 1rem;
    width: 24px;
    text-align: center;
}

.security-feature span {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .other-ways-section {
        padding: 60px 0;
    }
    
    .other-ways-section .section-header h2 {
        font-size: 2rem;
    }
    
    .help-option {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    padding-right: 2rem;
}

.about-content h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2rem;
}

.about-features .feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.about-features .feature i {
    color: var(--success-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

.about-features .feature span {
    color: var(--dark-color);
    font-weight: 500;
}

.about-image {
    position: relative;
    width: 100%;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100% !important;
    height: 500px !important;
    object-fit: cover;
    max-width: none !important;
}

.about-stats {
    position: absolute;
    bottom: -30px;
    left: 30px;
    background: var(--primary-color) !important;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    color: white !important;
    display: flex;
    gap: 2rem;
}

.about-stats *,
.about-stats h1,
.about-stats h2,
.about-stats h3,
.about-stats h4,
.about-stats h5,
.about-stats h6,
.about-stats p,
.about-stats span,
.about-stats div {
    color: #ffffff !important;
    text-shadow: none !important;
}

.about-stats .stat {
    color: #ffffff !important;
}

.about-stats .stat h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
    text-shadow: none !important;
}

.about-stats .stat p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 1 !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Extra specific selectors to override any framework styles */
.about-section .about-stats,
.about-section .about-stats *,
.about-section .about-stats .stat,
.about-section .about-stats .stat h3,
.about-section .about-stats .stat p,
section.about-section .about-stats *,
div.about-stats *,
div.about-stats h3,
div.about-stats p {
    color: #ffffff !important;
    text-shadow: none !important;
}

/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card {
    text-align: center;
}

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

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.mission-card .card-icon {
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: white;
}

.vision-card .card-icon {
    background: linear-gradient(135deg, var(--accent-color), #2980b9);
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.mission-card h3,
.vision-card h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #fff;
}

.values-section .section-header {
    margin-bottom: 4rem;
}

.values-section .section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.values-section .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.value-card h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section .section-header {
    margin-bottom: 4rem;
}

.team-section .section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-section .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color), #34495e);
    color: white;
}

.cta-section p{
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.cta-section .btn {
    margin-left: 1rem;
    margin-top: 1rem;
}

.cta-section .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--dark-color);
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        position: static;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        color: white !important;
    }
    
    .about-stats *,
    .about-stats .stat,
    .about-stats .stat h3,
    .about-stats .stat p {
        color: white !important;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .values-section .section-header h2,
    .team-section .section-header h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-section .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .values-section .section-header h2,
    .team-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================
   END ABOUT PAGE STYLES
   ========================================== */

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-form-wrapper h2 {
    color: var(--dark-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.contact-form label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
    background: white;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-wrapper h3 {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    background: #e9ecef;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
}

.contact-details h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Social Links */
.social-links {
    margin-top: 0rem;
    text-align: center;
}

.social-links h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon.facebook { background: #3b5998; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: #e1306c; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.youtube { background: #ff0000; }

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
    padding: 0rem;
    background: white;
}

.map-section .section-header {
    margin-bottom: 3rem;
}

.map-section .section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.map-section .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section .section-header {
    margin-bottom: 3rem;
}

.faq-section .section-header h2 {
    color: var(--dark-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-section .section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.accordion {
    --bs-accordion-border-radius: 15px;
    --bs-accordion-border-color: #e9ecef;
}

.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 10px !important;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 10px !important;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #666;
    line-height: 1.7;
}

/* ==========================================
   EVENTS PAGE STYLES
   ========================================== */

/* Events Archive */
.events-list {
    margin-bottom: 3rem;
}

.event-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 200px;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.event-image img {
    transition: transform 0.3s ease;
}

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

.event-placeholder {
    height: 200px;
    border-radius: 15px 0 0 15px;
}

.event-meta {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.event-meta .col-auto {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.event-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.event-card .card-title a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.event-card .card-title a:hover {
    color: var(--primary-color);
}

.event-card .btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.event-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #e74c3c);
    border: none;
}

.event-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

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

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

/* Events Sidebar */
.events-sidebar .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.events-sidebar .card-header {
    border-radius: 15px 15px 0 0 !important;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.events-sidebar .card-body {
    padding: 2rem;
}

.events-sidebar .form-label {
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.events-sidebar .form-select,
.events-sidebar .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.events-sidebar .form-select:focus,
.events-sidebar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

.event-date-badge {
    width: 60px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* No Events State */
.no-events {
    background: white;
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.no-events i {
    margin-bottom: 1.5rem;
}

.no-events h3 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    text-align: center;
}

.pagination-wrapper .page-numbers {
    background: white;
    color: var(--dark-color);
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Contact & Events Responsive Design */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info-wrapper {
        position: static;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .event-card .row {
        flex-direction: column;
    }
    
    .event-image,
    .event-placeholder {
        height: 180px;
        border-radius: 15px 15px 0 0;
    }
    
    .event-meta .col-auto {
        font-size: 0.9rem;
    }
    
    .events-sidebar .card-body {
        padding: 1.5rem;
    }
    
    .faq-section .section-header h2,
    .map-section .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .contact-form .btn-primary {
        width: 100%;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .event-card .btn {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ==========================================
   END CONTACT & EVENTS PAGE STYLES
   ========================================== */

/* ==========================================
   ABOUT STATS WHITE TEXT FIX - MAX PRIORITY
   ========================================== */
.about-stats, 
.about-stats *, 
.about-stats h1, 
.about-stats h2, 
.about-stats h3, 
.about-stats h4, 
.about-stats h5, 
.about-stats h6, 
.about-stats p, 
.about-stats span, 
.about-stats div,
.about-section .about-stats,
.about-section .about-stats *,
section .about-stats *,
div.about-image .about-stats *,
.about-image .about-stats h3,
.about-image .about-stats p {
    color: #ffffff !important;
    text-shadow: none !important;
}