:root {
    --primary: #2e7d32;
    --accent: #ffd700;
}

.vhh-hero-slider {
    position: relative;
    height: 85vh; /* Adjustable height */
    width: 100%;
    overflow: hidden;
    background: #000;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.vhh-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.8s ease;
    transform: scale(1.1);
    z-index: 1;
}

.vhh-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Glassmorphism Content Box */
.slide-content {
    max-width: 800px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Dynamic Shadow */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: white;
    transform: translateY(30px);
    transition: 1s ease-out 0.3s;
}

.vhh-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-content h1 span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Interactive Buttons */
.btn-main {
    padding: 15px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
}

.btn-main:hover {
    transform: translateY(-5px);
    background: #fff;
    color: var(--primary);
}

/* Nav Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.nav-btn:hover { background: var(--primary); }
.prev { left: 20px; }
.next { right: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .vhh-hero-slider { height: 60vh; }
    .slide-content { margin: 0 20px; padding: 20px; }
}

.vibrant-links-section {
        background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 100%); 
        padding: 80px 20px;
        font-family: 'Poppins', sans-serif;
    }

    .vibrant-container {
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .vibrant-title {
        color: #166534; /* Dark Green Text */
        font-size: 2.5rem;
        margin-bottom: 50px;
        font-weight: 800;
        text-transform: uppercase;
        position: relative;
        display: inline-block;
    }

    .vibrant-title::after {
        content: '';
        width: 60%;
        height: 4px;
        background: #ef4444; /* Red Underline */
        position: absolute;
        bottom: -10px;
        left: 20%;
        border-radius: 2px;
    }

    .vibrant-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    /* Card Style */
    .vibrant-card {
        background: #ffffff;
        padding: 40px 20px;
        border-radius: 20px;
        text-decoration: none;
        transition: all 0.4s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid #bdf0cc;
        box-shadow: 0 10px 20px rgba(22, 101, 52, 0.05);
        position: relative;
        overflow: hidden;
    }

    /* Icon Box: Red Theme */
    .vibrant-icon-box {
        width: 70px;
        height: 70px;
        background: #fee2e2; /* Very Light Red */
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: #ef4444; /* Bold Red Icon */
        margin-bottom: 20px;
        transition: 0.4s;
    }

    .vibrant-card span {
        color: #1f2937;
        font-weight: 600;
        font-size: 1.1rem;
        z-index: 2;
    }

    /* Interactive Effects */
    .vibrant-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 30px rgba(239, 68, 68, 0.15);
        border-color: #ef4444;
    }

    .vibrant-card:hover .vibrant-icon-box {
        background: #ef4444;
        color: #ffffff;
        transform: scale(1.1);
    }

    /* Red Hover Line at Bottom */
    .vibrant-hover-line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 5px;
        background: #ef4444;
        transition: 0.4s ease;
    }

    .vibrant-card:hover .vibrant-hover-line {
        width: 100%;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .vibrant-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .vibrant-grid { grid-template-columns: 1fr; }
        .vibrant-title { font-size: 1.8rem; }
    }


.about-section {
    padding: 80px 5%;
    background: #edfef2;
    overflow: hidden;
}

.container { max-width: 1200px; margin: 0 auto; }
.flex-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

