/* Created by Aftab Hussain
GitHub: https://github.com/Aftab-06
Project: FoodForChild
Gmail: aftabhussain77541@gmail.com */


        .donation-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        .hero-gradient {
            background: linear-gradient(135deg, #4ade80 0%, #3b82f6 100%);
        }
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .map-container {
            height: 400px;
            border-radius: 1rem;
            overflow: hidden;
        }
