:root {
    --clr-primary: #0F172A;       
    --clr-secondary: #E11D48;     
    --clr-accent: #FF6B00;        
    --clr-glass-border: rgba(255, 255, 255, 0.7);
    --clr-text-dark: #1E293B;
    
    --ff-heading: 'Quicksand', sans-serif;
    --ff-body: 'Nunito', sans-serif;
    
    --shadow-glass: 0 30px 60px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); color: var(--clr-text-dark); overflow-x: hidden; background-color: #FAFAFC; }
h1, h2, h3 { font-family: var(--ff-heading); color: var(--clr-primary); font-weight: 900; line-height: 1.2; text-shadow: 0 4px 20px rgba(0,0,0,0.05); }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1250px; margin: 0 auto; position: relative; z-index: 10; }
.section-padding { padding: 130px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; } .mt-5 { margin-top: 48px; } .mb-4 { margin-bottom: 24px; } .w-100 { width: 100%; }
.content-layer { position: relative; z-index: 10; } /* Keeps content above bubbles */

/* --- VIBRANT LIVING MESH BACKGROUND --- */
.mesh-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%); }
.color-blob { position: absolute; border-radius: 50%; filter: blur(150px); opacity: 0.9; animation: floatMesh 20s infinite alternate ease-in-out; mix-blend-mode: multiply; }
.blob1 { width: 70vw; height: 70vw; background: #FFD1C1; top: -10%; left: -10%; animation-delay: 0s; }
.blob2 { width: 65vw; height: 65vw; background: #D6E0FF; bottom: -10%; right: -10%; animation-delay: -5s; }
.blob3 { width: 55vw; height: 55vw; background: #FFE0F0; top: 30%; left: 20%; animation-delay: -10s; }
@keyframes floatMesh { 0% { transform: translate(0, 0) scale(1) rotate(0deg); } 100% { transform: translate(100px, -150px) scale(1.4) rotate(45deg); } }

/* --- ELITE FROSTED GLASS CARDS --- */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.4));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--clr-glass-border);
    border-top: 2px solid rgba(255,255,255,1);
    border-left: 2px solid rgba(255,255,255,1);
    box-shadow: var(--shadow-glass);
    border-radius: 35px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}
.glow-hover:hover {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), 0 0 50px rgba(255, 107, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-8px);
}
.glare {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.6) 0%, transparent 40%);
    pointer-events: none; opacity: 0; transition: opacity 0.3s ease; mix-blend-mode: overlay; z-index: 10;
}

/* --- TRUE SOAP BUBBLES --- */
.bubble { 
    position: fixed; 
    bottom: -150px; 
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.01) 60%, transparent 100%);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.6), inset 15px 0 40px rgba(255, 150, 200, 0.3), inset -15px 0 40px rgba(150, 200, 255, 0.3), 0 10px 25px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(1px); /* Low blur so text is readable */
    border: 1px solid rgba(255, 255, 255, 0.3); 
    pointer-events: none; 
    z-index: 5; /* Kept strictly behind content */
    animation: rise linear forwards; 
    transition: transform 0.2s ease-out; 
}
@keyframes rise { 
    0% { transform: translateY(0) scale(0.5); opacity: 0; } 
    15% { opacity: 1; } 
    85% { opacity: 1; } 
    100% { transform: translateY(-120vh) scale(1.5); opacity: 0; } 
}

/* --- GLOWING TYPOGRAPHY --- */
.text-gradient { 
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-secondary), #FF3366); 
    background-size: 200% auto; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    animation: gradientShimmer 3s linear infinite; 
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(255,107,0,0.3)); 
}
@keyframes gradientShimmer { to { background-position: 200% center; } }
.section-tag { display: inline-block; background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05)); border: 1px solid rgba(255,107,0,0.4); color: var(--clr-accent); padding: 12px 30px; border-radius: 50px; font-weight: 900; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 4px; margin-bottom: 28px; backdrop-filter: blur(5px); box-shadow: 0 8px 20px rgba(255,107,0,0.15); }
.section-title { font-size: clamp(3.5rem, 6vw, 5rem); margin-bottom: 30px; letter-spacing: -2px; }

