/* ===== CSS Variables ===== */
:root {
    /* Color scheme: Maroon (primary), Green, Orange */
    --primary-color: #9e2a3a;       /* Maroon - main brand color (lightened) */
    --primary-dark: #7a1f2d;        /* Dark Maroon */
    --primary-light: #c0392b;       /* Light Maroon */
    --secondary-color: #2e7d32;     /* Green - secondary color */
    --secondary-dark: #1b5e20;      /* Dark Green */
    --accent-orange: #ff9800;       /* Orange - accent color */
    --accent-green: #4caf50;        /* Light Green - accent color */
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a2e;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    --navbar-height: 80px;
}

/* ===== Dark Theme ===== */
body.dark-theme {
    --text-color: #f0f0f0;
    --text-light: #c0c0c0;
    --text-lighter: #909090;
    --white: #1e1e1e;
    --light-bg: #2a2a2a;
    --border-color: #404040;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Dark Theme - Global Text Readability */
body.dark-theme,
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6,
body.dark-theme p,
body.dark-theme span,
body.dark-theme div,
body.dark-theme li,
body.dark-theme label,
body.dark-theme a {
    color: #f0f0f0;
}

body.dark-theme .text-light,
body.dark-theme .text-muted,
body.dark-theme .section-description,
body.dark-theme .cause-content p,
body.dark-theme .mv-card p,
body.dark-theme .hww-card p,
body.dark-theme .team-info p,
body.dark-theme .team-info span,
body.dark-theme .story-content p,
body.dark-theme .stat-card .stat-label,
body.dark-theme .contact-card p,
body.dark-theme .contact-card-text,
body.dark-theme .testimonial-card p,
body.dark-theme .impact-card p,
body.dark-theme .cert-card p,
body.dark-theme .trustee-card p,
body.dark-theme .donate-contact-card p,
body.dark-theme .bank-details p,
body.dark-theme .why-donate p,
body.dark-theme .trust-info-card p,
body.dark-theme .trust-info-item .info-value,
body.dark-theme .faq-answer p,
body.dark-theme .quick-contact-section p,
body.dark-theme .donate-cta-card p,
body.dark-theme .section-description,
body.dark-theme .about-text p,
body.dark-theme .impact-text p,
body.dark-theme .volunteers-text p,
body.dark-theme .contact-form p,
body.dark-theme .donate-note,
body.dark-theme .security-notice p,
body.dark-theme .tax-benefits-content p,
body.dark-theme .timeline-content p,
body.dark-theme .trustee-details .detail-item p,
body.dark-theme .donate-contact-item span,
body.dark-theme .impact-donate-card p,
body.dark-theme .hero-quote .quote-gu,
body.dark-theme .hero-volunteer-quote .quote-gu,
body.dark-theme .home-quote-gu,
body.dark-theme .contact-quote-gu,
body.dark-theme .team-quote-gu,
body.dark-theme .donate-quote-banner .quote-gu,
body.dark-theme .donate-cta-card .cta-quote-gu,
body.dark-theme .education-quote-gu,
body.dark-theme .gujarati-text {
    color: #c0c0c0 !important;
}

body.dark-theme .section-subtitle {
    color: #ff6b6b !important;
}

body.dark-theme .section-title {
    color: #f0f0f0 !important;
}

body.dark-theme .cause-content h3,
body.dark-theme .mv-card h3,
body.dark-theme .hww-card h4,
body.dark-theme .team-info h4,
body.dark-theme .story-content h4,
body.dark-theme .stat-card h3,
body.dark-theme .contact-card h3,
body.dark-theme .testimonial-card h4,
body.dark-theme .impact-card h4,
body.dark-theme .cert-card h4,
body.dark-theme .trustee-card h4,
body.dark-theme .donate-contact-card h3,
body.dark-theme .bank-details h3,
body.dark-theme .why-donate h3,
body.dark-theme .trust-info-card h3,
body.dark-theme .trust-info-item .info-label,
body.dark-theme .faq-question h4,
body.dark-theme .quick-contact-section h3,
body.dark-theme .donate-cta-card h3,
body.dark-theme .about-text h3,
body.dark-theme .impact-text h3,
body.dark-theme .volunteers-text h3,
body.dark-theme .timeline-content h4,
body.dark-theme .trustee-header h4,
body.dark-theme .impact-donate-card h4,
body.dark-theme .home-quote-en,
body.dark-theme .contact-quote-en,
body.dark-theme .team-quote-en,
body.dark-theme .donate-quote-banner .quote-en,
body.dark-theme .donate-cta-card .cta-quote-en,
body.dark-theme .education-quote-en,
body.dark-theme .hero-quote .quote-en,
body.dark-theme .hero-volunteer-quote .quote-en {
    color: #f0f0f0 !important;
}

body.dark-theme .stat-number {
    color: #ff6b6b !important;
}

body.dark-theme .feature-item {
    color: #f0f0f0 !important;
}

body.dark-theme .feature-item i {
    color: #ff6b6b !important;
}

body.dark-theme .badge-light {
    background: #3a3a3a !important;
    color: #f0f0f0 !important;
    border-color: #505050 !important;
}

body.dark-theme .no-results i {
    color: #666 !important;
}

body.dark-theme .no-results h3 {
    color: #f0f0f0 !important;
}

body.dark-theme .no-results p {
    color: #c0c0c0 !important;
}

body.dark-theme .search-box i {
    color: #c0c0c0 !important;
}

body.dark-theme .filter-box select {
    background: #2a2a2a !important;
    color: #f0f0f0 !important;
    border-color: #505050 !important;
}

body.dark-theme .trustee-header .name-gu {
    color: #c0c0c0 !important;
}

body.dark-theme .volunteer-benefits li {
    color: #f0f0f0 !important;
}

body.dark-theme .bank-info-value {
    color: #f0f0f0 !important;
}

body.dark-theme .bank-info-label {
    color: #ff6b6b !important;
}

body.dark-theme .security-notice h4 {
    color: #f0f0f0 !important;
}

body.dark-theme .tax-benefits-content h4 {
    color: #f0f0f0 !important;
}

body.dark-theme .donate-contact-item a {
    color: #ff6b6b !important;
}

body.dark-theme .trust-info-item .info-value a {
    color: #ff6b6b !important;
}

body.dark-theme .trustee-details .detail-item a {
    color: #ff6b6b !important;
}

body.dark-theme .footer-col ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-theme .footer-col p {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-theme .footer-bottom p {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-theme .footer-bottom a {
    color: #ff6b6b !important;
}

body.dark-theme .breadcrumb a {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .breadcrumb span {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.dark-theme .page-header-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .cta-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .donate-quote-banner .quote-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .hero-quote-single {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-theme .quote-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .education-quote-en {
    color: #ffffff !important;
}

body.dark-theme .education-quote-gu {
    color: rgba(255, 255, 255, 0.95) !important;
}

body.dark-theme .home-quote-section.secondary .home-quote-en {
    color: #ffffff !important;
}

body.dark-theme .home-quote-section.secondary .home-quote-gu {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .contact-quote-section.secondary .contact-quote-en {
    color: #ffffff !important;
}

body.dark-theme .contact-quote-section.secondary .contact-quote-gu {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .team-quote-section.secondary .team-quote-en {
    color: #ffffff !important;
}

body.dark-theme .team-quote-section.secondary .team-quote-gu {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .donate-quote-banner .quote-en {
    color: #ffffff !important;
}

body.dark-theme .donate-quote-banner .quote-gu {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .donate-cta-card .cta-quote-en {
    color: #ff6b6b !important;
}

body.dark-theme .donate-cta-card .cta-quote-gu {
    color: #c0c0c0 !important;
}

body.dark-theme .progress-stats span {
    color: #c0c0c0 !important;
}

body.dark-theme .cause-category {
    color: #ffffff !important;
}

body.dark-theme .gallery-overlay span {
    color: #ffffff !important;
}

body.dark-theme .newsletter-form input {
    color: #f0f0f0 !important;
}

body.dark-theme .newsletter-form input::placeholder {
    color: #888 !important;
}

body.dark-theme input::placeholder,
body.dark-theme textarea::placeholder {
    color: #888 !important;
}

body.dark-theme .faq-question i {
    color: #ff6b6b !important;
}

body.dark-theme .timeline-year {
    color: #ffffff !important;
}

body.dark-theme .stat-icon {
    color: #ff6b6b !important;
}

body.dark-theme .mv-icon {
    color: #ffffff !important;
}

body.dark-theme .hww-icon {
    color: #ffffff !important;
}

body.dark-theme .contact-card-icon {
    color: #ffffff !important;
}

body.dark-theme .impact-icon {
    color: #ffffff !important;
}

body.dark-theme .cert-icon {
    color: #ffffff !important;
}

body.dark-theme .trustee-details .detail-item i {
    color: #ff6b6b !important;
}

body.dark-theme .volunteer-benefits li i {
    color: #ff6b6b !important;
}

body.dark-theme .why-donate ul li i {
    color: #ff6b6b !important;
}

body.dark-theme .security-notice i {
    color: #4caf50 !important;
}

body.dark-theme .tax-benefits-content i {
    color: #ff9800 !important;
}

body.dark-theme .donate-contact-item i {
    color: #ffffff !important;
}

body.dark-theme .donate-contact-card h3 i {
    color: #ff6b6b !important;
}

body.dark-theme .cta-icon {
    color: #ffffff !important;
}

body.dark-theme .quote-icon-large {
    color: #ffffff !important;
}

body.dark-theme .home-quote-icon {
    color: #ffffff !important;
}

body.dark-theme .contact-quote-icon {
    color: #ffffff !important;
}

body.dark-theme .team-quote-icon {
    color: #ffffff !important;
}

body.dark-theme .donate-quote-banner .quote-icon {
    color: #ffffff !important;
}

body.dark-theme .hero-quote-buttons .btn {
    color: #ffffff !important;
}

body.dark-theme .experience-badge {
    color: #ffffff !important;
}

body.dark-theme .experience-badge .years {
    color: #ffffff !important;
}

body.dark-theme .experience-badge .text {
    color: #ffffff !important;
}

body.dark-theme .story-author {
    color: #ff6b6b !important;
}

body.dark-theme .testimonial-content p::before {
    color: #ff6b6b !important;
}

body.dark-theme .bank-transfer-header {
    color: #ffffff !important;
}

body.dark-theme .bank-transfer-header p {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.dark-theme .bank-details .note {
    color: #ff6b6b !important;
}

body.dark-theme .impact-amount {
    color: #ff6b6b !important;
}

body.dark-theme .copy-btn {
    color: #ffffff !important;
}

body.dark-theme .copy-btn.copied {
    color: #ffffff !important;
}

body.dark-theme .radio-label {
    color: #f0f0f0 !important;
}

body.dark-theme .amount-btn {
    color: #f0f0f0 !important;
}

body.dark-theme .filter-btn {
    color: #f0f0f0 !important;
}

body.dark-theme .contact-card-link {
    color: #ff6b6b !important;
}

body.dark-theme .contact-card-note {
    color: #c0c0c0 !important;
}

body.dark-theme .quick-btn {
    color: #ffffff !important;
}

body.dark-theme .contact-btn {
    color: #ffffff !important;
}

body.dark-theme .cta-btn {
    color: #ffffff !important;
}

body.dark-theme .btn-outline {
    color: #f0f0f0 !important;
}

body.dark-theme .btn-outline:hover {
    color: #1e1e1e !important;
}

body.dark-theme .nav-link {
    color: #f0f0f0 !important;
}

body.dark-theme #navMenu a {
    color: #f0f0f0 !important;
}

body.dark-theme #mobileCloseBtn {
    color: #ffffff !important;
}

body.dark-theme .footer-logo span {
    color: #f0f0f0 !important;
}

body.dark-theme .footer-logo small {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-theme .footer-col h4 {
    color: #f0f0f0 !important;
}

body.dark-theme .footer-social a {
    color: #ffffff !important;
}

body.dark-theme .back-to-top {
    color: #ffffff !important;
}

body.dark-theme .slider-btn {
    color: #ffffff !important;
}

body.dark-theme .hero-dot {
    background: rgba(255, 255, 255, 0.7) !important;
}

body.dark-theme .hero-dot.active {
    background: #ffffff !important;
}

body.dark-theme .scroll-indicator a {
    color: #ffffff !important;
}

body.dark-theme .page-header-content h1 {
    color: #ffffff !important;
}

body.dark-theme .cta-content h2 {
    color: #ffffff !important;
}

body.dark-theme .donate-cta-card h3 {
    color: #f0f0f0 !important;
}

body.dark-theme .footer {
    background: #111111;
}

body.dark-theme .footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-theme .footer-col ul li a:hover {
    color: var(--primary-light);
}

body.dark-theme .footer-col p {
    color: rgba(255, 255, 255, 0.6);
}

body.dark-theme .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

body.dark-theme .footer-bottom a {
    color: var(--primary-light);
}

body.dark-theme .back-to-top {
    background: var(--primary-color) !important;
}

body.dark-theme .back-to-top:hover {
    background: var(--primary-dark) !important;
}

/* Dark Theme - Navigation */
body.dark-theme #navbar {
    background: #1e1e1e !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

body.dark-theme #navbar a {
    color: #e0e0e0 !important;
}

body.dark-theme #navbar .font-primary {
    color: #e0e0e0 !important;
}

body.dark-theme #navbar .text-gray-500 {
    color: #a0a0a0 !important;
}

body.dark-theme #hamburger span {
    background: #e0e0e0 !important;
}

body.dark-theme #themeToggle {
    background: #2a2a2a !important;
}

body.dark-theme #themeToggle i {
    color: #ffd700 !important;
}

body.dark-theme #themeToggle:hover {
    background: #3a3a3a !important;
}

/* Dark Theme - Mobile Menu */
body.dark-theme #navMenu {
    background: #1e1e1e !important;
}

body.dark-theme #navMenu a {
    color: #e0e0e0 !important;
}

body.dark-theme #navMenu .border-b {
    border-color: #3a3a3a !important;
}

