 body {
    font-family: 'Poppins', sans-serif;
    font-size: large;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color:transparent;
    margin: 0;
    padding: 0;
        }

        /* Logo Styling */
        .navbar-brand img {
            height: 40px; /* Adjust logo height */
            margin-right: 10px;
        }

        /* Hero Section Slideshow */
        .hero-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Dark overlay */
            z-index: 1;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            animation: slideshow 15s infinite; /* 3 images * 5 seconds each */
        }

        .hero-slideshow img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            animation: fade 15s infinite;
        }

        .hero-slideshow img:nth-child(1) {
            animation-delay: 0s;
        }

        .hero-slideshow img:nth-child(2) {
            animation-delay: 5s;
        }

        .hero-slideshow img:nth-child(3) {
            animation-delay: 10s;
        }

        @keyframes slideshow {
            0%, 100% {
                opacity: 0;
            }
            5%, 33.33% {
                opacity: 1;
            }
            38.33%, 66.66% {
                opacity: 0;
            }
            71.66%, 95% {
                opacity: 1;
            }
        }

        @keyframes fade {
            0%, 100% {
                opacity: 0;
            }
            5%, 33.33% {
                opacity: 1;
            }
            38.33%, 66.66% {
                opacity: 0;
            }
            71.66%, 95% {
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-top: 1rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
        }

        /* Donation Button Animation */
        .pulse-donation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* Cause Cards */
        .cause-card {
            transition: all 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }

        .cause-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .cause-card img {
            height: 200px;
            object-fit: cover;
        }

        /* Footer */
        footer {
            background: rgba(51, 51, 51, 0.95);
            color: white;
            padding: 2rem 0;
        }

        .social-icon {
            font-size: 1.5rem;
            margin: 0 10px;
            color: white;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            color: #007bff;
            transform: scale(1.2);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .cause-card img {
                height: 150px;
            }

            .navbar-brand img {
                height: 30px; /* Smaller logo on mobile */