/* --- DYNAMIC BUTTONS --- */
.dynamic-hover { transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease; }
.dynamic-hover:hover { transform: scale(1.05) translateY(-3px); }
.dynamic-hover:active { transform: scale(0.95); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 15px; padding: 22px 50px; border-radius: 50px; font-family: var(--ff-heading); font-weight: 900; text-decoration: none; border: none; cursor: pointer; font-size: 1.2rem; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); transition: 0.6s; }
.btn:hover::before { left: 100%; }
.btn-primary { background: linear-gradient(135deg, #FF6B00, #E84D00); color: white; box-shadow: 0 15px 35px rgba(255,107,0,0.4); }
.btn-primary:hover { box-shadow: 0 20px 45px rgba(255,107,0,0.6); }
.btn-glass { background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); border: 2px solid rgba(255,255,255,1); color: var(--clr-primary); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: white; box-shadow: 0 15px 35px rgba(37,211,102,0.4); }

/* --- HYPER-DYNAMIC WHATSAPP WIDGET --- */
.floating-wa { position: fixed; bottom: 40px; right: 40px; z-index: 9999; background: #25D366; color: white; width: 75px; height: 75px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); animation: pulseGreen 2s infinite cubic-bezier(0.66, 0, 0, 1); border: 3px solid white; }
.floating-wa:hover { animation: none; background: #1EBE5D; box-shadow: 0 15px 40px rgba(37,211,102,0.6); }
@keyframes pulseGreen { to { box-shadow: 0 0 0 30px rgba(37, 211, 102, 0); } }

/* --- NAVIGATION --- */
.glass-nav { position: fixed; top: 0; width: 100%; padding: 25px 0; z-index: 1000; transition: var(--transition); }
.glass-nav.scrolled { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(35px); border-bottom: 1px solid rgba(255,255,255,0.8); padding: 15px 0; box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 100px; transition: var(--transition); filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15)); }
.glass-nav.scrolled .logo img { height: 80px; }
.nav-links { display: flex; gap: 50px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--clr-primary); font-weight: 900; font-size: 1.15rem; position: relative; padding: 10px 0; }
.link-hover::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 4px; background: var(--clr-accent); transition: width 0.3s ease; border-radius: 5px; box-shadow: 0 0 12px var(--clr-accent); }
.link-hover:hover::after { width: 100%; }

/* --- SECTIONS & GRIDS --- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; padding-top: 120px; text-align: center; }
.hero-content { max-width: 1000px; display: flex; flex-direction: column; align-items: center; }
.hero-title { font-size: clamp(4.5rem, 8vw, 7.5rem); margin: 25px 0; }
.hero-subtitle { font-size: 1.35rem; max-width: 750px; margin-bottom: 45px; font-weight: 800; line-height: 1.7; color: var(--clr-primary); }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

/* ABOUT SECTION RE-ENGINEERED */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.text-heavy { font-weight: 800; font-size: 1.1rem; line-height: 1.8; }
.lead-text { font-size: 1.25rem; font-weight: 900; line-height: 1.6; color: var(--clr-primary); }

.about-image-composition { position: relative; height: 100%; min-height: 500px; }
.main-about-img { position: relative; z-index: 2; width: 85%; margin-left: auto; height: 100%; }
.main-about-img img { width: 100%; height: 100%; object-fit: cover; }
.floating-secondary-img { position: absolute; bottom: -30px; left: -20px; width: 55%; border-radius: 25px; border: 8px solid rgba(255,255,255,0.9); box-shadow: 0 25px 50px rgba(0,0,0,0.2); z-index: 3; }

/* 10+ YEARS RESTORED TO TOP LEFT */
.experience-badge { position: absolute; top: -40px; left: -40px; border-radius: 50%; width: 190px; height: 190px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 8px solid rgba(255,255,255,1); z-index: 4; box-shadow: 0 25px 50px rgba(0,0,0,0.2); cursor: pointer; }
.exp-number { font-size: 4rem; font-weight: 900; line-height: 1; color: var(--clr-accent); text-shadow: 0 4px 15px rgba(255,107,0,0.3); }
.exp-text { font-weight: 900; text-transform: uppercase; font-size: 1rem; text-align: center; margin-top: 5px; }

/* MASSIVE SUSTAINABILITY BLOCK */
.sustainability-block { display: flex; flex-direction: row; gap: 40px; align-items: center; padding: 0; background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6)); border: 2px solid white; }
.sus-image { width: 40%; height: 100%; min-height: 350px; flex-shrink: 0; border-radius: 0; border: none; box-shadow: none; animation: none; border-right: 2px solid rgba(255,255,255,0.8); }
.sus-image img { width: 100%; height: 100%; object-fit: cover; }
.sus-content { padding: 40px 50px 40px 10px; width: 60%; }
.sus-icon-wrap { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.highlight-icon { font-size: 3.5rem; color: var(--clr-accent); filter: drop-shadow(0 5px 15px rgba(255,107,0,0.3)); }
.pulse-icon { animation: pulseScale 2s infinite; display: inline-block; }
@keyframes pulseScale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15) rotate(5deg); } }
.sus-title { font-size: 2.2rem; font-weight: 900; }
.sus-text { font-size: 1.15rem; font-weight: 800; line-height: 1.7; opacity: 0.9; }

