.hero {
    background-image: url('/public/images/hero-gallery.png');
    background-size: cover;
    background-position: top center; 
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: black;
}

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-cta {
            background: var(--accent-orange);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-cta:hover {
            background: #E65100;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(245,124,0,0.3);
        }

        .why-donate {
            padding: 100px 0;
            background: var(--light-gray);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

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

        .impact-grid {
            display: grid;
              grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .impact-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

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

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

        .impact-card:nth-child(1) .impact-icon { background: var(--primary-blue); }
        .impact-card:nth-child(2) .impact-icon { background: var(--secondary-green); }
        .impact-card:nth-child(3) .impact-icon { background: var(--accent-orange); }
        .impact-card:nth-child(4) .impact-icon { background: #9C27B0; }

        .impact-card h3 {
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .impact-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

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

 .bank-donation-section {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
}

.donation-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap; 
}

.bank-details {
  flex: 1;
  min-width: 300px;
}

.bank-details h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.bank-details p {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #333;
}

.note {
  background: #fff3cd;
  border-left: 4px solid var(--accent-orange);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.qr-section {
  flex: 1;
  text-align: center;
  min-width: 250px;
}

.qr-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-blue);
}

.qr-section img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  border: 3px solid #eee;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
        .impact-proof {
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }

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

        .fund-utilization {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .chart-container {
            position: relative;
            height: 300px;
            margin: 2rem 0;
        }

        .transparency-badge {
            background: var(--secondary-green);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 50px;
            display: inline-block;
            font-weight: 600;
            margin-top: 1rem;
        }

        /* Success Stories */
        .success-stories {
            padding: 100px 0;
            background: var(--light-blue);
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .story-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

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

        .story-image {
            height: 250px;
            background-size: cover;
            background-position: center;
        }

        .story-content {
            padding: 2rem;
        }

        .story-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .story-text {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .story-impact {
            background: var(--light-green);
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid var(--secondary-green);
        }

        /* Trust Section */
        .trust-section {
            padding: 100px 0;
            background: var(--white);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .trust-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

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

        .trust-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

       .partners-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.section-header p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    justify-items: center;
}

.partner-logo {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 200px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
}

        .final-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .final-cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .final-cta-btn {
            background: var(--accent-orange);
            color: var(--white);
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .final-cta-btn:hover {
            background: #E65100;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245,124,0,0.3);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .donation-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .amount-buttons {
                grid-template-columns: repeat(2, 1fr);
            }

            .payment-methods {
                grid-template-columns: repeat(2, 1fr);
            }

            .stories-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }
        }


                .gallery {
            padding: 5rem 0;
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 3rem;
        }

        .gallery-item {
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

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

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }