body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    color: #00ffcc;
    scroll-behavior: smooth;
}

header {
    text-align: center;
    padding: 2rem;
    border-bottom: 2px solid lime;
}

.glow-header h1 {
    font-size: 2rem;
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid violet;
    box-shadow: 0 0 15px violet;
    animation: fadeInUp 2s ease-in-out;
}

.section {
    padding: 3rem;
    border: 2px solid #00ffcc;
    margin: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1.2s ease-in;
}

.section h2 {
    text-shadow: 0 0 5px lime, 0 0 10px lime;
}

.team-pic {
    width: 100%;
    max-width: 400px;
    border: 2px solid violet;
    box-shadow: 0 0 10px violet;
    border-radius: 10px;
}

.project {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: 0.5s;
    border: 2px dashed #00ffcc;
    background: rgba(0, 255, 200, 0.1);
}


/* ✅ PROJECT IMAGE SIZE TWEAK */

.project img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffcc;
}

.project:hover {
    background: linear-gradient(45deg, #00ffcc, #00cc99, #33ffcc, #00ffcc);
    background-size: 400% 400%;
    animation: colorShift 5s infinite;
}

.visit-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    background: lime;
    color: black;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 8px lime;
}

.donation-img {
    width: 200px;
    margin: 1rem 0;
    border: 2px solid lime;
    border-radius: 10px;
    box-shadow: 0 0 10px lime;
}


/* ✅ SOCIAL ICONS GLOW UPGRADE START */

.social-icons img {
    width: 30px;
    margin: 0 8px;
    transition: 0.3s ease-in-out;
    filter: drop-shadow(0 0 6px #00ffcc);
    animation: iconGlow 2s infinite alternate;
}

.social-icons a:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #00ffcc) brightness(1.2);
}

@keyframes iconGlow {
    from {
        filter: drop-shadow(0 0 4px #00ffcc);
    }
    to {
        filter: drop-shadow(0 0 10px #00ffcc);
    }
}


/* ✅ SOCIAL ICONS GLOW UPGRADE END */

footer {
    text-align: center;
    padding: 2rem;
    border-top: 2px solid lime;
    margin-top: 4rem;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 15px #25d366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px #25d366;
    }
    50% {
        box-shadow: 0 0 25px #25d366;
    }
    100% {
        box-shadow: 0 0 10px #25d366;
    }
}

@keyframes colorShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 768px) {
    .section {
        margin: 1rem;
        padding: 2rem;
    }
    .profile-pic {
        width: 100px;
        height: 100px;
    }
    /* ✅ Responsive tweak for project image on small screens */
    .project img {
        max-width: 100%;
        height: auto;
    }
    /* ✅ Smaller social icons on mobile */
    .social-icons img {
        width: 24px;
        margin: 0 6px;
    }
}