/* GRIDS */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
.team-card { padding: 50px 40px; }
.team-role { display: inline-block; color: var(--clr-accent); font-weight: 900; text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 20px; }
.team-card h3 { font-size: 1.9rem; margin-bottom: 8px; }
.team-card h4 { font-size: 1.2rem; color: var(--clr-secondary); font-weight: 800; margin-bottom: 25px; }

.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 50px; padding: 20px 0; }
.child-card { padding: 50px 40px; }
.child-img-wrap { width: 200px; height: 200px; margin: 0 auto 35px; border: 8px solid rgba(255,255,255,1); box-shadow: var(--shadow-glass); position: relative; }
.child-name { font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.progress-container { width: 100%; background: rgba(0,0,0,0.06); border-radius: 50px; height: 16px; margin: 30px 0; box-shadow: inset 0 3px 6px rgba(0,0,0,0.08); }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--clr-accent), var(--clr-secondary)); border-radius: 50px; box-shadow: 0 0 20px rgba(255,107,0,0.7); }
.fund-stats { display: flex; justify-content: space-between; font-weight: 900; font-size: 1.1rem; margin-bottom: 35px; color: var(--clr-primary); }

.impact-banner { background: url('assets/WhatsApp Image 2026-07-11 at 15.41.10 (4).jpeg') center/cover fixed; padding: 200px 0; }
.impact-glass-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(10px); }
.impact-quote { color: white; font-size: clamp(3rem, 5vw, 4.5rem); position: relative; z-index: 10; font-weight: 900; line-height: 1.4; text-shadow: 0 15px 40px rgba(0,0,0,0.5); }
.quote-icon { font-size: 6rem; color: var(--clr-accent); position: relative; z-index: 10; margin-bottom: 40px; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4)); }

/* BANKING & CTA */
.partner-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
.bank-card { padding: 50px; }
.bank-icon { color: var(--clr-accent); font-size: 2rem; margin-right: 15px; vertical-align: middle; }
.bank-row { display: flex; justify-content: space-between; font-size: 1.15rem; border-bottom: 1px solid rgba(0,0,0,0.1); padding: 18px 0; }
.bank-row strong { font-weight: 900; }
.bank-row span { font-weight: 700; color: var(--clr-primary); }
.highlight-row { background: rgba(255,107,0,0.05); padding: 18px 15px; margin: 0 -15px; border-radius: 10px; }
.acc-num { font-size: 1.3rem; font-weight: 900 !important; color: var(--clr-secondary) !important; text-shadow: 0 2px 5px rgba(225,29,72,0.2); }
.border-none { border: none; padding-bottom: 0; }

.cta-box { padding: 0; display: flex; flex-direction: column; }
.cta-image { width: 100%; height: 280px; border-radius: 0; border: none; animation: none; border-bottom: 2px solid rgba(255,255,255,0.8); }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { padding: 45px; text-align: center; }
.cta-title { font-size: 2.2rem; font-weight: 900; margin-bottom: 15px; }
.cta-text { font-size: 1.15rem; font-weight: 800; margin-bottom: 30px; line-height: 1.6; }

/* MASSIVE FOOTER */
.main-footer { background: var(--clr-primary); color: white; padding: 120px 0 30px; position: relative; overflow: hidden; }
.footer-bg-blobs { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.f-blob1 { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%); filter: blur(40px); }
.f-blob2 { position: absolute; bottom: -50px; left: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(225,29,72,0.15) 0%, transparent 70%); filter: blur(40px); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 60px; margin-bottom: 40px; position: relative; z-index: 10; }
.footer-logo-wrap { display: inline-block; padding: 15px; border-radius: 50px; background: rgba(255,255,255,0.05); margin-bottom: 20px; border: 1px solid rgba(255,255,255,0.1); }
.footer-logo-wrap img { height: 100px; }
.footer-slogan { font-size: 1.2rem; font-weight: 800; color: rgba(255,255,255,0.8); }
.footer-links h4, .footer-contact h4 { font-size: 1.5rem; margin-bottom: 30px; font-weight: 900; color: white; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 15px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 800; font-size: 1.1rem; transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 10px; }
.footer-links a:hover { color: var(--clr-accent); }
.footer-contact p { color: rgba(255,255,255,0.8); font-weight: 800; font-size: 1.1rem; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; line-height: 1.6; }
.footer-contact i { color: var(--clr-accent); font-size: 1.3rem; margin-top: 3px; }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.5); font-size: 1rem; font-weight: 800; position: relative; z-index: 10; }

.fade-up { opacity: 0; transform: translateY(50px); }
.morph-blob { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; animation: morph 8s ease-in-out infinite; overflow: hidden; border: 8px solid rgba(255,255,255,1); box-shadow: var(--shadow-glass); position: relative;}
.morph-blob-small { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: morph 6s ease-in-out infinite reverse; overflow: hidden; }
@keyframes morph { 0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } }