.v2w3x4 {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.v2w3x4:hover {
    background-color: #FF5E00;
    border-color: #FF5E00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

/* Hero Section */
.y5z6a7 {
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    position: relative;
}

.b8c9d0 {
    margin: 0 auto;
    text-align: center;
}

.e1f2g3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.h4i5j6 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Campaign Overview */
.t6u7v8 {
    padding: 100px 0;
}

.w9x0y1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--a1b2c3);
    position: relative;
    display: inline-block;
}

.z2a3b4 {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Features Section */
.c5d6e7 {
    background-color: #f9f9f9;
}

.f8g9h0 {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

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

.i1j2k3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.l4m5n6 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--a1b2c3);
}

/* Statistics Section */
.o7p8q9 {
    text-align: center;
    margin-bottom: 30px;
}

.r0s1t2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.u3v4w5 {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

.x6y7z8 {
    height: 60px;
    margin: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.x6y7z8:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Gallery Section */
.a9b0c1 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.a9b0c1:hover img {
    transform: scale(1.1);
}

/* CTA Section */
.d2e3f4 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    padding: 80px 0;
}

.g5h6i7 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.j8k9l0 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.m1n2o3 {
    background-color: white;
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.m1n2o3:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .e1f2g3 {
        font-size: 2.8rem;
    }

    .t6u7v8 {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .e1f2g3 {
        font-size: 2.2rem;
    }

    .h4i5j6 {
        font-size: 1.1rem;
    }

    .w9x0y1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .y5z6a7 {
        padding: 120px 0 80px;
    }

    .e1f2g3 {
        font-size: 1.8rem;
    }

    .t6u7v8 {
        padding: 60px 0;
    }

    .g5h6i7 {
        font-size: 1.8rem;
    }
}

/* template 4 */

/* About Us Section */
.about-us-section {
    position: relative;
    overflow: hidden;
}

.hero-banner {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary) 0%, #002a7a 100%);
    display: flex;
    align-items: center;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 19, 82, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.awareness-section {
    background-color: #FFFCF0;
    padding: 50px;
    border-radius: 30px;
    text-align: center;

}

.ngo-section-heading {
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.ngo-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

/* 5. CTA Section */
.ngo-cta-card {
    transition: all 0.3s ease;
    border-radius: 8px !important;
}

.ngo-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ngo-cta-icon {
    color: var(--primary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headingMain {
    color: var(--secondary);
}

/* Impact Statistics Section */
.impact-statistics-section {
    background-color: white;
}

.impact-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.impact-card:hover::before {
    transform: scaleX(1);
}

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

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

/* Inspirational Banner Section */
.inspirational-banner-section {
    background: linear-gradient(45deg, var(--secondary) 0%, #e60100 100%);
    padding: 50px 0;
    overflow: hidden;
}

.inspirational-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C6,2 2,6 6,10 C10,6 14,2 10,6 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(199, 1, 0, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .inspirational-banner-section {
        padding: 60px 0;
    }
}

/* Minimal custom CSS */
.gallery-item {
    transition: transform 0.3s ease;
}

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

.galleryimg_001 {
    width: 300px;
    height: 200px;
}