body.dark-theme #navMenu a:hover {
    background: #2a2a2a !important;
}

body.dark-theme #mobileCloseBtn {
    background: rgba(158, 42, 58, 0.3) !important;
}

/* Dark Theme - Cards */
body.dark-theme .cause-card,
body.dark-theme .mv-card,
body.dark-theme .hww-card,
body.dark-theme .team-card,
body.dark-theme .story-card,
body.dark-theme .stat-card,
body.dark-theme .contact-card,
body.dark-theme .testimonial-card,
body.dark-theme .impact-card,
body.dark-theme .cert-card,
body.dark-theme .trustee-card,
body.dark-theme .donate-contact-card,
body.dark-theme .bank-details,
body.dark-theme .why-donate,
body.dark-theme .trust-info-card,
body.dark-theme .trust-info-item,
body.dark-theme .faq-item,
body.dark-theme .quick-contact-section,
body.dark-theme .donate-cta-card {
    background: #2a2a2a !important;
    border-color: #3a3a3a !important;
}

body.dark-theme .cause-content,
body.dark-theme .mv-card h3,
body.dark-theme .hww-card h4,
body.dark-theme .team-info h4,
body.dark-theme .story-content h4,
body.dark-theme .stat-card h3,
body.dark-theme .contact-card h3,
body.dark-theme .testimonial-card h4,
body.dark-theme .impact-card h4,
body.dark-theme .cert-card h4,
body.dark-theme .trustee-card h4,
body.dark-theme .donate-contact-card h3,
body.dark-theme .bank-details h3,
body.dark-theme .why-donate h3,
body.dark-theme .trust-info-card h3,
body.dark-theme .trust-info-item .info-label,
body.dark-theme .faq-question h4,
body.dark-theme .quick-contact-section h3,
body.dark-theme .donate-cta-card h3 {
    color: #e0e0e0 !important;
}

