      :root {
            --primary: #4CAF50;
            --secondary: #2196F3;
            --accent: #FF9800;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gradient: linear-gradient(135deg, #FF6B6B, #4ECDC4);
            --gradient-vibrant: linear-gradient(135deg, #ff00cc, #3333ff, #00ccff);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: white;
        }
        
        .btn-accent {
            background-color: var(--accent);
            color: white;
        }
        
        .btn-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        section {
            padding: 80px 0;
        }
        
        h1, h2, h3, h4 {
            color: #00ccff;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 0;
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 15px 0;
            background-color: rgba(26, 26, 46, 0.95);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Banner */
        .charity-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hope.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 70px;
        }
        
        .charity-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .charity-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }


        #key{color: deeppink;   font-family: 'Orbitron', cursive;}
        /* Orphanage Outreach Section */
        .orphanage-section {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/needy.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .orphanage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .orphanage-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .orphanage-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }
        
        .orphanage-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            color: white;
            font-size: 24px;
        }
        
        /* Community Projects Section */
        .community-projects {
            background-color: white;
        }
        
        .project-highlight {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .project-card {
            background: #f8f9fa;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .project-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .project-content {
            padding: 25px;
        }
        
        .project-urgency {
            display: inline-block;
            padding: 5px 15px;
            background: #FF6B6B;
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .project-stats {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
        }
        
        .project-progress {
            height: 8px;
            background: #e0e0e0;
            border-radius: 4px;
            margin: 15px 0;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
        }
        
        /* Impact Section */
        .impact-section {
            background-color: white;
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .impact-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .impact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .impact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            border-radius: 50%;
            color: white;
            font-size: 32px;
        }
        
        .impact-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .impact-card p {
            color: #666;
        }
        
        /* Donation Options */
        .donation-options {
            background-color: #f8f9fa;
        }
        
        .donation-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .donation-tab {
            padding: 12px 25px;
            background: white;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            border: 2px solid #eee;
        }
        
        .donation-tab.active, .donation-tab:hover {
            background: var(--gradient);
            color: white;
            border-color: transparent;
        }
        
        .donation-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .donation-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
            padding: 30px 20px;
            border: 1px solid #eee;
        }
        
        .donation-card.featured {
            border: 2px solid var(--primary);
            position: relative;
        }
        
        .featured-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .donation-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin: 20px 0;
        }
        
        .donation-frequency {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .donation-benefits {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .donation-benefits li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .donation-benefits li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .custom-donation {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }
        
        .custom-donation h3 {
            margin-bottom: 30px;
        }
        
        .amount-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .amount-option {
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .amount-option.active {
            background: var(--gradient);
            color: white;
        }
        
        .custom-amount {
            display: flex;
            align-items: center;
            max-width: 300px;
            margin: 0 auto 30px;
        }
        
        .custom-amount span {
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 30px 0 0 30px;
            font-weight: 600;
        }
        
        .custom-amount input {
            flex-grow: 1;
            padding: 12px 15px;
            border: 1px solid #eee;
            border-radius: 0 30px 30px 0;
            font-size: 1rem;
            outline: none;
        }
        
        .donation-frequency-options {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .frequency-option {
            padding: 10px 20px;
            background: #f8f9fa;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .frequency-option.active {
            background: var(--gradient);
            color: white;
        }
        
       
        
        /* Testimonials */
        .donor-testimonials {
            background-color: #f8f9fa;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 4rem;
            color: rgba(0,0,0,0.05);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-size: cover;
            background-position: center;
            margin-right: 15px;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1rem;
        }
        
        .author-info p {
            font-style: normal;
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }
        
        /* CTA Section */
        .charity-cta {
            background: var(--gradient-vibrant);
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .charity-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .charity-cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #eee;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .newsletter input {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 30px;
            margin-bottom: 10px;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        
        .newsletter input::placeholder {
            color: #ccc;
        }
        
        .newsletter button {
            width: 100%;
            border: none;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        .partners {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .partner-logo {
            height: 40px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .partner-logo:hover {
            opacity: 1;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
 @media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  nav ul {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95); /* modern dark with slight transparency */
    backdrop-filter: blur(6px); /* optional glass effect */
    flex-direction: column;
    padding: 25px 20px;
    z-index: 1000;
    animation: slideIn 0.3s ease-in-out forwards;
  }

  nav ul li {
    margin: 15px 0;
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .mobile-menu-btn:active {
    transform: scale(0.95);
  }
}

        /* Mobile Styles */
        @media (max-width: 768px) {
  
            
            .charity-hero {
                padding: 150px 0 80px;
                margin-top: 60px;
            }
            
            .charity-hero h1 {
                font-size: 2.5rem;
            }
            
            .donation-form-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .donation-cards, .orphanage-grid, .project-highlight {
                grid-template-columns: 1fr;
            }
            
            .payment-methods {
                flex-direction: column;
            }
        }
        .sponsorship-section {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.sponsorship-section .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sponsorship-section .highlight {
  color: #007bce; /* blue color */
}

.sponsorship-section .subtitle {
  color: #555;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-box {
  max-width: 300px;
  text-align: center;
}

.feature-box img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
 .social-links a{
        text-decoration: none;
    }