/* Text Content */
.content-box { flex: 1; min-width: 300px; }
.dynamic-heading { font-size: 2.8rem; color: var(--dark); font-weight: 800; margin-bottom: 25px; }
.highlight { color: var(--primary); font-style: italic; }
.dynamic-desc { font-size: 1.1rem; line-height: 1.8; color: #636e72; }

/* Circular Graphics */
.visual-box { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; height: 500px; }

.main-orbit { position: relative; width: 320px; height: 320px; }

.dotted-path {
    position: absolute; width: 100%; height: 100%;
    border: 2px dashed #dfe6e9; border-radius: 50%;
    animation: spin 40s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Center Image from DB */
.center-node {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 160px; height: 160px;
    border: 6px solid var(--primary);
    border-radius: 50%; overflow: hidden;
    box-shadow: var(--soft-shadow);
    z-index: 5; transition: 0.3s;
}

.center-node img { width: 100%; height: 100%; object-fit: cover; }
.center-label {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%); background: #fff;
    padding: 3px 12px; border-radius: 15px; font-size: 12px; font-weight: bold;
}

/* Floating Items */
.floating-item { position: absolute; display: flex; flex-direction: column; align-items: center; z-index: 6; }
.pos-top { top: -30px; left: 50%; transform: translateX(-50%); }
.pos-right { right: -30px; top: 50%; transform: translateY(-50%); }
.pos-bottom { bottom: -30px; left: 50%; transform: translateX(-50%); }
.pos-left { left: -30px; top: 50%; transform: translateY(-50%); }

.icon-circle {
    width: 65px; height: 65px; background: #fff;
    border: 3px solid var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 25px; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.floating-item span { margin-top: 8px; font-weight: 600; font-size: 14px; color: #2d3436; }

/* INTERACTIVE SHADOW & HOVER */
.floating-item:hover .icon-circle {
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    background: var(--primary);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .flex-wrapper { flex-direction: column; text-align: center; }
    .visual-box { margin-top: 50px; }
}
.about-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary); /* Yellow color */
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.about-btn:hover {
    background-color: #d4ac0d; /* Slightly darker yellow */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.5); /* Glowing effect */
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-btn:hover .btn-icon {
    transform: translateX(5px); /* Arrow moves on hover */
}

/* SECTION */
.ngo-ticker-section{
    background:#ffffff;
    padding:30px 20px;
}

/* MAIN TICKER BAR */
.ngo-ticker{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px;
    border-radius:24px;
    background:linear-gradient(120deg,#1e6bb8,#1f8f5f);
    box-shadow:0 18px 45px rgba(30,107,184,0.35);
    overflow:hidden;
}

/* LEFT LABEL */
.ngo-label{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:260px;
    padding:14px 20px;
    border-radius:18px;
    background:rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    color:#ffffff;
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.ngo-label .icon{
    font-size:28px;
}

.ngo-label h4{
    margin:0;
    font-size:16px;
    letter-spacing:1px;
}

.ngo-label p{
    margin:0;
    font-size:12px;
    opacity:0.9;
}

/* TICKER CONTENT */
.ngo-ticker-content{
    flex:1;
    overflow:hidden;
}

.ngo-track{
    display:flex;
    gap:24px;
    width:max-content;
    animation: footerTicker 22s linear infinite;
}

.ngo-ticker:hover .ngo-track{
    animation-play-state:paused;
}

/* ITEMS */
.ngo-item{
    white-space:nowrap;
    padding:12px 24px;
    font-size:15px;
    color:#ffffff;
    border-radius:30px;
    background:rgba(255,255,255,0.22);
    box-shadow:0 8px 22px rgba(0,0,0,0.18);
    transition:0.3s ease;
}

.ngo-item:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 35px rgba(255,204,0,0.55);
}

/* BADGE */
.badge{
    margin-left:10px;
    padding:4px 12px;
    font-size:12px;
    border-radius:20px;
    font-weight:600;
}

.badge.empower{
    background:#ffcc00;
    color:#000000;
}

/* ANIMATION */
@keyframes footerTicker{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/* RESPONSIVE */
@media(max-width:768px){
    .ngo-ticker{
        flex-direction:column;
        gap:14px;
        padding:16px;
    }

    .ngo-label{
        min-width:100%;
        justify-content:center;
        text-align:center;
    }

    .ngo-item{
        font-size:14px;
    }
}

/* EVENTS SECTION */
.impact-section {
            padding: 80px 20px;
            text-align: center;
            max-width: 1200px;
            margin: auto;
            background: #edfef2;
        }

        /* Stats Grid */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-label {
            font-size: 16px;
            color: #555;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }

        /* Green Gradient Text */
        .stat-number {
            font-size: 64px;
            font-weight: 800;
            background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin: 10px 0;
        }

        .stat-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
            max-width: 220px;
            margin: auto;
        }

        /* Bottom Image Section */
        .impact-banner {
            position: relative;
            width: 100%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            margin-top: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .impact-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Green Overlay like the image */
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(34, 197, 94, 0.4), transparent);
        }

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .stat-number { font-size: 48px; }
            .impact-banner { height: 250px; }
            .impact-section { padding: 40px 15px; }
        }

        .gallery-section {
            padding: 80px 5%;
            max-width: 1300px;
            margin: auto;
            background: #edfef2;
        }

        /* Dynamic Heading */
        .gallery-header {
            margin-bottom: 50px;
        }
        
        .gallery-header h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .gallery-header .line {
            width: 80px;
            height: 5px;
            background: var(--primary-green);
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .gallery-header p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 500px;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Story Card */
        .story-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            border: 2px solid green;
        }

        .story-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Image Container */
        .story-img-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .story-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .story-card:hover .story-img-wrapper img {
            transform: scale(1.1);
        }

        /* Badge Overlay */
        .category-badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--primary-green);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Card Content */
        .story-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .story-content h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .story-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Action Button */
        .view-story-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--primary-green);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s;
            width: fit-content;
        }

        .view-story-btn:hover {
            background: var(--dark-green);
            box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-header h2 { font-size: 32px; }
            .gallery-section { padding: 50px 20px; }
        }

     .support-section {
        /* Image jaisa exact Gradient */
        background: linear-gradient(135deg, #075a9d 0%, #11999e 50%, #22c55e 100%);
        padding: 80px 20px;
        text-align: center;
        color: white;
        font-family: 'Poppins', sans-serif;
    }

    .support-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .support-title {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .support-desc {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 40px;
        opacity: 0.9;
    }

    .support-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Mobile friendly */
    }

    /* Become a Member Button Style */
    .btn-member {
        background-color: #ffc107; /* Yellow/Orange Color */
        color: #000;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-member:hover {
        background-color: #eab000;
        transform: translateY(-3px);
    }

    /* Donate Now Button Style */
    .btn-donate {
        background: transparent;
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        border: 2px solid white;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
    }

    .btn-donate:hover {
        background: white;
        color: #11999e;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 600px) {
        .support-title {
            font-size: 28px;
        }
        .support-btns {
            flex-direction: column;
            align-items: center;
        }
        .btn-member, .btn-donate {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }
    .cert-section {
        padding: 80px 5%;
        background-color: #f8fafc;
        font-family: 'Poppins', sans-serif;
    }

    .cert-container { max-width: 1200px; margin: auto; text-align: center; }

    .dynamic-heading { font-size: 34px; color: #1e293b; font-weight: 700; margin-bottom: 10px; }

    .green-divider {
        width: 70px; height: 5px;
        background: linear-gradient(90deg, #22c55e, #15803d);
        margin: 0 auto 50px; border-radius: 10px;
    }

    .cert-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .cert-card {
        background: #fff;
        border-radius: 20px;
        padding: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        transition: 0.4s ease;
        border: 1px solid #e2e8f0;
    }

    .cert-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
        border-color: #22c55e;
    }

    .img-holder {
        position: relative;
        height: 220px;
        border-radius: 15px;
        overflow: hidden;
        background: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .img-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Aap contain bhi use kar sakte hain agar image puri dikhani ho */
        transition: 0.5s;
    }

    /* Hover Overlay Effect */
    .hover-overlay {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(21, 128, 61, 0.85);
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        color: white; opacity: 0; transition: 0.4s;
    }

    .cert-card:hover .hover-overlay { opacity: 1; }
    .hover-overlay i { font-size: 30px; margin-bottom: 10px; }

    .cert-title h3 {
        margin-top: 20px;
        font-size: 19px;
        color: #334155;
        font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .dynamic-heading { font-size: 28px; }
        .cert-section { padding: 50px 20px; }
    }

    .awards-section {
        padding: 80px 20px;
        background: #edfef2; /* क्लीन व्हाइट बैकग्राउंड */
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .awards-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Header Styling */
    .awards-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .award-badge-icon {
        font-size: 45px;
        color: #ffc107; /* Golden Color */
        margin-bottom: 15px;
        animation: float 3s ease-in-out infinite;
    }

    .awards-title {
        font-size: 38px;
        color: #1a1a1a;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .header-line {
        width: 80px;
        height: 4px;
        background: #22c55e; /* NGO Green */
        margin: 15px auto;
        border-radius: 10px;
    }

    /* Grid Layout */
    .awards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
    }

    /* Award Card Styling */
    .award-card {
        background: #fff;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: all 0.4s ease;
        border: 1px solid #f0f0f0;
        position: relative;
    }

    .award-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 20px 50px rgba(34, 197, 94, 0.15);
        border-color: #22c55e;
    }

    /* Image Box */
    .award-img-wrapper {
        position: relative;
        height: 200px;
        border-radius: 15px;
        overflow: hidden;
        background: #f9f9f9;
        margin-bottom: 25px;
    }

    .award-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* अवार्ड्स की पूरी फोटो दिखने के लिए */
        padding: 10px;
        transition: 0.5s;
    }

    .award-card:hover .award-img-wrapper img {
        transform: scale(1.05);
    }

    /* Content Styling */
    .award-icon {
        width: 50px;
        height: 50px;
        background: #f0fdf4;
        color: #22c55e;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: -45px auto 15px;
        position: relative;
        z-index: 2;
        border: 3px solid #fff;
        font-size: 20px;
        transition: 0.3s;
    }

    .award-card:hover .award-icon {
        background: #22c55e;
        color: #fff;
        transform: rotateY(360deg);
    }

    .award-content h3 {
        font-size: 20px;
        color: #333;
        font-weight: 600;
        margin-top: 10px;
    }

    /* Animations */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .awards-title { font-size: 30px; }
        .awards-grid { grid-template-columns: 1fr; 
        }
    }