body.dark-theme .cause-content p,
body.dark-theme .mv-card p,
body.dark-theme .hww-card p,
body.dark-theme .team-info p,
body.dark-theme .team-info span,
body.dark-theme .story-content p,
body.dark-theme .stat-card .stat-label,
body.dark-theme .contact-card p,
body.dark-theme .contact-card-text,
body.dark-theme .testimonial-card p,
body.dark-theme .impact-card p,
body.dark-theme .cert-card p,
body.dark-theme .trustee-card p,
body.dark-theme .donate-contact-card p,
body.dark-theme .bank-details p,
body.dark-theme .why-donate p,
body.dark-theme .trust-info-card p,
body.dark-theme .trust-info-item .info-value,
body.dark-theme .faq-answer p,
body.dark-theme .quick-contact-section p,
body.dark-theme .donate-cta-card p {
    color: #a0a0a0 !important;
}

/* Dark Theme - Sections */
body.dark-theme .about-section,
body.dark-theme .causes-section,
body.dark-theme .mission-vision-section,
body.dark-theme .how-we-work-section,
body.dark-theme .team-section,
body.dark-theme .stories-section,
body.dark-theme .faq-section,
body.dark-theme .donate-impact-section,
body.dark-theme .contact-full-section,
body.dark-theme .gallery-full-section,
body.dark-theme .volunteers-section,
body.dark-theme .donate-cta-section {
    background: #2a2a2a !important;
}

