 /* CSS Variables for Theme */
        :root {
            --primary: #330066;
            --primary-dark: #330066;
            --secondary: #330066;
            --accent: #ff6348;
            --success: #26de81;
            --warning: #ffc048;
            --error: #fd5e53;
            --dark: #2f3542;
            --light: #f1f2f6;
            --white: #ffffff;
            --gray-100: #f8f9fa;
            --gray-200: #e9ecef;
            --gray-300: #dee2e6;
            --gray-400: #ced4da;
            --gray-500: #adb5bd;
            --gray-600: #6c757d;
            --gray-700: #495057;
            --gray-800: #343a40;
            --gray-900: #212529;
            --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
            --border-radius: 0.75rem;
            --border-radius-sm: 0.5rem;
            --border-radius-lg: 1rem;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
            --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--accent));
            --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--gray-800);
            background: var(--white);
            overflow-x: hidden;
        }

        /* Utility Classes */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 0.875rem;
            line-height: 1.25;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: var(--white);
        }

        .btn-ghost {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--white);
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-screen.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid var(--white);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 1rem;
        }

        .loading-text {
            color: var(--white);
            font-size: 1.25rem;
            font-weight: 600;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Top Announcement Bar */
        .announcement-bar {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 0.5rem 0;
            font-size: 0.875rem;
            position: relative;
            overflow: hidden;
        }

        .announcement-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .temple-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .status-indicator {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .weather-widget {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(38, 222, 129, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(38, 222, 129, 0); }
            100% { box-shadow: 0 0 0 0 rgba(38, 222, 129, 0); }
        }

        /* Header Styles */
        .header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 800;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .logo-text h1 {
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.25rem;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--gray-600);
            font-weight: 500;
        }

        /* Navigation */
        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1rem;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
            font-size: 0.875rem;
        }

        .nav-link:hover {
            background: var(--gradient-primary);
            color: var(--white);
            transform: translateY(-2px);
        }

        .nav-link i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 280px;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: var(--transition);
            z-index: 1000;
            overflow: hidden;
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            color: var(--gray-700);
            text-decoration: none;
            transition: var(--transition);
            border-bottom: 1px solid var(--gray-100);
            font-size: 0.875rem;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background: var(--gradient-primary);
            color: var(--white);
            transform: translateX(5px);
        }

        .dropdown-item i {
            width: 20px;
            text-align: center;
            color: var(--primary);
        }

        .dropdown-item:hover i {
            color: var(--white);
        }

        /* Mega Menu */
        .mega-dropdown {
            min-width: 600px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .mega-column {
            padding: 1.5rem;
        }

        .mega-column:first-child {
            border-right: 1px solid var(--gray-200);
        }

        .mega-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }

        /* Header Actions */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .search-btn, .mobile-toggle {
            width: 48px;
            height: 48px;
            border: none;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            color: var(--gray-600);
        }

        .search-btn:hover, .mobile-toggle:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.05);
        }

        .mobile-toggle {
            display: none;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--white);
            z-index: 2000;
            transition: var(--transition);
            overflow-y: auto;
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-header {
            padding: 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-close {
            width: 40px;
            height: 40px;
            border: none;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-nav {
            padding: 1rem 0;
        }

        .mobile-nav-item {
            border-bottom: 1px solid var(--gray-100);
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 1.5rem;
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .mobile-nav-link:hover {
            background: var(--gray-100);
            color: var(--primary);
        }

        .mobile-submenu {
            background: var(--gray-50);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-submenu.active {
            max-height: 300px;
        }

        .mobile-submenu-item {
            display: block;
            padding: 0.75rem 3rem;
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.875rem;
            transition: var(--transition);
        }

        .mobile-submenu-item:hover {
            color: var(--primary);
            background: var(--white);
        }

        /* Footer */
        .footer {
            background: #FFFDD0;
            color: #330066;
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            color: #330066;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-section p {
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #330066;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: #330066;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: #330066;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-400);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-link:hover {
            background: #330066;
            color: var(--white);
        }

        .footer-bottom {
            border-top: blue;
            padding-top: 2rem;
            text-align: center;
            color: #330066;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .donation-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .mega-dropdown {
                min-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .nav {
                display: none;
            }

            /* Hide donate button and search bar on mobile */
            .header-actions .btn,
            .header-actions .search-btn {
                display: none;
            }

            .hero {
                min-height: 70vh;
                text-align: center;
            }

            .hero-actions {
                justify-content: center;
            }

            .announcement-content {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid,
            .events-grid {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 1rem;
            }
        }

        @media (max-width: 480px) {
            .logo-text h1 {
                font-size: 1.25rem;
            }

            .logo-text p {
                font-size: 0.625rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .mobile-menu {
                width: 100%;
            }
        }

        /* Scroll Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Advanced Animations */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }


         /* Contact Section */
        .contact-request {
            padding: 80px 0;
            background: var(--light-gray);
        }
        
        .box-contct-center {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-center h4 {
            color: #330066;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .contact-center h5 {
            color: #330066;
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Address Section */
        .address-ul {
            list-style: none;
            padding: 0;
        }
        
        .address-ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            background: var(--light-gray);
            border-radius: 10px;
            border-left: #330066;
        }
        
        .address-ul li i {
            color: #330066;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .address-ul li a {
            color: #330066;
            text-decoration: none;
            font-weight: 600;
        }
        
        .address-ul li a:hover {
            color: #55b321;
        }
        
        /* Form Styles */
        .contact-field {
            width: 100%;
            padding: 15px 20px;
            margin-bottom: 20px;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .contact-field:focus {
            outline: none;
            border-color: #330066;
            box-shadow: 0 0 10px rgba(237, 28, 36, 0.1);
        }
        
        .field-name {
            color: #330066;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }
        
        .active-required {
            color: #330066;
        }
        
        .submit-btn {
            background: #330066;
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .submit-btn:hover {
            background: #6d390a;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(237, 28, 36, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-red) 100%);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=800&h=600&fit=crop&crop=face') no-repeat center;
            background-size: cover;
            opacity: 0.3;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 100%;
            color: white;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            font-weight: 300;
            line-height: 1.4;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .cta-btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border: none;
            cursor: pointer;
        }

        .cta-primary {
            background: white;
            color: var(--primary-red);
        }

        .cta-primary:hover {
            background: rgba(255,255,255,0.9);
            color: var(--primary-red);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .cta-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-secondary:hover {
            background: white;
            color: var(--primary-red);
            transform: translateY(-2px);
        }
 :root {
            --primary-red: #ff2954;
            --secondary-red: #e61e48;
            --dark-purple: #2d1b69;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-text: #2c3e50;
        }

                /* Header Section */
        .page-header {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
            color: white;
            padding: 4rem 0 2rem 0;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lotus" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M25,10 Q15,25 25,40 Q35,25 25,10 Z" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23lotus)"/></svg>');
        }

        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }


        .inspiration-quote {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem auto;
            max-width: 800px;
            border-left: 5px solid white;
        }

        .quote-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .quote-author {
            font-weight: 600;
            opacity: 0.8;
        }



        /* Main Content */
        .main-content {
            padding: 4rem 0;
        }

        .section-title {
            color: var(--dark-text);
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
            border-radius: 2px;
        }

        /* Volunteer Benefits */
        .benefits-section {
            background: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
        }

        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(247, 147, 30, 0.2);
            border-color: var(--primary-orange);
        }

        .benefit-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1.5rem;
            display: block;
        }

        .benefit-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }

        .benefit-description {
            color: var(--medium-gray);
            line-height: 1.6;
        }

        /* Volunteer Opportunities */
        .opportunities-section {
            padding: 4rem 0;
        }

        .opportunity-category {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
            transition: all 0.3s ease;
        }

        .opportunity-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .category-header {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .category-body {
            padding: 2rem;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-item {
            padding: 1rem;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            border-radius: 10px;
            margin-bottom: 0.5rem;
        }

        .service-item:hover {
            background: var(--cream-bg);
            transform: translateX(10px);
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .service-name {
            font-weight: 600;
            color: var(--dark-text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-description {
            color: var(--medium-gray);
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }

        /* Application Form Section */
        .application-section {
            background: white;
            padding: 4rem 0;
            margin-top: 3rem;
        }

        .form-container {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border-left: 5px solid var(--primary-orange);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 0.5rem;
        }

        .form-control,
        .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(247, 147, 30, 0.25);
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: var(--light-gray);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .checkbox-item:hover {
            background: var(--cream-bg);
        }

        .checkbox-item input[type="checkbox"] {
            margin-right: 0.5rem;
            transform: scale(1.2);
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
            border: none;
            color: white;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, var(--secondary-orange), var(--primary-orange));
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
            color: white;
        }

        /* Contact Info */
        .contact-section {
            background: var(--dark-text);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .contact-icon {
            color: var(--primary-orange);
            font-size: 1.3rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }

            .page-subtitle {
                font-size: 1.1rem;
            }

            .inspiration-quote {
                padding: 1.5rem;
                margin: 1rem 0;
            }

            .form-container {
                padding: 2rem;
            }

            .checkbox-group {
                grid-template-columns: 1fr;
            }

            .contact-item {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

           :root {
            --primary-orange: #330066;
            --secondary-orange: #330066;
            --dark-text: #2c3e50;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --success-green: #28a745;
            --cream-bg: #fef7f0;
        }

       
        .quote-section {
            background: white;
            margin: 2rem auto;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            text-align: center;
            border-left: 5px solid #330066;
        }

        .quote {
            font-size: 1.3rem;
            color:#330066;
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .quote-author {
            font-weight: bold;
            color: #330066;
        }

        .donation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .donation-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #330066;
            position: relative;
            overflow: hidden;
        }

        .donation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #330066;
        }

        .donation-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: #330066;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
        }

        .card-title {
            font-size: 1.5rem;
            color: #330066;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: bold;
        }

        .card-description {
            color: #666;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.6;
        }

        .amount-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .amount-btn {
            padding: 0.8rem;
            border: 2px solid #330066;
            background: white;
            color: #330066;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            text-align: center;
        }

        .amount-btn:hover,
        .amount-btn.active {
            background: #330066;
            color: white;
            transform: scale(1.05);
        }

        .custom-amount {
            width: 100%;
            padding: 1rem;
            border: 2px solid #330066;
            border-radius: 10px;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .custom-amount:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
        }

        .donate-btn {
            width: 100%;
            background: #330066;
            color: white;
            border: none;
            padding: 1.2rem;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .donate-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(218, 165, 32, 0.4);
        }

        .benefits-section {
            background: white;
            margin: 3rem 0;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }

        .benefits-title {
            text-align: center;
            color: #8B4513;
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .benefit-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 15px;
            background: #330066;
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #DAA520;
        }

        .benefit-text {
            color: #8B4513;
            font-weight: 500;
        }

        .contact-section {
            background: #330066;
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item h3 {
            color: #FFD700;
            margin-bottom: 0.5rem;
        }

     

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .donation-grid {
                grid-template-columns: 1fr;
            }
            
            .amount-options {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .progress-section {
            background: white;
            margin: 3rem 0;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            text-align: center;
        }

        .progress-bar {
            width: 100%;
            height: 20px;
            background: #f0f0f0;
            border-radius: 10px;
            overflow: hidden;
            margin: 1rem 0;
        }

        .progress-fill {
            height: 100%;
            background: #330066;
            border-radius: 10px;
            width: 75%;
            transition: width 0.3s ease;
        }



        ____________________________________________________

        
       