.membership-section {
    background: linear-gradient(135deg, green 0%, #2563eb 100%);
    padding: 90px 20px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* soft background glow */
.membership-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.membership-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.membership-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 90px;
}

.membership-content {
    flex: 1;
    min-width: 300px;
}

.badge {
    color: #fde047;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #e5e7eb;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 0;
}

.benefit-list li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 8px;
}

.benefit-list i {
    color: #fde047;
}

/* Membership Card */
.membership-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 45px 35px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.25);
    width: 360px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
}

.price-tag {
    background: linear-gradient(135deg, #fde047, #facc15);
    color: #000;
    display: inline-block;
    padding: 8px 26px;
    border-radius: 30px;
    font-weight: 800;
    margin: 25px 0;
    font-size: 18px;
}

.join-now-btn {
    display: block;
    background: #ffffff;
    color: #1e40af;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
}

.join-now-btn:hover {
    background: #fde047;
    color: #000;
    transform: scale(1.06);
}

/* Bottom Benefits */
.benefits-title {
    text-align: center;
    color: #fde047;
    margin-bottom: 55px;
    font-size: 30px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    text-align: center;
}

.icon-box {
    width: 85px;
    height: 85px;
    background: #ffffff;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 18px;
    font-size: 32px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.benefit-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.benefit-item p {
    font-size: 14px;
    color: #e5e7eb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 34px;
    }
    .membership-card {
        width: 100%;
    }
    .membership-main {
        text-align: center;
    }
    .benefit-list {
        justify-content: center;
    }
}

.donation-section {
    padding: 80px 20px;
    background: #f9fafb;
    font-family: 'Poppins', sans-serif;
}

.donation-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.donation-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1e3a8a;
}

