/* Root Variables */
:root {
    --primary-color: #0d0d0d;
    --secondary-color: #ff1e56;
    --accent-color: #007bff ;
    --background-color: #111;
    --text-color: #fff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(255, 0, 0, 0.6);
}

/* General Styles */
body {
    font-family: 'Gidole', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header Styles (Glassmorphism) */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo img {
    height: 50px;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-list li {
    list-style: none;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.about-hero {
    background: url('https://i.imgur.com/2kMpHO9.jpeg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 120px 20px 20px; /* Extra padding to prevent overlap */
    position: relative;
    z-index: 0;
}

.about-hero h1 {
    font-size: 35px;
    font-weight: 300;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.85;
}
.about-hero p {
    font-size: 20px;
}

/* Section Styles */
section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Objectives List */
.objectives ul {
    list-style-type: none;
    padding: 0;
}

.objectives ul li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    font-size: 18px;
    transition: background 0.3s, transform 0.2s ease;
}

.objectives ul li:hover {
    background: var(--accent-color);
    color: black;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    font-size: 30px;
    color: white;
    transition: color 0.3s, transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.donate-btn {
    background-color: darkred;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.3s ease, box-shadow 0.3s;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    top: -12px; /* Moves the button 12px upwards */
}

.donate-btn:hover {
    background-color: #00FFFF; /* Electric Blue Glow */
    color: black !important; /* Make text visible on glow */
    transform: scale(1.1);
    box-shadow: 0 0 20px #00FFFF, 0 0 40px #00FFFF, 0 0 60px #00FFFF; /* Strong neon glow */
    border: 2px solid #00FFFF;
}
.counter-section {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin: 40px auto;
    max-width: 90%;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.counter-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: scale(1.1);
}

.counter {
    font-size: 36px;
    font-weight: bold;
    color: #00A8FF; /* Electric Blue */
}

.counter-box p {
    font-size: 18px;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
    gap: 15px;
    padding: 20px;
    max-width: 1200px; /* Prevents the gallery from being too wide */
    margin: auto; /* Centers the gallery */
}

.gallery-grid img {
    width: 100%; /* Ensures images fit within grid columns */
    max-height: 300px; /* Limits height */
    object-fit: cover; /* Ensures the images don't stretch */
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Removes underline */
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button i {
    display: block;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}
.call-button {
    position: fixed;
    bottom: 80px; /* Slightly above WhatsApp button */
    right: 20px;
    background-color: #ff1e56;
    color: white;
    font-size: 28px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}


/* Active (Pressed) Effect */
.donate-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 5px var(--border-glow);
}
.translate-btn button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 16px;
    color: white;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: 0.3s ease;
}

.translate-btn button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .about-hero p {
        font-size: 18px;
    }

    h2 {
        font-size: 24px;
    }

    .mission p, .objectives p, .history p {
        font-size: 16px;
    }

    .donate-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        font-size: 24px;
    }
}
