@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');      
:root {
            --primary: #6E3AFF;
            --secondary: #00D1FF;
            --accent: #FF4D7D;
            --dark: #1A1A2E;
            --light: #f5f5f5;
            --transition: all 0.3s ease;
        }      

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            /* border: 2px solid pink; */
        }
        img, video, iframe {
            max-width: 100%;
            height: auto;
        }

        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* Navigation */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            /* background: linear-gradient(45deg, var(--primary), var(--accent)); */
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            transition: var(--transition);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
    display: inline-block;
    width: 180px; /* Adjust based on your logo's aspect ratio */
    height: 50px; /* Fixed height for consistency */
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px; /* Hide the text */
    overflow: hidden;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
}

/* For dark backgrounds (like the header) */
header .logo {
    background-image: url('images/logo.png'); /* If you have a light version */
}
        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }
        nav>button {
            /* display: none; */
        }
        nav>ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(110, 58, 255, 0.3);
        }
        .cta-button>a{
            color: var(--light);
            text-decoration: none;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            background: linear-gradient(135deg, var(--dark), #2A2A4A);
            color: white;
            position: relative;
            overflow: hidden;
            border-radius: 24px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(110, 58, 255, 0.1) 0%, transparent 70%);
            animation: pulse 15s infinite alternate;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.2);
            }
        }

        .hero-content {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .secondary-button {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
        }

        .secondary-button:hover {
            background: white;
            color: var(--dark);
        }

        .floating-stats {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2rem;
            width: 300px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(-50%) translateX(0);
            }
            50% {
                transform: translateY(-50%) translateX(-10px);
            }
        }

        .stat-item {
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1.5rem;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 8px;
            height: 8px;
            background-color: var(--secondary);
            border-radius: 50%;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Space Grotesk', sans-serif;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Sections */
        section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        #hero-max {
            max-width: 100%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* About Section */
        .mission-vision {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .mission-card,
    .vision-card,
    .objectives-card {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        position: relative;
        transition: var(--transition);
    }
    
    .mission-card:hover,
    .vision-card:hover,
    .objectives-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .mission-card i,
    .vision-card i,
    .objectives-card i {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .mission-card h3,
    .vision-card h3,
    .objectives-card h3 {
        color: var(--primary);
        margin-bottom: 1rem;
    }
    
    .mission-card {
        border-top: 4px solid var(--accent);
    }
    
    .vision-card {
        border-top: 4px solid var(--secondary);
    }
    
    .objectives-card {
        border-top: 4px solid var(--dark);
    }
    .about-image {
            position: relative;
            margin-top: 1.5rem;
        }
        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
    
    /* Values Grid */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .value-card {
        background: white;
        padding: 1.5rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        text-align: center;
    }
    
    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        background: rgba(110, 58, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.8rem;
        color: var(--primary);
        transition: var(--transition);
    }
    
    .value-card:hover .value-icon {
        background: var(--primary);
        color: white;
    }
    
    .value-card h4 {
        margin-bottom: 1rem;
        color: var(--primary);
    }
     

        /* Programs Section */
        .programs {
            background-color: #F9F9FF;
        }

        .program-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .program-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .program-image {
            height: 200px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .program-card:hover .program-image img {
            transform: scale(1.05);
        }

        .program-content {
            padding: 1.5rem;
        }

        .program-content h3 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .program-content p {
            margin-bottom: 1rem;
            color: var(--dark);
            opacity: 0.8;
        }

        .program-stats {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            color: var(--secondary);
            font-weight: 600;
        }

        .program-stats i {
            margin-right: 0.5rem;
        }

         /* Gallery Section */
    .gallery-section {
        padding: 6rem 2rem;
        background-color: #F9F9FF;
    }

    .gallery-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-item {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .gallery-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        cursor: pointer;
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-image {
        opacity: 0.9;
    }

    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.8);
        color: white;
        padding: 1rem;
        transform: translateY(100%);
        transition: var(--transition);
    }

    .gallery-item:hover .gallery-caption {
        transform: translateY(0);
    }

    /* Lightbox Modal */
    .lightbox-modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        overflow: auto;
    }

    .lightbox-content {
        display: block;
        max-width: 90%;
        max-height: 80vh;
        margin: 5% auto;
        animation: zoom 0.3s;
    }

    @keyframes zoom {
        from {transform: scale(0.9)}
        to {transform: scale(1)}
    }

    .close-lightbox {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
        transition: var(--transition);
    }

    .close-lightbox:hover {
        color: var(--secondary);
    }

    .lightbox-caption {
        color: white;
        text-align: center;
        padding: 1rem 0;
        max-width: 80%;
        margin: 0 auto;
    }

        /* Impact Section */
        .impact-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .impact-stat {
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .impact-stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
        }

        .impact-stat:hover .stat-number {
            color: white;
        }

        .impact-stat .stat-number {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: var(--primary);
        }

        .impact-stat p {
            font-weight: 600;
        }

        /* How to Help Section */
        .help-section {
            background: linear-gradient(135deg, var(--dark), #2A2A4A);
            color: white;
            border-radius: 24px;
        }

        .help-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .help-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition);
            text-align: center;
        }

        .help-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .help-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .help-card h3 {
            margin-bottom: 1rem;
        }

        /* News Section */
        .news-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .news-image {
            height: 200px;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-card:hover .news-image img {
            transform: scale(1.05);
        }

        .news-content {
            padding: 1.5rem;
        }

        .news-date {
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .news-content h3 {
            margin-bottom: 0.5rem;
        }

        .news-content p {
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .read-more i {
            margin-left: 0.5rem;
            transition: var(--transition);
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* Team Section */
        .team-section {
            background-color: #F9F9FF;
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .team-member {
            text-align: center;
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1rem;
            border: 5px solid white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-member h3 {
            margin-bottom: 0.3rem;
        }

        .team-member p {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .social-links a {
            color: var(--dark);
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary);
        }

        /* Contact Section */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Inter', sans-serif;
            transition: border-color 0.3s ease;
        }

        .form-group textarea {
            height: 150px;
            resize: none;
        }

/* Contact Info Styles */
  .contact-info {
    /* background: #fff; */
    padding: 30px;
    border-radius: 10px;
    /* border: 1px solid #ddd; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
  }

  .contact-info h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.5rem;
  }

  .info-item {
    display: flex;
    margin-bottom: 25px;
  }

        .info-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .social-media {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .social-media a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--dark);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-media a:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, var(--primary), var(--accent));
        }

         /* Form Message Alert */
  .alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
  }

  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  .d-none {
    display: none;
  }


        /* Donation Hero */
        .donation-hero {
            height: 60vh;
            display: flex;
            align-items: center;
            padding: 0 2rem;
            background: linear-gradient(135deg, var(--dark), #8A63FF);
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
            border-bottom-right-radius: 24px;
            border-bottom-left-radius: 24px;
        }

        .donation-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 15s infinite alternate;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.2);
            }
        }

        .donation-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .donation-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .donation-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Donation Main Content */
        .donation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .donation-options {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .donation-options h2 {
            margin-bottom: 1.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }

        .donation-options h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .donation-methods {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .method-card {
            border: 2px solid #eee;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .method-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .method-card.active {
            border-color: var(--primary);
            background: rgba(110, 58, 255, 0.05);
        }

        .method-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .method-card h4 {
            margin-bottom: 0.5rem;
        }

        .donation-amounts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .amount-option {
            border: 2px solid #eee;
            border-radius: 10px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
        }

        .amount-option:hover {
            border-color: var(--primary);
        }

        .amount-option.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .custom-amount {
            width: 100%;
            padding: 1rem;
            border: 2px solid #eee;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

        .custom-amount:focus {
            outline: none;
            border-color: var(--primary);
        }

        .donation-frequency {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .frequency-option {
            flex: 1;
            text-align: center;
            padding: 0.8rem;
            border: 2px solid #eee;
            border-radius: 10px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .frequency-option:hover {
            border-color: var(--primary);
        }

        .frequency-option.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .donation-form .form-group {
            margin-bottom: 1.5rem;
        }

        .donation-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .donation-form input {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
        }

        .donation-form input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .name-fields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .donate-button {
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            margin-top: 1rem;
        }

        .donation-impact {
            position: sticky;
            top: 100px;
        }

        .impact-card {
            background: linear-gradient(135deg, var(--dark), #2A2A4A);
            color: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .impact-card h2 {
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            display: inline-block;
        }

        .impact-card h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .impact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .impact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            color: var(--secondary);
        }

        .impact-text h4 {
            margin-bottom: 0.3rem;
        }

        .impact-text p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .testimonial {
            background: var(--dark);
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 15px;
            font-size: 4rem;
            font-family: serif;
            color: rgba(110, 58, 255, 0.1);
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            font-style: italic;
            margin-bottom: 1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h5 {
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-size: 0.8rem;
            opacity: 0.7;
        }

         /* FAQ Section */
    .faq-section {
        padding: 6rem 2rem;
        background-color: #F9F9FF;
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }

    .faq-item:hover {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .faq-question {
        width: 100%;
        padding: 1.5rem;
        text-align: left;
        background: white;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--dark);
        transition: var(--transition);
    }

    .faq-question:hover {
        color: var(--primary);
    }

    .faq-question i {
        transition: var(--transition);
    }

    .faq-question.active i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background: white;
        transition: max-height 0.3s ease-out;
        padding: 0 1.5rem;
    }

    .faq-answer p {
        padding: 1rem 0 2rem;
        color: var(--dark);
        opacity: 0.9;
        line-height: 1.6;
    }

    /* Active state */
    .faq-item.active .faq-question {
        color: var(--primary);
        background: rgba(110, 58, 255, 0.05);
    }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-column h3 {
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            opacity: 0.7;
        }

        .footer-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(110, 58, 255, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }

        


        /* Responsive Design */
        @media (max-width: 1024px) {

            nav>button {
            display: none;
        }
            .about-content {
            grid-template-columns: 1fr;
        }
        
        .about-image {
            margin-top: 3rem;
        }
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .floating-stats {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin-top: 3rem;
                width: 100%;
                animation: none;
            }

            .impact-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .help-cards {
                grid-template-columns: 1fr;
            }
            .gallery-container {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
        .donation-container {
                grid-template-columns: 1fr;
            }

            .donation-impact {
                position: static;
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {
                .contact {
      padding: 40px 0;
    }

    .section-title h2 {
      font-size: 2rem;
    }

    .contact-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .contact-form,
    .contact-info {
      padding: 25px;
    }
            .floating-stats {
                display: none; /* Smaller on tablets */}

             .logo {
        width: 150px; /* Slightly smaller on mobile */
        height: 40px;
    }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 100px);
                background: var(--light);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: var(--transition);
            }

            .nav-links.active {
                left: 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .impact-stats {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            .gallery-section {
            padding: 4rem 1.5rem;
        }
        
        .gallery-image {
            height: 200px;
        }
        .donation-hero h1 {
                font-size: 2.5rem;
            }

            .donation-methods {
                grid-template-columns: 1fr;
            }

            .donation-amounts {
                grid-template-columns: repeat(2, 1fr);
            }
            .faq-section {
            padding: 4rem 1.5rem;
        }
        
        .faq-question {
            padding: 1.2rem;
            font-size: 1rem;
        }

        }

        @media (max-width: 480px) {
            .section-title h2 {
      font-size: 1.8rem;
    }

    .contact-form,
    .contact-info {
      padding: 20px;
    }

    .info-item {
      flex-direction: column;
    }

    .info-icon {
      margin-bottom: 10px;
    }

    .social-media {
      justify-content: center;
    }
  }
            .logo {
        width: 120px; /* Even smaller on very small screens */
        height: 35px;
        }
            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
             .name-fields {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            gallery-container {
            grid-template-columns: 1fr;
        }
        
        .lightbox-content {
            max-width: 95%;
        }
        }