/* Cards Row */
.donation-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.donation-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid green;
}

.donation-card:hover {
    transform: translateY(-10px);
}

/* Icon */
.donation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: auto auto 20px;
}

.donation-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111827;
}

.donation-card p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Donate Button */
.donate-btn {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.donate-btn:hover {
    background: #1e40af;
}

/* Responsive */
@media (max-width: 992px) {
    .donation-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .donation-row {
        grid-template-columns: 1fr;
    }
    .donation-title {
        font-size: 28px;
    }
}

.events-section {
    padding: 80px 0;
    background-color: #fcfdfd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.events-header {
    text-align: center;
    margin-bottom: 60px;
}

.event-subtitle {
    color: #22c55e;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.events-title {
    font-size: clamp(28px, 5vw, 40px); /* Responsive Font Size */
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.event-line {
    width: 60px;
    height: 4px;
    background: #ffc107; /* Yellow highlight for contrast */
    margin: 20px auto 0;
    border-radius: 10px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Event Card */
.event-card {
    background: #edfef2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    border: 2px solid green;
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Image Box & Date Tag */
.event-image-box {
    position: relative;
    height: 240px;
    width: 100%;
}

.event-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image-box img {
    transform: scale(1.1);
}

.event-date-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #22c55e;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 8px 15px rgba(34, 197, 94, 0.4);
}

.event-date-tag .day {
    font-size: 24px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.event-date-tag .month {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Event Info */
.event-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.event-meta i {
    color: #22c55e;
    margin-right: 5px;
}

.event-info h3 {
    font-size: 22px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.event-info p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Button Styling */
.join-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

.join-btn:hover {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* No Events Message */
.no-events {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: #f1f5f9;
    border-radius: 15px;
    color: #64748b;
}

/* --- Responsive Media Queries --- */

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .events-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .event-image-box {
        height: 200px;
    }
    
    .event-info h3 {
        font-size: 19px;
    }
}