body.dark-theme .causes-full-section,
body.dark-theme .team-full-section,
body.dark-theme .impact-section,
body.dark-theme .gallery-section,
body.dark-theme .donate-full-section,
body.dark-theme .donate-section,
body.dark-theme .contact-section,
body.dark-theme .map-section,
body.dark-theme .about-full-section,
body.dark-theme .timeline-section,
body.dark-theme .certifications-section,
body.dark-theme .trust-info-section {
    background: #1e1e1e !important;
}

/* Dark Theme - Page Header */
body.dark-theme .page-header {
    background: linear-gradient(135deg, #5a1a24 0%, #7a1f2d 100%) !important;
}

/* Dark Theme - Forms */
body.dark-theme input,
body.dark-theme select,
body.dark-theme textarea {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border-color: #404040 !important;
}

body.dark-theme input:focus,
body.dark-theme select:focus,
body.dark-theme textarea:focus {
    border-color: var(--primary-color) !important;
}

/* Dark Theme - Buttons */
body.dark-theme .btn-outline {
    border-color: #e0e0e0 !important;
    color: #e0e0e0 !important;
}

body.dark-theme .btn-outline:hover {
    background: #e0e0e0 !important;
    color: #1e1e1e !important;
}

/* Dark Theme - Progress Bar */
body.dark-theme .progress-bar {
    background: #404040 !important;
}

/* Dark Theme - Section Titles */
body.dark-theme .section-title {
    color: #e0e0e0 !important;
}

body.dark-theme .section-description {
    color: #a0a0a0 !important;
}

/* Dark Theme - Home Quote Section */
body.dark-theme .home-quote-section {
    background: #2a2a2a !important;
}

body.dark-theme .home-quote-card {
    background: #1e1e1e !important;
}

body.dark-theme .home-quote-en {
    color: #e0e0e0 !important;
}

body.dark-theme .home-quote-gu {
    color: #a0a0a0 !important;
}

/* Dark Theme - CTA Section */
body.dark-theme .cta-section {
    background: linear-gradient(135deg, #5a1a24 0%, #7a1f2d 100%) !important;
}

/* Dark Theme - Gallery Filter */
body.dark-theme .filter-btn {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border-color: #404040 !important;
}

body.dark-theme .filter-btn:hover,
body.dark-theme .filter-btn.active {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Dark Theme - Amount Buttons */
body.dark-theme .amount-btn {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border-color: #404040 !important;
}

body.dark-theme .amount-btn:hover,
body.dark-theme .amount-btn.active {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Dark Theme - Donate Form */
body.dark-theme .donate-form {
    background: #2a2a2a !important;
}

/* Dark Theme - Security Notice */
body.dark-theme .security-notice {
    background: #1a3a1a !important;
}

/* Dark Theme - Tax Benefits */
body.dark-theme .tax-benefits-content {
    background: #2a2a2a !important;
}

/* Dark Theme - Contact Quote */
body.dark-theme .contact-quote-section {
    background: #1e1e1e !important;
}

body.dark-theme .contact-quote-card {
    background: #2a2a2a !important;
}

/* Dark Theme - Team Quote */
body.dark-theme .team-quote-section {
    background: #2a2a2a !important;
}

body.dark-theme .team-quote-card {
    background: #1e1e1e !important;
}

/* Dark Theme - Border Colors */
body.dark-theme .contact-card {
    border-top-color: var(--primary-color) !important;
}

body.dark-theme .mv-card:hover {
    border-bottom-color: var(--primary-color) !important;
}

/* Dark Theme - Badge */
body.dark-theme .badge-light {
    background: #3a3a3a !important;
    color: #e0e0e0 !important;
    border-color: #404040 !important;
}

/* Dark Theme - Search Box */
body.dark-theme .search-box input {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border-color: #404040 !important;
}

body.dark-theme .filter-box select {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
    border-color: #404040 !important;
}

/* Dark Theme - No Results */
body.dark-theme .no-results i {
    color: #555 !important;
}

body.dark-theme .no-results h3 {
    color: #e0e0e0 !important;
}

body.dark-theme .no-results p {
    color: #a0a0a0 !important;
}

/* Dark Theme - Timeline */
body.dark-theme .timeline::before {
    background: var(--primary-color) !important;
}

body.dark-theme .timeline-content {
    background: #2a2a2a !important;
}

body.dark-theme .timeline-year {
    background: var(--primary-color) !important;
}

body.dark-theme .timeline-content h4 {
    color: #e0e0e0 !important;
}

body.dark-theme .timeline-content p {
    color: #a0a0a0 !important;
}

/* Dark Theme - Trustee Details */
body.dark-theme .trustee-details {
    border-top-color: #404040 !important;
}

body.dark-theme .trustee-details .detail-item i {
    color: var(--primary-color) !important;
}

body.dark-theme .trustee-details .detail-item p {
    color: #a0a0a0 !important;
}

/* Dark Theme - Donate Contact */
body.dark-theme .donate-contact-info {
    color: #e0e0e0 !important;
}

body.dark-theme .donate-contact-item span {
    color: #a0a0a0 !important;
}

/* Dark Theme - Bank Info */
body.dark-theme .bank-info-item {
    background: #2a2a2a !important;
}

body.dark-theme .bank-info-label {
    color: var(--primary-color) !important;
}

body.dark-theme .bank-info-value {
    color: #e0e0e0 !important;
}

/* Dark Theme - Copy Button */
body.dark-theme .copy-btn {
    background: var(--primary-color) !important;
}

body.dark-theme .copy-btn:hover {
    background: var(--primary-dark) !important;
}

/* Dark Theme - Impact Card */
body.dark-theme .impact-donate-card {
    background: #2a2a2a !important;
}

body.dark-theme .impact-donate-card h4 {
    color: #e0e0e0 !important;
}

body.dark-theme .impact-donate-card p {
    color: #a0a0a0 !important;
}

/* Dark Theme - Newsletter */
body.dark-theme .newsletter-form input {
    background: #2a2a2a !important;
    color: #e0e0e0 !important;
}

/* Dark Theme - Mobile Overlay */
body.dark-theme #mobileOverlay {
    background: rgba(0, 0, 0, 0.7) !important;
}

/* Dark Theme - Hero Quote */
body.dark-theme .hero-quote {
    background: rgba(255, 255, 255, 0.1) !important;
}

body.dark-theme .hero-volunteer-quote {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Dark Theme - Home Education Quote */
body.dark-theme .home-education-quote {
    background: linear-gradient(135deg, #7a1f2d 0%, #5a1a24 100%) !important;
}

/* Dark Theme - Donate Quote Banner */
body.dark-theme .donate-quote-banner {
    background: linear-gradient(135deg, #7a1f2d, #5a1a24) !important;
}

body.dark-theme .donate-quote-banner.secondary {
    background: linear-gradient(135deg, #1b5e20, #0d3b0f) !important;
}

/* Dark Theme - Donate CTA Card */
body.dark-theme .donate-cta-card {
    background: #2a2a2a !important;
}

body.dark-theme .donate-cta-card h3 {
    color: #e0e0e0 !important;
}

body.dark-theme .donate-cta-card .cta-quote-en {
    color: var(--primary-color) !important;
}

body.dark-theme .donate-cta-card .cta-quote-gu {
    color: #a0a0a0 !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-primary);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-divider.light {
    background: var(--white);
}

.section-description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Navigation ===== */
/* Note: Main navbar styles are now handled by Tailwind CSS in top/top.php */
/* These styles are kept for backward compatibility and fallback */

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-primary);
}

.navbar.scrolled .logo a {
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    font-size: 0.95rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 0;
    position: relative;
    z-index: 1003;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
    display: block;
    pointer-events: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.navbar.scrolled .hamburger span {
    background: var(--text-color);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 35vh;
    min-height: 200px;
    max-height: 300px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slide-content {
    opacity: 0;
    transition: opacity 1s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 40px;
}

.hero-slide-content.active {
    opacity: 1;
}

.hero-slide-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-quote-single {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 900px;
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

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

.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* ===== Page Header ===== */
.page-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--navbar-height);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1920') center/cover;
    opacity: 0.2;
}

.page-header-content {
    position: relative;
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.page-header-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

/* Stats section on homepage - overlap with hero */
.home .stats-section {
    margin-top: -60px;
}

/* Stats section on inner pages - normal margin */
.inner-page .stats-section {
    margin-top: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 5px;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.experience-badge .text {
    font-size: 0.85rem;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ===== About Full Section ===== */
.about-full-section {
    padding: 100px 0;
    background: var(--white);
}

.about-full-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-full-image {
    position: relative;
}

.about-full-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-full-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.about-full-text p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-large-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 400;
}

/* ===== Mission Vision Section ===== */
.mission-vision-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.mv-card {
    text-align: center;
    padding: 50px 35px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

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

.mv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(158, 42, 58, 0.3);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.mv-card p {
    color: var(--text-light);
}

/* ===== Timeline Section ===== */
.timeline-section {
    padding: 100px 0;
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding: 30px 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 55%;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Certifications Section ===== */
.certifications-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.cert-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.cert-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.cert-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Gujarati Text ===== */
.gujarati-text {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* ===== Causes Section ===== */
.causes-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.causes-full-section {
    padding: 100px 0;
    background: var(--white);
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

.causes-full-section .cause-card {
    background: var(--light-bg);
}

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

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

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.cause-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cause-content {
    padding: 25px;
}

.cause-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cause-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.progress-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== How We Work Section ===== */
.how-we-work-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.how-we-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.hww-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
}

.hww-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.hww-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Impact Section ===== */
.impact-section {
    padding: 100px 0;
    background: var(--white);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.impact-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.impact-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.impact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.impact-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.impact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.impact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.impact-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== Stories Section ===== */
.stories-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

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

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

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

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.story-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
}

.story-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== Team Section ===== */
.team-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.team-full-section {
    padding: 100px 0;
    background: var(--white);
}

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

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

.team-full-section .team-card {
    background: var(--light-bg);
}

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

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f5f5f5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-social {
    transform: translateY(0);
}

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

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.team-info span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.team-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Trust Info Section ===== */
.trust-info-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.trust-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.trust-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.trust-info-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.trust-info-item .info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.trust-info-item .info-label i {
    font-size: 1.2rem;
}

.trust-info-item .info-value {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.trust-info-item .info-value a {
    color: var(--primary-color);
}

.trust-info-item .info-value a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .trust-info-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-info-card {
        padding: 25px;
    }
}

/* ===== Trustee Section ===== */
.trustee-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(158, 42, 58, 0.1);
}

.filter-box select {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-secondary);
    cursor: pointer;
    background: var(--white);
}

.filter-box select:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

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

.trustee-card .trustee-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.trustee-card .trustee-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    transition: transform 0.3s ease;
}

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

.trustee-info {
    padding: 25px;
}

.trustee-header {
    margin-bottom: 10px;
}

.trustee-header h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.trustee-header .name-gu {
    color: var(--text-light);
    font-size: 0.95rem;
    display: block;
}

.trustee-info .designation {
    display: block;
    margin-bottom: 15px;
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

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

.badge-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.badge-accent {
    background: var(--accent-orange);
    color: var(--white);
}

.badge-light {
    background: var(--light-bg);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.trustee-details {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.trustee-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.trustee-details .detail-item:last-child {
    margin-bottom: 0;
}

.trustee-details .detail-item i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.trustee-details .detail-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.trustee-details .detail-item a {
    color: var(--primary-color);
}

.trustee-details .detail-item a:hover {
    text-decoration: underline;
}

.gujarati-text {
    font-size: 0.85rem;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results i {
    font-size: 3rem;
    color: var(--text-lighter);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .trustee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trustee-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .trustee-grid {
        grid-template-columns: 1fr;
    }
    
    .trustee-card .trustee-image {
        height: 250px;
    }
}

/* ===== Volunteers Section ===== */
.volunteers-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.volunteers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.volunteers-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.volunteers-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.volunteer-benefits {
    margin-bottom: 30px;
}

.volunteer-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.volunteer-benefits li i {
    color: var(--primary-color);
}

.volunteers-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== Gallery Section ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-full-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
}

.gallery-item.hide-item {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.gallery-item.show-item {
    opacity: 1;
    transform: scale(1);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

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

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

/* ===== Donate Section ===== */
.donate-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.donate-full-section {
    padding: 100px 0;
    background: var(--white);
}

.donate-options {
    max-width: 700px;
    margin: 0 auto;
}

.donate-amounts {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.amount-btn {
    padding: 15px 30px;
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.amount-btn:hover,
.amount-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.donate-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.custom-amount {
    margin-bottom: 20px;
}

.donate-type {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.donate-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 20px;
    font-size: 0.9rem;
}

.donate-note i {
    color: var(--primary-color);
}

/* ===== Donate Info ===== */
.donate-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.donate-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bank-details,
.why-donate {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bank-details h3,
.why-donate h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.bank-details p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.bank-details .note {
    font-style: italic;
    color: var(--primary-color);
    margin-top: 15px;
}

.why-donate ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.why-donate ul li i {
    color: var(--primary-color);
}

/* ===== Donate Impact Section ===== */
.donate-impact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

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

.impact-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.impact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--text-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-full-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

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

.instagram-icon {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.facebook-icon {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-card-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.contact-card-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-card-note {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.contact-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Quick Contact Section */
.quick-contact-section {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.quick-contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.quick-btn i {
    font-size: 1.3rem;
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.email-btn {
    background: linear-gradient(135deg, #ea4335, #c5221f);
}

.insta-btn {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.contact-form select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== Map Section ===== */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
}

/* ===== Hero Quote Styles ===== */
.hero-quote {
    margin-top: 25px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-quote .quote-en {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-quote .quote-gu {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* ===== Donate Quote Banner ===== */
.donate-quote-banner {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: var(--shadow-lg);
}

.donate-quote-banner.secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.donate-quote-banner .quote-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.donate-quote-banner .quote-content {
    flex: 1;
}

.donate-quote-banner .quote-en {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.donate-quote-banner .quote-gu {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* ===== Donate CTA Section ===== */
.donate-cta-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.donate-cta-card {
    text-align: center;
    padding: 50px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--primary-color);
}

.donate-cta-card .cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.donate-cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.donate-cta-card .cta-quote-en {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.donate-cta-card .cta-quote-gu {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

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

.cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 1.05rem;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.cta-btn.secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

@media (max-width: 768px) {
    .hero-quote {
        padding: 15px 20px;
    }
    
    .hero-quote .quote-en {
        font-size: 0.95rem;
    }
    
    .hero-quote .quote-gu {
        font-size: 0.85rem;
    }
    
    .donate-quote-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .donate-quote-banner .quote-en {
        font-size: 1.05rem;
    }
    
    .donate-quote-banner .quote-gu {
        font-size: 0.95rem;
    }
    
    .donate-cta-card {
        padding: 35px 25px;
    }
    
    .donate-cta-card h3 {
        font-size: 1.4rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== Home Education Quote Section ===== */
.home-education-quote {
    padding: 80px 0;
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

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

.education-quote-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.education-quote-en {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.education-quote-gu {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.quote-divider {
    width: 60px;
    height: 3px;
    background: var(--white);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .home-education-quote {
        padding: 60px 0;
    }
    
    .education-quote-en {
        font-size: 1.2rem;
    }
    
    .education-quote-gu {
        font-size: 1.05rem;
    }
    
    .quote-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* ===== Home Quote Section ===== */
.home-quote-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.home-quote-section.secondary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.home-quote-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.home-quote-section.secondary .home-quote-card {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
    backdrop-filter: blur(10px);
}

.home-quote-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.home-quote-section.secondary .home-quote-icon {
    background: var(--white);
    color: var(--primary-color);
}

.home-quote-content {
    flex: 1;
}

.home-quote-en {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.home-quote-section.secondary .home-quote-en {
    color: var(--white);
}

.home-quote-gu {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.home-quote-section.secondary .home-quote-gu {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Contact Quote Section ===== */
.contact-quote-section {
    padding: 60px 0;
    background: var(--white);
}

.contact-quote-section.secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.contact-quote-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 45px;
    background: var(--light-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.contact-quote-section.secondary .contact-quote-card {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
    backdrop-filter: blur(10px);
}

.contact-quote-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.contact-quote-section.secondary .contact-quote-icon {
    background: var(--white);
    color: var(--secondary-color);
}

.contact-quote-content {
    flex: 1;
}

.contact-quote-en {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-quote-section.secondary .contact-quote-en {
    color: var(--white);
}

.contact-quote-gu {
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.contact-quote-section.secondary .contact-quote-gu {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .home-quote-card,
    .contact-quote-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .home-quote-en,
    .contact-quote-en {
        font-size: 1.05rem;
    }
    
    .home-quote-gu,
    .contact-quote-gu {
        font-size: 0.95rem;
    }
}

/* ===== Hero Volunteer Quote (Team Page) ===== */
.hero-volunteer-quote {
    margin-top: 25px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-volunteer-quote .quote-en {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-volunteer-quote .quote-gu {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.5;
}

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

.hero-quote-buttons .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-volunteer-quote {
        padding: 15px 20px;
    }
    
    .hero-volunteer-quote .quote-en {
        font-size: 0.95rem;
    }
    
    .hero-volunteer-quote .quote-gu {
        font-size: 0.85rem;
    }
    
    .hero-quote-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-quote-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ===== Team Quote Section ===== */
.team-quote-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-quote-section.secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
}

.team-quote-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.team-quote-section.secondary .team-quote-card {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--white);
    backdrop-filter: blur(10px);
}

.team-quote-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.team-quote-section.secondary .team-quote-icon {
    background: var(--white);
    color: var(--secondary-color);
}

.team-quote-content {
    flex: 1;
}

.team-quote-en {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.team-quote-section.secondary .team-quote-en {
    color: var(--white);
}

.team-quote-gu {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.team-quote-section.secondary .team-quote-gu {
    color: rgba(255, 255, 255, 0.9);
}

.team-quote-content .btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .team-quote-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
    
    .team-quote-en {
        font-size: 1.05rem;
    }
    
    .team-quote-gu {
        font-size: 0.95rem;
    }
}

/* ===== Donate Page Styles ===== */
.bank-transfer-section {
    margin-bottom: 50px;
}

.bank-transfer-header {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.bank-transfer-header i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bank-transfer-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.bank-transfer-header p {
    opacity: 0.9;
}

.bank-details-card {
    background: var(--white);
    border-radius: 0 0 20px 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.bank-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.bank-info-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.bank-info-item.full-width {
    grid-column: 1 / -1;
}

.bank-info-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.bank-info-label i {
    font-size: 1.2rem;
}

.bank-info-value {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.bank-info-value .number,
.bank-info-value .code {
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    margin-left: 15px;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.copy-btn.copied {
    background: var(--secondary-color);
}

.security-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #e8f5e9;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 4px solid var(--secondary-color);
}

.security-notice i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.security-notice h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.security-notice p {
    color: var(--text-light);
    margin: 0;
}

.donation-impact-section {
    margin-bottom: 50px;
}

.donation-impact-section h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.impact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

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

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

.impact-donate-card h4 {
    margin-bottom: 10px;
    color: var(--text-color);
}

.impact-donate-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.tax-benefits-section {
    margin-bottom: 50px;
}

.tax-benefits-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-orange);
}

.tax-benefits-content i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.tax-benefits-content h4 {
    margin-bottom: 10px;
}

.tax-benefits-content p {
    color: var(--text-light);
    margin: 0;
}

.donation-contact-section {
    text-align: center;
    margin-bottom: 50px;
}

.donation-contact-section h3 {
    margin-bottom: 25px;
}

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

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.email-btn {
    background: linear-gradient(135deg, #ea4335, #c5221f);
}

.donate-contact-section {
    padding: 50px 0;
}

.donate-contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.donate-contact-card h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.donate-contact-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.donate-contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.donate-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.donate-contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.donate-contact-item div {
    text-align: left;
}

.donate-contact-item span {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.donate-contact-item a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.donate-contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .bank-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .impact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bank-info-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .donate-contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-light);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999 !important;
    box-shadow: var(--shadow);
    display: block !important;
}

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

.back-to-top:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-5px) !important;
}

/* ===== Text Center ===== */
.text-center {
    text-align: center;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .stats-grid,
    .certifications-grid,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .causes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-we-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .donate-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .nav-actions .btn {
        display: none !important;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 10001;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--white);
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled .hamburger span {
        background: var(--text-color);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 60px 20px 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        z-index: 10000;
    }
    
    .mobile-close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: 50%;
        font-size: 1.3rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10002;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu ul li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-link {
        color: var(--text-color) !important;
        display: block;
        padding: 15px 10px;
        font-size: 1rem;
        text-decoration: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile menu overlay */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        height: auto;
        min-height: 300px;
        max-height: none;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .hero-quote-single {
        font-size: 0.85rem;
        padding: 12px 20px;
        white-space: normal;
        border-radius: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    .hero-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .about-full-content,
    .impact-content,
    .contact-content,
    .volunteers-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .about-full-image {
        order: -1;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider,
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .donate-amounts {
        gap: 10px;
    }
    
    .amount-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .page-header {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .how-we-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .btn-lg {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .how-we-work-grid,
    .certifications-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-wrapper {
        gap: 10px;
    }
    
    .logo a {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.4rem;
    }
}