        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #1A659E;
            --light: #F7F7F7;
            --dark: #1B1B1E;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #FF6B35, #004E89);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: bold;
        } */

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: #004E89;
        }

        .logo-text span {
            color: #FF6B35;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #FF6B35;
        }

        .header-cta {
            background: #FF6B35;
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(0, 78, 137, 0.95), rgba(26, 101, 158, 0.9)),
                        url('https://images.unsplash.com/photo-1497633762265-9d179a990aa6?w=1600') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
            background-size: 200px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 48px;
            color: white;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-text h1 span {
            color: #FF6B35;
        }

        .hero-text p {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 30px;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: #FF6B35;
        }

        .stat-label {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .btn-donate {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #FF6B35;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            animation: pulse 2s infinite;
        }

        .btn-donate:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        }

        .btn-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #004E89;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
         /* animation: pulse 2s infinite; */
        }

        .btn-link:hover {
            /* transform: scale(1.05); */
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
            50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .floating-badge {
            position: absolute;
            background: white;
            padding: 15px 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: float 3s ease-in-out infinite;
        }

        .floating-badge.top {
            top: 20px;
            left: -30px;
        }

        .floating-badge.bottom {
            bottom: 30px;
            right: -30px;
            animation-delay: 1.5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* 80G Section */
        .tax-section {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .tax-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .tax-badge {
            background: white;
            padding: 15px 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .tax-badge i {
            font-size: 30px;
            color: #2E7D32;
        }

        .tax-badge-text h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .tax-badge-text p {
            font-size: 14px;
            color: #666;
        }

        .tax-highlights {
            display: flex;
            gap: 30px;
        }

        .tax-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark);
            font-weight: 500;
        }

        .tax-item i {
            color: #2E7D32;
        }

        /* About Section */
        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #004E89;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .about-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .about-card:hover {
            transform: translateY(-10px);
        }

        .about-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF6B35, #004E89);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 35px;
            color: white;
        }

        .about-card h3 {
            font-size: 22px;
            color: #004E89;
            margin-bottom: 15px;
        }

        .about-card p {
            color: #666;
            font-size: 15px;
        }

        /* Impact Section */
        .impact-section {
            background: var(--light);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .impact-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .impact-number {
            font-size: 48px;
            font-weight: 700;
            color: #FF6B35;
            margin-bottom: 10px;
        }

        .impact-label {
            font-size: 16px;
            color: #004E89;
            font-weight: 600;
        }

        /* Mission Section */
        .mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mission-text h2 {
            font-size: 36px;
            color: #004E89;
            margin-bottom: 25px;
        }

        .mission-text p {
            color: #666;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .mission-list {
            list-style: none;
        }

        .mission-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 15px;
            color: #555;
        }

        .mission-list li i {
            color: #FF6B35;
            font-size: 20px;
            margin-top: 3px;
        }

        .mission-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .mission-image img {
            width: 100%;
            display: block;
        }

        /* Programs Section */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .program-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            display: flex;
        }

        .program-image {
            width: 40%;
            background-size: cover;
            background-position: center;
        }

        .program-content {
            padding: 30px;
            width: 60%;
        }

        .program-content h3 {
            font-size: 22px;
            color: #004E89;
            margin-bottom: 15px;
        }

        .program-content p {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }

        /* Donate Section */
        .donate-section {
            background: linear-gradient(135deg, #004E89, #1A659E);
            color: white;
            text-align: center;
        }

        .donate-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .donate-section p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .donate-amounts {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .amount-btn {
            background: rgba(255,255,255,0.2);
            border: 2px solid white;
            color: white;
            padding: 15px 35px;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .amount-btn:hover, .amount-btn.active {
            background: white;
            color: #004E89;
        }
/* 
        .donate-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group input, .form-group select {
            width: 100%;
            padding: 15px 20px;
            border-radius: 10px;
            border: none;
            font-size: 16px;
            font-family: inherit;
        } */

        .btn-submit {
            width: 100%;
            background: #FF6B35;
            color: white;
            padding: 18px;
            border: none;
            border-radius: 10px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: #e55a2b;
        }

        /* Footer */
        footer {
            background: #0c567a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #FF6B35;
        }

        .footer-links h4 {
            font-size: 18px;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links ul li a:hover {
            color: #FF6B35;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }

        .footer-bottom span {
            color: #FF6B35;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: #004E89;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-grid, .mission-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .about-grid, .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .program-card {
                flex-direction: column;
            }

            .program-image, .program-content {
                width: 100%;
            }

            .program-image {
                height: 200px;
            }
        }

        @media (max-width: 768px) {
            
            
        .hero {
            padding-top: 155px;

        }
            
            nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-text h1 {
                font-size: 28px;
            }

            .hero-stats {
                /*flex-wrap: wrap;*/
                gap: 20px;
            }

            .about-grid, .impact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .tax-content {
                flex-direction: column;
                text-align: center;
            }

            .donate-amounts {
                flex-direction: column;
                align-items: center;
            }

            .amount-btn {
                width: 200px;
            }
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: #FF6B35;
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
            transition: all 0.3s;
            z-index: 999;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        .scroll-top.visible {
            display: flex;
        }
