        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');
        
        :root {
            --primary: #005548;
            --secondary: #d6e14d;
            --tertiary: #6dbe66;
            --light: #F5F9F6;
            --dark: #003530;
            --accent: #d6e14d;
            --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: #333;
            overflow-x: hidden;
            perspective: 1000px;
        }
        
        .container {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }
        
        /* Enhanced Header Styles with Transparency & Animation */
        header {
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: var(--transition-smooth);
            padding: 15px 0;
            background-color: transparent;
        }
        
        header.scrolled {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            z-index: 10;
            position: relative;
            overflow: hidden;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            width: 120%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(214, 225, 77, 0.2), transparent);
            top: 0;
            left: -120%;
            transform: skewX(-20deg);
            transition: all 0.8s ease;
        }
        
        .logo:hover::before {
            left: 120%;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-origin: center center;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }
        
        .logo:hover img {
            transform: scale(0.8);
        }
        
        .logo h1 {
            font-size: 24px;
            color: white;
            font-weight: 600;
            transition: var(--transition-smooth);
            position: relative;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        header.scrolled .logo h1 {
            color: var(--primary);
            text-shadow: none;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 40px;
            position: relative;
            perspective: 1000px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            padding: 5px 0;
            display: inline-block;
            overflow: hidden;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        header.scrolled nav ul li a {
            color: var(--dark);
            text-shadow: none;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 2px 5px rgba(214, 225, 77, 0.4);
        }
        
        nav ul li a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .donate-btn {
            background-color: var(--secondary);
            color: var(--dark) !important;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(214, 225, 77, 0.3);
            border: 2px solid var(--secondary);
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-shadow: none !important;
        }
        
        .donate-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: translateX(-100%);
            transition: all 0.6s ease;
            z-index: -1;
        }
        
        .donate-btn:hover {
            background-color: transparent;
            color: var(--secondary) !important;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(214, 225, 77, 0.4);
        }
        
        .donate-btn:hover::before {
            transform: translateX(100%);
        }
        
        header.scrolled .donate-btn:hover {
            background-color: var(--primary);
            color: white !important;
            border-color: var(--primary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: white;
            transition: var(--transition-smooth);
            z-index: 10;
        }
        
        header.scrolled .mobile-menu {
            color: var(--primary);
        }
        
        /* Enhanced Hero Section with Advanced Parallax & Animation */
        .hero {
            height: 100vh; 
            background:  #f6f9ee url('icon2.png') bottom/contain no-repeat;
            background-position: bottom !important;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(214, 225, 77, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(109, 190, 102, 0.1) 0%, transparent 40%);
            animation: gradientShift 15s ease-in-out infinite alternate;
        }
        
        @keyframes gradientShift {
            0% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(5deg); }
            100% { transform: scale(1) rotate(0deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 7rem;
            margin-bottom: 20px;
            margin-right: 20px;
            display: inline-block;
            line-height: 1.2;
            font-weight: 800;
            opacity: 0;
            transform: translateY(30px);
            animation: heroTitleAnimation 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
            position: relative;
            background: linear-gradient(90deg, #69d784, #64df8a, #69d784);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 8s ease infinite, heroTitleAnimation 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
        }
        .hero .smalltitle{
            font-size: 2.5rem;
            background: linear-gradient(90deg, #005549, #30af57, #005549);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 8s ease infinite, heroTitleAnimation 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
        }
        
        @keyframes gradientText {
            0% { background-position: 0% center; }
            50% { background-position: 100% center; }
            100% { background-position: 0% center; }
        }
        
        .hero h1::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 0;
            height: 4px;
            background: var(--secondary);
            box-shadow: 0 2px 10px rgba(214, 225, 77, 0.5);
            animation: lineGrow 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
            display: none;
        }
        
        @keyframes lineGrow {
            to { width: 120px; }
        }
        
        .hero p {
            font-size: 1.25rem;
            color: #000;
            margin-bottom: 40px;
            line-height: 1.4;
            opacity: 0;
            transform: translateY(30px);
            animation: heroTextAnimation 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes heroTitleAnimation {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes heroTextAnimation {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: heroButtonsAnimation 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
        }
        
        @keyframes heroButtonsAnimation {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .btn-secondary {
            background-color: transparent;
            border: 2px solid #000;
            color: #000;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-secondary::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: white;
            top: 0;
            left: 0;
            z-index: -1;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .btn-secondary:hover {
            color: var(--primary);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }
        
        .btn-secondary:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Enhanced floating decorations */
        .decoration {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: rgba(109, 190, 102, 0.15);
            right: -200px;
            top: -100px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            animation: float 25s ease-in-out infinite;
            transform-style: preserve-3d;
        }
        
        .decoration:nth-child(2) {
            width: 400px;
            height: 400px;
            left: -150px;
            bottom: -150px;
            background: rgba(214, 225, 77, 0.1);
            animation: float 20s ease-in-out infinite reverse;
            animation-delay: 2s;
        }
        
        .decoration::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            background: inherit;
            animation: morphBlob 15s linear infinite alternate;
            filter: blur(2px);
        }
        
        .decoration:nth-child(2)::before {
            animation: morphBlob 18s linear infinite alternate-reverse;
        }
        
        @keyframes morphBlob {
            0% {
                border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
                transform: rotate(0deg) translateZ(10px);
            }
            25% {
                border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
            }
            50% {
                border-radius: 30% 70% 70% 30% / 50% 50% 30% 60%;
                transform: rotate(180deg) translateZ(50px);
            }
            75% {
                border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
            }
            100% {
                border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
                transform: rotate(360deg) translateZ(10px);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg) translateZ(0);
                filter: hue-rotate(0deg);
            }
            50% {
                transform: translateY(-25px) rotate(5deg) translateZ(20px);
                filter: hue-rotate(15deg);
            }
        }
        
        /* Particle effect */
        .particle {
            position: absolute;
            border-radius: 50%;
            background: var(--secondary);
            opacity: 0.2;
            pointer-events: none;
            z-index: 1;
            animation: particleFloat 15s infinite linear;
        }
        
        @keyframes particleFloat {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.2;
            }
            90% {
                opacity: 0.2;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Enhanced About Section with 3D effects */
        .about {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
            perspective: 1000px;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 85, 72, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(214, 225, 77, 0.03) 0%, transparent 20%);
            pointer-events: none;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
        }
        
        .section-title.animated h2 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 0;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
            box-shadow: 0 2px 5px rgba(214, 225, 77, 0.3);
        }
        
        .section-title.animated h2::after {
            width: 100px;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
        }
        
        .section-title.animated p {
            opacity: 1;
            transform: translateY(0);
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
            perspective: 1000px;
        }
        
        .about-card {
            background-color: white;
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform: translateY(50px) rotateX(10deg);
            opacity: 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform-style: preserve-3d;
            backface-visibility: hidden;
        }
        
        .about-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: -1;
            box-shadow: 0 2px 10px rgba(214, 225, 77, 0.3);
        }
        
        .about-card::after {
            content: '';
            position: absolute;
            top: -150%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
            opacity: 0;
        }
        
        .about-card:hover::before {
            transform: scaleX(1);
        }
        
        .about-card:hover::after {
            top: 150%;
            left: 150%;
            opacity: 0.5;
        }
        
        .about-card.animated {
            transform: translateY(0) rotateX(0);
            opacity: 1;
        }
        
        .about-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .about-card i {
            font-size: 4rem;
            color: var(--tertiary);
            margin-bottom: 30px;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: inline-block;
            transform-style: preserve-3d;
        }
        
        .about-card:hover i {
            color: var(--primary);
            transform: scale(1.1) rotate(10deg) translateZ(20px);
            text-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .about-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            display: inline-block;
            transition: all 0.4s ease;
        }
        
        .about-card h3::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: var(--tertiary);
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .about-card:hover h3 {
            transform: translateZ(15px);
        }
        
        .about-card:hover h3::after {
            width: 80%;
        }
        
        .about-card p {
            color: #555;
            line-height: 1.7;
            font-weight: 300;
            transition: var(--transition-smooth);
            font-size: 1.05rem;
        }
        
        .about-card:hover p {
            color: #333;
            transform: translateZ(10px);
        }
        
        /* Enhanced Impact Section with Advanced Effects */
        .impact {
            padding: 80px 0;
            background-color: #f0f7f2;
            position: relative;
            overflow: hidden;
            perspective: 1000px;
        }
        
        .impact::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(var(--secondary) 0%, transparent 70%);
            opacity: 0.1;
            animation: pulse 10s infinite alternate;
            filter: blur(10px);
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.2); opacity: 0.15; }
        }
        
        .impact::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(var(--tertiary) 0%, transparent 70%);
            opacity: 0.1;
            animation: pulse 12s infinite alternate-reverse;
            animation-delay: 2s;
            filter: blur(15px);
        }
        
        .impact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .impact-content {
            transform: translateX(-80px);
            opacity: 0;
            transition: var(--transition-smooth);
        }
        
        .impact-content.animated {
            transform: translateX(0);
            opacity: 1;
        }
        
        .impact-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .impact-content h2::after {
            content: '';
            position: absolute;
            width: 0;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 0;
            transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
            box-shadow: 0 2px 5px rgba(214, 225, 77, 0.3);
        }
        
        .impact-content.animated h2::after {
            width: 80px;
        }
        
        .impact-content p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: #444;
            font-size: 1.1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-smooth);
        }
        
        .impact-content.animated p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }
        
        .impact-content p:nth-child(3) {
            transition-delay: 0.4s;
        }
        
        .impact-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
            perspective: 1000px;
        }
        
        .stat {
            background-color: white;
            padding: 35px 20px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px) rotateX(10deg);
            transform-style: preserve-3d;
            backface-visibility: hidden;
        }
        
        .impact-content.animated .stat {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
        
        .impact-content.animated .stat:nth-child(1) {
            transition-delay: 0.6s;
        }
        
        .impact-content.animated .stat:nth-child(2) {
            transition-delay: 0.7s;
        }
        
        .impact-content.animated .stat:nth-child(3) {
            transition-delay: 0.8s;
        }
        
        .impact-content.animated .stat:nth-child(4) {
            transition-delay: 0.9s;
        }
        
        .stat::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 0;
            background: linear-gradient(to top, var(--secondary) 0%, transparent 100%);
            opacity: 0.1;
            bottom: 0;
            left: 0;
            z-index: -1;
            transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .stat::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
            opacity: 0;
        }
        
        .stat:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
        }
        
        .stat:hover::before {
            height: 100%;
        }
        
        .stat:hover::after {
            top: 100%;
            left: 100%;
            opacity: 1;
        }
        
        .stat h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
            transition: all 0.4s ease;
            transform-style: preserve-3d;
        }
        
        .stat:hover h3 {
            transform: translateZ(15px);
        }
        
        .stat h3::after {
            content: '+';
            font-size: 1.5rem;
            position: absolute;
            top: 5px;
            right: -20px;
        }
        
        .stat p {
            margin-bottom: 0;
            color: #555;
            font-weight: 500;
            transition: var(--transition-smooth);
            font-size: 1.1rem;
        }
        
        .stat:hover p {
            color: var(--dark);
            transform: translateZ(10px);
        }
        
        .impact-image {
            position: relative;
            transform: translateX(80px);
            opacity: 0;
            transition: var(--transition-smooth);
            perspective: 1000px;
        }
        
        .impact-image.animated {
            transform: translateX(0);
            opacity: 1;
        }
        
        .impact-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid var(--secondary);
            border-radius: 20px;
            top: 20px;
            left: 20px;
            z-index: -1;
            opacity: 0;
            transform: scale(0.9) rotateY(5deg);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
            box-shadow: 0 10px 30px rgba(214, 225, 77, 0.2);
        }
        
        .impact-image.animated::before {
            opacity: 1;
            transform: scale(1) rotateY(0);
        }
        
        .impact-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-origin: center center;
            transform-style: preserve-3d;
        }
        
        .impact-image:hover img {
            transform: scale(1.02) translateZ(20px);
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
        }
        
        /* Enhanced Donation Section with Advanced Animation */
        .donate {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .donate::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M14 16H9v-2h5V9.87a4 4 0 1 1 2 0V14h5v2h-5v15.95A10 10 0 0 0 23.66 27l-3.46-2 8.2-2.2-2.9 5a12 12 0 0 1-21 0l-2.89-5 8.2 2.2-3.47 2A10 10 0 0 0 14 31.95V16zm40 40h-5v-2h5v-4.13a4 4 0 1 1 2 0V54h5v2h-5v15.95A10 10 0 0 0 63.66 67l-3.47-2 8.2-2.2-2.88 5a12 12 0 0 1-21.02 0l-2.88-5 8.2 2.2-3.47 2A10 10 0 0 0 54 71.95V56zm-39 6a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm40-40a2 2 0 1 1 0-4 2 2 0 0 1 0 4zM15 8a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm40 40a2 2 0 1 0 0-4 2 2 0 0 0 0 4z'%3E%3C/path%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        .donate h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.2rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        
        .donate.animated h2 {
            opacity: 1;
            transform: translateY(0);
        }
        
        .donate h2::after {
            content: '';
            position: absolute;
            width: 0;
            height: 4px;
            background-color: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
            box-shadow: 0 2px 5px rgba(214, 225, 77, 0.3);
        }
        
        .donate.animated h2::after {
            width: 100px;
        }
        
        .donate p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 50px;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .donate.animated p {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }
        
        .donate-form {
            background-color: white;
            max-width: 550px;
            margin: 0 auto;
            padding: 60px 50px;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
            transform: translateY(50px) rotateX(10deg);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .donate-form.animated {
            transform: translateY(0) rotateX(0);
            opacity: 1;
            transition-delay: 0.5s;
        }
        
        .donate-form::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: var(--secondary);
            border-radius: 25px;
            z-index: -1;
            opacity: 0;
            transform: scale(0.95) translateZ(-10px);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .donate-form:hover::before {
            opacity: 0.2;
            transform: scale(1) translateZ(0);
        }
        
        .donate-form h3 {
            color: var(--primary);
            margin-bottom: 30px;
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            position: relative;
            display: inline-block;
        }
        
        .donate-form h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 2px 5px rgba(214, 225, 77, 0.2);
        }
        
        .donation-amounts {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .amount-btn {
            background-color: #f5f5f5;
            border: none;
            padding: 15px 0;
            width: 23%;
            border-radius: 10px;
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transform-style: preserve-3d;
        }
        
        .amount-btn::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--secondary);
            top: 0;
            left: 0;
            z-index: -1;
            opacity: 0;
            transform: scaleY(0);
            transform-origin: bottom;
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
        }
        
        .amount-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: var(--tertiary);
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 2px 5px rgba(109, 190, 102, 0.3);
        }
        
        .amount-btn:hover, .amount-btn.active {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-5px) translateZ(10px);
            box-shadow: 0 8px 20px rgba(214, 225, 77, 0.3);
        }
        
        .amount-btn:hover::before, .amount-btn.active::before {
            opacity: 1;
            transform: scaleY(1);
        }
        
        .amount-btn:hover::after, .amount-btn.active::after {
            transform: scaleX(1);
        }
        
        .donate-form input {
            width: 100%;
            padding: 18px;
            margin-bottom: 20px;
            border: 2px solid #eee;
            border-radius: 12px;
            font-size: 1.05rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
            background-color: #fafafa;
        }
        
        .donate-form input:focus {
            border-color: var(--tertiary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(109, 190, 102, 0.2);
            transform: translateY(-3px) translateZ(5px);
            background-color: white;
        }
        
        .donate-form button {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 18px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: 100%;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 8px 20px rgba(0, 85, 72, 0.2);
            transform-style: preserve-3d;
        }
        
        .donate-form button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, var(--tertiary), var(--secondary));
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        }
        
        .donate-form button:hover {
            transform: translateY(-5px) translateZ(10px);
            box-shadow: 0 15px 30px rgba(0, 85, 72, 0.3);
            color: var(--dark);
            letter-spacing: 1px;
        }
        
        .donate-form button:hover::after {
            transform: scaleX(1);
        }
        
        .donate-decoration {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.03);
            top: -200px;
            right: -200px;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            animation: floatSlow 20s ease-in-out infinite alternate;
            transform-style: preserve-3d;
        }
        
        .donate-decoration:nth-child(2) {
            width: 400px;
            height: 400px;
            bottom: -150px;
            left: -150px;
            top: auto;
            right: auto;
            animation: floatSlow 15s ease-in-out infinite alternate-reverse;
        }
        
        @keyframes floatSlow {
            0% {
                transform: translate(0, 0) rotate(0deg) translateZ(0);
            }
            100% {
                transform: translate(40px, -40px) rotate(10deg) translateZ(20px);
            }
        }
        
        /* Enhanced Partners Section */
        .partners {
            padding: 100px 0;
            text-align: center;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .partners::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(0, 85, 72, 0.02) 0%, transparent 50%),
                       radial-gradient(circle at 20% 80%, rgba(214, 225, 77, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .partners-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 60px;
            margin-top: 60px;
            opacity: 0;
            transform: translateY(30px);
            transition: var(--transition-smooth);
        }
        
        .partners-logos.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .partner-logo {
            max-width: 180px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
        }
        
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.1) translateZ(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Enhanced Footer Section with Advanced Animations */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 100px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(109, 190, 102, 0.05) 0%, transparent 30%),
                radial-gradient(circle at 80% 80%, rgba(214, 225, 77, 0.05) 0%, transparent 30%);
            pointer-events: none;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 70px;
            perspective: 1000px;
        }
        
        .footer-col {
            opacity: 0;
            transform: translateY(30px) rotateX(5deg);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
        }
        
        .footer-col.animated {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }
        
        .footer-col:nth-child(1) {
            transition-delay: 0.1s;
        }
        
        .footer-col:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .footer-col:nth-child(3) {
            transition-delay: 0.3s;
        }
        
        .footer-col:nth-child(4) {
            transition-delay: 0.4s;
        }
        
        .footer-col h3 {
            font-size: 1.4rem;
            margin-bottom: 30px;
            position: relative;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -12px;
            left: 0;
            box-shadow: 0 2px 5px rgba(214, 225, 77, 0.2);
        }
        
        .footer-col p, .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            font-size: 1.05rem;
        }
        
        .footer-col a {
            position: relative;
            padding-left: 0;
            display: inline-block;
            overflow: hidden;
        }
        
        .footer-col a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background-color: var(--secondary);
            bottom: 0;
            left: 0;
            transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 1px 3px rgba(214, 225, 77, 0.2);
        }
        
        .footer-col a:hover {
            color: white;
            padding-left: 5px;
            transform: translateY(-2px);
        }
        
        .footer-col a:hover::before {
            width: 100%;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            padding: 0;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .social-links a::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: var(--secondary);
            border-radius: 50%;
            top: 0;
            left: 0;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: -1;
        }
        
        .social-links a:hover {
            transform: translateY(-5px);
            color: var(--dark);
            padding: 0;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .social-links a:hover::before {
            transform: scale(1);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-smooth);
            transition-delay: 0.6s;
        }
        
        .footer-bottom.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        .footer-bottom p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
        }
        
        .footer-newsletter {
            position: relative;
            margin-top: 20px;
            perspective: 1000px;
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 15px;
            padding-right: 60px;
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
        }
        
        .footer-newsletter input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(214, 225, 77, 0.2);
            transform: translateY(-3px) translateZ(5px);
        }
        
        .footer-newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .footer-newsletter button {
            position: absolute;
            right: 5px;
            top: 5px;
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            transform-style: preserve-3d;
            z-index: 1;
            overflow: hidden;
        }
        
        .footer-newsletter button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: white;
            top: 0;
            left: 0;
            border-radius: 50%;
            z-index: -1;
            transform: scale(0);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .footer-newsletter button:hover {
            transform: rotate(15deg) scale(1.1) translateZ(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .footer-newsletter button:hover::before {
            transform: scale(1);
        }
        
        /* Enhanced Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                max-width: 180px;
            }
            
            .hero h1 {
                font-size: 4rem;
            }
        }
        
        @media (max-width: 992px) {
            .container {
                max-width: 960px;
            }
            
            .about-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .impact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .impact-content, .impact-image {
                transform: translateX(0);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
            
            .hero h1 {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                max-width: 720px;
            }
            
            .mobile-menu {
                display: block;
            }
            .logo img{
                height: 25px!important;
            }
            nav {
                position: fixed;
                top: 0;
                right: -300px;
                background-color: white;
                width: 280px;
                height: 100vh;
                padding: 80px 0 0 0;
                transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
                box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
                z-index: 9;
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 0;
            }
            
            nav ul li {
                margin: 0;
                width: 100%;
                text-align: center;
            }
            
            nav ul li a {
                color: var(--dark);
                display: block;
                padding: 15px 0;
                width: 100%;
                text-shadow: none;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                width: 100%;
            }
            
            .hero-buttons a {
                width: 100%;
                text-align: center;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .impact-stats {
                grid-template-columns: 1fr;
            }
            
            .donate-form {
                padding: 40px 25px;
            }
            
            .section-title h2, 
            .impact-content h2,
            .donate h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                max-width: 100%;
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .partners-logos {
                gap: 30px;
            }
            
            .partner-logo {
                max-width: 130px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .donation-amounts {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .amount-btn {
                width: 48%;
                margin-bottom: 10px;
            }
        }
        
        /* Advanced Animations */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 8;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        .menu-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            transform: translateY(20px) scale(0.5);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 99;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .scroll-to-top::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: var(--primary);
            top: 0;
            left: 0;
            z-index: -1;
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        
        .scroll-to-top.active {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .scroll-to-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            color: white;
        }
        
        .scroll-to-top:hover::before {
            transform: scale(1);
        }
        
        /* Particle effect */
        .particle-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }