    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2e7d32;
            --primary-dark: #1b5e20;
            --secondary: #ff9800;
            --accent: #2196f3;
            --light: #f9f9f9;
            --dark: #333;
            --urdu-font: 'Noto Nastaliq Urdu', serif;
            --english-font: 'Poppins', sans-serif;
            --neon-green: #25D366;
            --neon-blue: #2196f3;
            --neon-pink: #e91e63;
            --neon-yellow: #ffeb3b;
            --neon-orange: #ff9800;
            --neon-purple: #9c27b0;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --neon-shadow: 0 0 15px currentColor;
        }

        body {
            font-family: var(--english-font);
            background-color: #f5f5f5;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body.urdu {
            font-family: var(--urdu-font);
            direction: rtl;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Language Toggle Button */
        .language-toggle {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 1001;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
            display: flex;
            align-items: center;
            gap: 8px;
            animation: slideInRight 0.5s ease;
            border: 2px solid white;
        }

        .language-toggle:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.6);
        }

        .language-toggle i {
            font-size: 1.2rem;
            animation: spin 3s linear infinite paused;
        }

        .language-toggle:hover i {
            animation-play-state: running;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes slideInRight {
            from { transform: translateX(100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease;
            border-bottom: 3px solid var(--primary);
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 60px;
            width: auto;
            animation: pulse 2s infinite;
            border-radius: 10px;
            border: 3px solid var(--primary);
            padding: 5px;
            background: white;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(46, 125, 50, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .logo-text span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        body.urdu .nav-links a::after {
            left: auto;
            right: 0;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .icon-3d {
            font-size: 1.2rem;
            color: var(--primary);
            transition: all 0.3s ease;
            display: inline-block;
            transform-style: preserve-3d;
        }

        .nav-links a:hover .icon-3d {
            transform: rotateY(180deg) scale(1.2);
            color: var(--secondary);
        }

        .donate-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 2px solid white;
        }

        .donate-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .donate-btn:hover::before {
            left: 100%;
        }

        .donate-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(46, 125, 50, 0.6);
        }

        .donate-btn .icon-3d {
            color: white;
            font-size: 1.1rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn:hover {
            transform: rotate(90deg);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('images/hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 200px 0 140px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232e7d32' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease 0.3s both;
            background: linear-gradient(135deg, white, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.5s both;
            line-height: 1.8;
            padding: 0 20px;
        }

        .hero-btn {
            background: linear-gradient(135deg, var(--secondary), #ff8a00);
            color: white;
            border: none;
            padding: 16px 45px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.5);
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.7s both;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border: 2px solid white;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .hero-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 152, 0, 0.7);
        }

        /* Stats Section */
        .stats {
            background-color: white;
            padding: 80px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            position: relative;
            border-top: 5px solid var(--primary);
            border-bottom: 5px solid var(--primary);
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 15px;
            background: white;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            flex: 1;
            min-width: 250px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 3px solid transparent;
            background-clip: padding-box;
        }

        .stat-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
            z-index: 2;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: var(--english-font);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            position: relative;
            display: inline-block;
        }

        .stat-number::after {
            content: '+';
            position: absolute;
            top: 0;
            right: -20px;
            color: var(--secondary);
            font-size: 2rem;
        }

        .stat-text {
            font-size: 1.3rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-weight: 600;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #f9f9f9, #eef2f3);
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
            color: var(--primary);
            position: relative;
            padding-bottom: 20px;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        body.urdu .section-title {
            transform: translateX(50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 150px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
        }

        .services-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
            height: 380px;
            position: relative;
            border: 3px solid transparent;
            background-clip: padding-box;
        }

        .service-card:hover {
            transform: translateY(-15px) rotateX(5deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            border-color: var(--primary);
        }

        .service-front, .service-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 20px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .service-front {
            background: white;
            z-index: 2;
        }

        .service-back {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            transform: rotateY(180deg);
            z-index: 1;
        }

        .service-card:hover .service-front {
            transform: rotateY(180deg);
        }

        .service-card:hover .service-back {
            transform: rotateY(0);
        }

        .service-img {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 20px;
            margin-bottom: 25px;
            border: 4px solid var(--primary);
            padding: 8px;
            background: white;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(46, 125, 50, 0.2);
        }

        .service-card:hover .service-img {
            transform: scale(1.1) rotate(5deg);
            border-color: var(--secondary);
            box-shadow: 0 12px 25px rgba(255, 152, 0, 0.3);
        }

        .service-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--dark);
            font-weight: 600;
        }

        .service-desc {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .back-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: white;
            font-weight: 600;
        }

        .back-desc {
            font-size: 1.1rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Donation Section - Neon Boxes */
        .donation {
            padding: 100px 0;
            background: linear-gradient(135deg, #0d2f0f, #1b5e20);
            color: white;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--secondary);
            border-bottom: 5px solid var(--secondary);
        }

        .donation::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
        }

        .donation::after {
            content: '';
            position: absolute;
            bottom: -40%;
            left: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
        }

        .donation-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        body.urdu .donation-title {
            transform: translateX(50%);
        }

        .donation-subtitle {
            text-align: center;
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 60px;
            opacity: 0.9;
            line-height: 1.8;
            padding: 0 20px;
        }

        /* Donation Methods Tabs - Neon Style */
        .donation-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            border-bottom: 3px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 5px;
        }

        .tab-btn {
            background: none;
            border: none;
            color: white;
            padding: 18px 35px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            opacity: 0.7;
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 10px 10px 0 0;
        }

        .tab-btn:hover {
            opacity: 1;
            background: rgba(255, 255, 255, 0.1);
        }

        .tab-btn.active {
            opacity: 1;
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 4px;
            background: var(--secondary);
            bottom: -8px;
            left: 0;
            border-radius: 2px;
            box-shadow: 0 0 15px var(--secondary);
        }

        body.urdu .tab-btn.active::after {
            left: auto;
            right: 0;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Neon Method Card */
        .method-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 50px;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            border: 2px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .method-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent), var(--primary));
            z-index: -1;
            border-radius: 27px;
            opacity: 0.5;
            animation: borderRotate 4s linear infinite;
        }

        @keyframes borderRotate {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        .method-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin-bottom: 40px;
        }

        .method-logo {
            height: 80px;
            width: auto;
            animation: float 4s ease-in-out infinite;
            filter: drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .method-title {
            font-size: 2.3rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .method-details {
            text-align: left;
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.8;
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border-left: 4px solid var(--secondary);
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        body.urdu .method-details {
            text-align: right;
            border-left: none;
            border-right: 4px solid var(--secondary);
        }

        .method-details p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .method-details strong {
            color: var(--secondary);
            min-width: 180px;
        }

        .qr-container {
            background: white;
            padding: 25px;
            border-radius: 15px;
            display: inline-block;
            margin: 30px auto;
            animation: pulse 2s infinite;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 3px solid var(--primary);
        }

        .qr-code {
            width: 220px;
            height: 220px;
            object-fit: contain;
            display: block;
        }

        .instructions {
            margin-top: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            text-align: left;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        body.urdu .instructions {
            text-align: right;
        }

        .instruction-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 12px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .instruction-steps {
            list-style: none;
            padding-left: 20px;
        }

        body.urdu .instruction-steps {
            padding-left: 0;
            padding-right: 20px;
        }

        .instruction-steps li {
            margin-bottom: 15px;
            font-size: 1.2rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.6;
        }

        .instruction-steps li strong {
            color: var(--secondary);
            background: rgba(255, 152, 0, 0.1);
            padding: 2px 8px;
            border-radius: 5px;
            font-family: monospace;
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, var(--neon-green), #128C7E);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 40px;
            display: inline-flex;
            align-items: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
            border: 2px solid white;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .whatsapp-btn:hover::before {
            left: 100%;
        }

        .whatsapp-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
        }

        /* Contact Section - Fixed Layout */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f7f0, #e1ece1);
            position: relative;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            padding: 30px;
            background: white;
            border-radius: 25px;
            box-shadow: var(--shadow);
            border: 3px solid var(--primary);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
        }

        .contact-title {
            font-size: 2.3rem;
            margin-bottom: 40px;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary);
        }

        .contact-title i {
            color: var(--secondary);
            animation: tada 2s infinite;
        }

        @keyframes tada {
            0% { transform: scale(1); }
            10%, 20% { transform: scale(0.9) rotate(-3deg); }
            30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); }
            40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); }
            100% { transform: scale(1) rotate(0); }
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 15px;
            background: #f9f9f9;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            background: white;
            border-color: var(--primary);
        }

        body.urdu .contact-item:hover {
            transform: translateX(-10px);
        }

        body.urdu .contact-item {
            flex-direction: row-reverse;
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-right: 20px;
            position: relative;
            animation: float 4s ease-in-out infinite;
            flex-shrink: 0;
            border: 3px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        body.urdu .contact-icon {
            margin-right: 0;
            margin-left: 20px;
        }

        .whatsapp-icon {
            background: linear-gradient(135deg, var(--neon-green), #128C7E);
        }

        .phone-icon {
            background: linear-gradient(135deg, var(--neon-blue), #0d47a1);
        }

        .email-icon {
            background: linear-gradient(135deg, var(--neon-pink), #880e4f);
        }

        .location-icon {
            background: linear-gradient(135deg, var(--neon-yellow), #f57f17);
        }

        .contact-text {
            font-size: 1.2rem;
            flex: 1;
            line-height: 1.6;
        }

        .contact-text strong {
            color: var(--primary);
            font-size: 1.3rem;
            display: block;
            margin-bottom: 5px;
        }

        .contact-text small {
            color: #666;
            font-size: 1rem;
            display: block;
            margin-top: 5px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .social-icon {
            width: 55px;
            height: 55px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.4rem;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            text-decoration: none;
        }

        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
        }

        /* Contact Form - WhatsApp Style */
        .contact-form {
            background: white;
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: var(--shadow);
            border: 3px solid var(--neon-green);
            position: relative;
            overflow: hidden;
        }

        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--neon-green), #128C7E);
        }

        .form-title {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--primary);
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .form-title i {
            color: var(--neon-green);
            animation: pulse 2s infinite;
        }

        .form-group {
            margin-bottom: 30px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 500;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #ddd;
            border-radius: 12px;
            font-family: var(--english-font);
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: #f9f9f9;
        }

        body.urdu .form-input, body.urdu .form-textarea {
            font-family: var(--urdu-font);
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--neon-green);
            background: white;
            box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
        }

        .form-textarea {
            height: 180px;
            resize: vertical;
            line-height: 1.6;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--neon-green), #128C7E);
            color: white;
            border: none;
            padding: 20px;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            border: 2px solid white;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
        }

        body.urdu .whatsapp-float {
            left: auto;
            right: 30px;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 75px;
            height: 75px;
            background: linear-gradient(135deg, var(--neon-green), #128C7E);
            border-radius: 50%;
            color: white;
            font-size: 2.2rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            transition: all 0.3s ease;
            position: relative;
            animation: neon-pulse 2s infinite;
            border: 3px solid white;
        }

        @keyframes neon-pulse {
            0%, 100% {
                box-shadow: 0 0 15px rgba(37, 211, 102, 0.6),
                            0 0 30px rgba(37, 211, 102, 0.4),
                            0 0 45px rgba(37, 211, 102, 0.2);
            }
            50% {
                box-shadow: 0 0 25px rgba(37, 211, 102, 0.9),
                            0 0 50px rgba(37, 211, 102, 0.7),
                            0 0 75px rgba(37, 211, 102, 0.5);
            }
        }

        .whatsapp-float a:hover {
            transform: scale(1.15) rotate(15deg);
            animation: none;
        }

        .whatsapp-float .tooltip {
            position: absolute;
            top: 50%;
            right: calc(100% + 15px);
            transform: translateY(-50%);
            background: var(--dark);
            color: white;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 1rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        body.urdu .whatsapp-float .tooltip {
            right: auto;
            left: calc(100% + 15px);
        }

        .whatsapp-float .tooltip::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 100%;
            transform: translateY(-50%);
            border-width: 8px;
            border-style: solid;
            border-color: transparent transparent transparent var(--dark);
        }

        body.urdu .whatsapp-float .tooltip::after {
            left: auto;
            right: 100%;
            border-color: transparent var(--dark) transparent transparent;
        }

        .whatsapp-float:hover .tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a, #222);
            color: white;
            padding: 80px 0 40px;
            border-top: 5px solid var(--secondary);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-logo {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-logo span {
            color: var(--secondary);
        }

        .footer-about {
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .footer-title {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        body.urdu .footer-title::after {
            left: auto;
            right: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
        }

        body.urdu .footer-links a {
            flex-direction: row-reverse;
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 15px;
            transform: translateX(5px);
        }

        body.urdu .footer-links a:hover {
            padding-left: 0;
            padding-right: 15px;
            transform: translateX(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .section-title, .donation-title {
                font-size: 2.5rem;
            }
            
            .method-card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .stat-card {
                min-width: 220px;
            }
            
            .services-container {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .service-card {
                height: 360px;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .method-header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .method-title {
                font-size: 2rem;
            }
            
            .whatsapp-float {
                bottom: 25px;
                left: 25px;
            }
            
            body.urdu .whatsapp-float {
                left: auto;
                right: 25px;
            }
            
            .whatsapp-float a {
                width: 65px;
                height: 65px;
                font-size: 2rem;
            }
            
            .language-toggle {
                top: 90px;
                right: 15px;
                padding: 10px 16px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 20px;
                margin-top: 25px;
                padding: 20px;
                background: white;
                border-radius: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                border: 2px solid var(--primary);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 160px 0 100px;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                padding: 0 15px;
            }
            
            .hero-btn {
                padding: 14px 35px;
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }
            
            .stat-card {
                min-width: 100%;
                padding: 35px 25px;
            }
            
            .service-card {
                height: 340px;
            }
            
            .donation-tabs {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .tab-btn {
                width: 100%;
                text-align: center;
                justify-content: center;
                border-radius: 10px;
                padding: 15px;
            }
            
            .tab-btn.active::after {
                width: 80%;
                left: 10%;
            }
            
            body.urdu .tab-btn.active::after {
                right: 10%;
                left: auto;
            }
            
            .method-card {
                padding: 30px 20px;
            }
            
            .method-details {
                padding: 20px;
                font-size: 1.1rem;
            }
            
            .method-details p {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            body.urdu .method-details p {
                align-items: flex-end;
            }
            
            .method-details strong {
                min-width: auto;
            }
            
            .qr-code {
                width: 180px;
                height: 180px;
            }
            
            .contact-form {
                padding: 35px 25px;
            }
            
            .whatsapp-float .tooltip {
                display: none;
            }
            
            .language-toggle {
                top: 85px;
                right: 10px;
                padding: 8px 14px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 140px 0 80px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title, .donation-title {
                font-size: 1.8rem;
            }
            
            .service-card {
                height: 320px;
            }
            
            .service-front, .service-back {
                padding: 30px 20px;
            }
            
            .service-img {
                width: 80px;
                height: 80px;
            }
            
            .method-card {
                padding: 25px 15px;
            }
            
            .method-title {
                font-size: 1.6rem;
            }
            
            .contact-info, .contact-form {
                padding: 25px 20px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            body.urdu .contact-item {
                flex-direction: column;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            body.urdu .contact-icon {
                margin-left: 0;
                margin-bottom: 15px;
            }
            
            .whatsapp-float {
                bottom: 20px;
                left: 20px;
            }
            
            body.urdu .whatsapp-float {
                left: auto;
                right: 20px;
            }
            
            .whatsapp-float a {
                width: 60px;
                height: 60px;
                font-size: 1.8rem;
            }
            
            .language-toggle {
                top: 80px;
                right: 8px;
                padding: 6px 12px;
                font-size: 0.7rem;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
            
            .logo-img {
                height: 50px;
            }
        }

        @media (max-width: 400px) {
            .hero-title {
                font-size: 1.7rem;
            }
            
            .services-container {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .language-toggle {
                display: none;
            }
        }

        /* Animation for stats */
        @keyframes countUp {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.8);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .animate-stat {
            animation: countUp 1s ease-out forwards;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 10px;
            border: 2px solid #f1f1f1;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
        }

        /* Selection color */
        ::selection {
            background: rgba(46, 125, 50, 0.3);
            color: var(--dark);
        }

        /* Loading animation */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .spinner {
            width: 80px;
            height: 80px;
            border: 8px solid rgba(255, 255, 255, 0.3);
            border-top: 8px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
