/* ==================== VARIABLES ==================== */
:root {
    --primary-purple: #ba55d3;
    --primary-pink: #ff80b1;
    --gradient-primary: linear-gradient(135deg, #ba55d3, #ff80b1);
    --gradient-hover: linear-gradient(135deg, #a545b8, #ff6a9f);
    --bg-light: #faf9ff;
    --text-dark: #2d2d3a;
    --text-gray: #6b6b7a;
    --white: #ffffff;
    --shadow-sm: 0 10px 30px rgba(186, 85, 211, 0.1);
    --shadow-md: 0 20px 40px rgba(186, 85, 211, 0.15);
    --shadow-lg: 0 30px 60px rgba(186, 85, 211, 0.2);
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --border-radius-xl: 40px;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-icon {
    width: 50px;
    height: 50px;
    border: 3px solid var(--bg-light);
    border-top-color: var(--primary-purple);
    border-right-color: var(--primary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* ==================== FIXED HERO SECTION ==================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-swiper .swiper-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient overlay */
.hero-swiper .swiper-slide .slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(186, 85, 211, 0.7), rgba(255, 128, 177, 0.7));
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 80px;
}

.content-wrapper {
    max-width: 800px;
    padding: 0 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-title span {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    margin-top: 10px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: white;
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary-purple);
}

.play-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.hero-btn:hover .play-icon {
    transform: scale(1.1);
}

/* Swiper Navigation */
.swiper-pagination {
    bottom: 30px !important;
    z-index: 20;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    margin: 0 8px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
    width: 30px;
    border-radius: 6px;
}

.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    z-index: 20;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: white;
    color: var(--primary-purple);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* ==================== STATS CARDS ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

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

.stat-card:hover::before {
    transform: translateX(0);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ==================== ABOUT SECTION ==================== */
.about-image {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

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

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-pink);
    border-radius: var(--border-radius-xl);
    z-index: -1;
}

.about-content {
    padding-left: 40px;
}

.about-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-purple);
    background: rgba(186, 85, 211, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-list li i {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

/* ==================== ACCORDION CARDS ==================== */
.accordion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.accordion-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.accordion-card.active {
    background: var(--gradient-primary);
    color: white;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(186, 85, 211, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.accordion-card.active .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-card.active .card-content {
    max-height: 300px;
    margin-top: 20px;
}

.card-content ul {
    list-style: none;
    padding: 0;
}

.card-content li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content li:last-child {
    border-bottom: none;
}

/* ==================== MISSION CARDS ==================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 2rem;
}

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

.mission-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 15px;
}

/* ==================== FIXED EVENTS SLIDER ==================== */
/* ==================== FIXED EVENTS SLIDER - FORCE 3 SLIDES ==================== */
/* ==================== EVENTS SLIDER - CLEAN VERSION ==================== */
.events-slider {
    margin-top: 50px;
    overflow: hidden;
    padding: 20px 0 60px 0;
    width: 100%;
    position: relative;
}

.events-swiper {
    width: 100%;
    height: auto;
    overflow: visible !important;
    padding: 20px 0 50px 0 !important; /* No side padding - let Swiper handle it */
}

.events-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.events-swiper .swiper-slide {
    height: auto;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.3s ease;
    /* Remove any margins - Swiper handles spacing */
}

.event-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%; /* Take full width of slide */
}

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

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.event-date-badge .day {
    font-size: 1.2rem;
    font-weight: 800;
    display: block;
}

.event-date-badge .month {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
}

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

.event-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--primary-pink);
    margin-right: 5px;
}

/* Events slider pagination */
.events-swiper .swiper-pagination {
    bottom: -30px !important;
    position: relative;
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.events-swiper .swiper-pagination-bullet {
    background: var(--primary-purple);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
}

.events-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-purple);
    width: 25px;
    border-radius: 5px;
}

/* Events slider navigation */
.events-swiper .swiper-button-prev,
.events-swiper .swiper-button-next {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    transform: translateY(-50%);
    margin-top: 0;
    transition: all 0.3s ease;
}

.events-swiper .swiper-button-prev {
    left: 10px;
}

.events-swiper .swiper-button-next {
    right: 10px;
}

.events-swiper .swiper-button-prev::after,
.events-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: bold;
}

.events-swiper .swiper-button-prev:hover,
.events-swiper .swiper-button-next:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--gradient-hover);
}

/* Mobile - hide navigation arrows */
@media (max-width: 768px) {
    .events-swiper .swiper-button-prev,
    .events-swiper .swiper-button-next {
        display: none;
    }
}

/* ==================== FIXED FOUNDER SECTION ==================== */
.founder-quote {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
    position: relative;
    isolation: isolate; /* Creates new stacking context but keeps it contained */
}

.founder-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.1;
    color: var(--primary-purple);
    z-index: 0; /* Changed from -1 to 0 */
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 2; /* Ensure text is above the icon */
}

.quote-author {
    font-weight: 700;
    color: var(--primary-purple);
    position: relative;
    z-index: 2;
}

/* ==================== DONATION CARD ==================== */
.donation-card {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.donation-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  
}



.donation-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.donation-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.momo-box {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.momo-box img {
    height: 40px;
}

.momo-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* ==================== VOLUNTEER FORM ==================== */
.volunteer-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 5px rgba(186, 85, 211, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #1a1a2a, #16213e);
    color: white;
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-text {
    color: #a0a0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

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

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

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

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

.footer-links a {
    color: #a0a0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #a0a0b0;
}

.contact-item i {
    color: var(--primary-pink);
}

.contact-item a {
    color: #a0a0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-pink);
}

.newsletter h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright, .credit {
    color: #a0a0b0;
    font-size: 0.9rem;
}

.credit i {
    color: var(--primary-pink);
}

/* ==================== FLOATING ACTIONS ==================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.fab-btn.whatsapp {
    background: #25D366;
}

.fab-btn.donate {
    background: var(--gradient-primary);
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title span {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid,
    .accordion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        background: white;
        padding: 15px 0;
    }
    
    .navbar:not(.scrolled) {
        background: transparent;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .stats-grid,
    .mission-grid,
    .accordion-grid {
        grid-template-columns: 1fr;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    
    .momo-box {
        flex-direction: column;
    }
    
    .momo-number {
        font-size: 1.5rem;
    }
    
    .events-swiper .swiper-button-prev,
    .events-swiper .swiper-button-next {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title span {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .donation-title {
        font-size: 2rem;
    }
    
    .volunteer-card {
        padding: 30px;
    }
}
/* Update your existing section styles */
.section {
    padding: 70px 0 !important; /* Increase from whatever it was */
}

/* Add space between specific sections */
.stats-section + .about-section,
.about-section + .accordion-section,
.accordion-section + .mission-section,
.mission-section + .events-section,
.events-section + .founder-section,
.founder-section + .donation-section,
.donation-section + .volunteer-section,
.volunteer-section + .news-section {
    margin-top: 40px; /* Add extra margin between sections */
}

/* Add a visual separator if desired */
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ba55d3, #ff80b1, transparent);
    margin: 20px 0;
    opacity: 0.2;
}
/* ==================== ULTIMATE MOBILE MENU FIX ==================== */
/* Force hamburger to show on ALL mobile devices */

