* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700); }
    50% { background: linear-gradient(135deg, #ffd700, #ff6b35, #f7931e); }
}

.logo-container {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.handprints {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: bounceIn 1.2s ease-out 0.5s both;
}

.handprint {
    width: 80px;
    height: 80px;
    border-radius: 50% 40% 50% 40%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.handprint-yellow {
    background: #ffd700;
    box-shadow: 0 0 30px #ffd700, 0 0 60px #ffd700;
}

.handprint-red {
    background: #e53e3e;
    box-shadow: 0 0 30px #e53e3e, 0 0 60px #e53e3e;
}

.handprint::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10px;
    width: 15px;
    height: 20px;
    background: inherit;
    border-radius: 50%;
    box-shadow: 
        15px 0 0 inherit,
        30px 0 0 inherit,
        45px 0 0 inherit;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.glow-text {
    background: linear-gradient(45deg, #ffd700, #ff6b35, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    animation: ledGlow 2s ease-in-out infinite alternate;
    display: block;
}

@keyframes ledGlow {
    0% { 
        filter: brightness(1) drop-shadow(0 0 10px #ffd700);
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
    100% { 
        filter: brightness(1.3) drop-shadow(0 0 20px #ff6b35);
        text-shadow: 0 0 40px rgba(255, 107, 53, 1);
    }
}

.tagline {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-out 1.2s both;
}

.children-animation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out 1.5s both;
}

.child {
    position: relative;
}

.child-image-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.child-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.joy-sparkles {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffd700, #ff6b35);
    border-radius: 50%;
    animation: sparkleFloat 2s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    bottom: 0;
    left: 0;
    animation-delay: 0.7s;
}

.sparkle:nth-child(3) {
    top: 50%;
    right: -10px;
    animation-delay: 1.4s;
}

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: scale(0) translateY(0);
    }
    50% {
        opacity: 1;
        transform: scale(1) translateY(-15px);
    }
}

.child-1 {
    animation: childBounce 2s ease-in-out infinite;
}

.child-2 {
    animation: childSway 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.child-3 {
    animation: childGlow 3s ease-in-out infinite;
    animation-delay: 1s;
}

.child-4 {
    animation: childRotate 2.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes childBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes childSway {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.02); }
    75% { transform: rotate(5deg) scale(1.02); }
}

@keyframes childGlow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 20px rgba(255, 107, 53, 0.8)); }
}

@keyframes childRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(3deg) scale(1.03); }
    66% { transform: rotate(-3deg) scale(1.03); }
}

.loading-container {
    animation: fadeIn 1s ease-out 2s both;
}

.loading-text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff6b35);
    border-radius: 3px;
    animation: loadingProgress 2s ease-out 2.5s both;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Enhanced Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 20px;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle.heart { color: #ff6b35; }
.particle.star { color: #ffd700; }
.particle.book { color: #fff; }
.particle.pencil { color: #e53e3e; }

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 6s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; }

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(100vh) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) scale(1) rotate(0deg);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) scale(1) rotate(360deg);
    }
}

/* Main Content Styles */
.main-content {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.main-content.hidden {
    display: none;
}

.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-handprints {
    display: flex;
    gap: 5px;
}

.nav-handprint {
    width: 25px;
    height: 25px;
    border-radius: 50% 40% 50% 40%;
    position: relative;
}

.nav-handprint-yellow {
    background: #ffd700;
}

.nav-handprint-red {
    background: #e53e3e;
}

.nav-handprint::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 3px;
    width: 4px;
    height: 6px;
    background: inherit;
    border-radius: 50%;
    box-shadow: 
        4px 0 0 inherit,
        8px 0 0 inherit,
        12px 0 0 inherit;
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ff6b35;
}

.donate-btn {
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: transform 0.3s;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

/* Container for all sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-subtitle {
    display: block;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

/* Hero Child Container */
.hero-child-container {
    position: relative;
    width: 450px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-child-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-child-img {
    width: 350px;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    animation: heroImageFloat 6s ease-in-out infinite;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

@keyframes heroImageFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.15),
            0 0 40px rgba(255, 107, 53, 0.1);
    }
    50% { 
        transform: translateY(-15px) scale(1.02);
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.2),
            0 0 60px rgba(255, 215, 0, 0.2);
    }
}

.hero-child-img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 50px rgba(255, 107, 53, 0.3);
}

/* Floating Educational Elements */
.floating-education-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: floatElement 4s ease-in-out infinite;
    opacity: 0.9;
}

.education-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.element-text {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.element-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: -8%;
    animation-delay: 0.7s;
}

.element-3 {
    top: 50%;
    left: -10%;
    animation-delay: 1.4s;
}

.element-4 {
    top: 70%;
    right: -5%;
    animation-delay: 2.1s;
}

.element-5 {
    bottom: 15%;
    left: -5%;
    animation-delay: 2.8s;
}

.element-6 {
    top: 5%;
    right: 15%;
    animation-delay: 3.5s;
}

@keyframes floatElement {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) scale(1.1) rotate(5deg);
        opacity: 1;
    }
}

/* Inspiration Quotes */
.inspiration-quotes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.quote {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    padding: 8px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: quoteFloat 5s ease-in-out infinite;
    max-width: 120px;
    text-align: center;
    line-height: 1.3;
}

.quote-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.quote-2 {
    top: 35%;
    right: 5%;
    animation-delay: 1.25s;
}

.quote-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 2.5s;
}

.quote-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3.75s;
}

@keyframes quoteFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

/* Background Effects */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: bgCircleFloat 8s ease-in-out infinite;
}

.bg-circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #e53e3e, #ffd700);
    bottom: 20%;
    right: -8%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    top: 60%;
    left: -5%;
    animation-delay: 4s;
}

@keyframes bgCircleFloat {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1);
    }
    33% { 
        transform: translate(20px, -20px) scale(1.1);
    }
    66% { 
        transform: translate(-15px, 15px) scale(0.9);
    }
}

.light-rays {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ray {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: rayMove 6s ease-in-out infinite;
}

.ray-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.ray-2 {
    bottom: 30%;
    right: 25%;
    animation-delay: 2s;
    transform: rotate(-30deg);
}

.ray-3 {
    top: 60%;
    left: 70%;
    animation-delay: 4s;
    transform: rotate(60deg);
}

@keyframes rayMove {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% { 
        opacity: 1;
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 1s ease-out;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: #ff6b35;
    min-width: 50px;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.about-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-desc {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    animation: slideInRight 1s ease-out;
}

.about-img-container {
    position: relative;
    height: 500px;
}

.about-img {
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-img {
    width: 300px;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.float-img-1 {
    width: 150px;
    height: 200px;
    position: absolute;
    bottom: 60px;
    left: 0;
    z-index: 3;
    animation: floatUp 6s ease-in-out infinite;
}

.float-img-2 {
    width: 120px;
    height: 160px;
    position: absolute;
    top: 80px;
    left: 40px;
    z-index: 1;
    animation: floatUp 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Programs Section */
.programs-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.program-impact {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 215, 0, 0.05));
    border-radius: 15px;
}

.impact-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Impact Section */
.impact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.impact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.impact-image {
    height: 200px;
    overflow: hidden;
}

.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-img {
    transform: scale(1.1);
}

.impact-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.impact-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    line-height: 1.6;
}

.impact-stats {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.impact-stats .stat {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    animation: slideInLeft 1s ease-out;
}

.contact-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
}

.contact-icon.phone {
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
}

.contact-icon.email {
    background: linear-gradient(45deg, #EA4335, #FBBC05);
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #E4405F, #FFDC80, #FFDC80, #833AB4);
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #e53e3e;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 215, 0, 0.1));
    border-radius: 15px;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.location-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.location-details p {
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    animation: slideInRight 1s ease-out;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    transition: color 0.3s ease;
    z-index: 1;
}

.form-group textarea + .form-icon {
    top: 1rem;
    transform: none;
}

.form-group:focus-within .form-icon {
    color: #ff6b35;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333, #222);
    color: white;
    position: relative;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.footer-handprints {
    display: flex;
    gap: 5px;
}

.footer-handprint {
    width: 30px;
    height: 30px;
    border-radius: 50% 40% 50% 40%;
    position: relative;
}

.footer-handprint-yellow {
    background: #ffd700;
}

.footer-handprint-red {
    background: #e53e3e;
}

.footer-handprint::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 4px;
    width: 5px;
    height: 8px;
    background: inherit;
    border-radius: 50%;
    box-shadow: 
        5px 0 0 inherit,
        10px 0 0 inherit,
        15px 0 0 inherit;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.instagram {
    background: linear-gradient(45deg, #E4405F, #833AB4);
}

.social-link.email {
    background: #EA4335;
}

.social-link.phone {
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-contact-item i {
    width: 20px;
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffd700;
}

/* Floating Donation Button */
.floating-donate-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #e53e3e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(229, 62, 62, 0.4);
    font-weight: 600;
    transition: all 0.3s ease;
    animation: floatingBtn 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.6);
    color: white;
}

@keyframes floatingBtn {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .children-animation {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .child-image-container {
        width: 80px;
        height: 80px;
    }
    
    .loading-bar {
        width: 250px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .hero-child-container {
        width: 300px;
        height: 400px;
    }
    
    .hero-child-img {
        width: 250px;
        height: 350px;
    }
    
    .floating-element {
        transform: scale(0.8);
    }
    
    .quote {
        font-size: 12px;
        padding: 6px 10px;
        max-width: 100px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .floating-donate-btn {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .handprints {
        gap: 10px;
    }
    
    .handprint {
        width: 60px;
        height: 60px;
    }
    
    .children-animation {
        gap: 10px;
    }
    
    .child-image-container {
        width: 70px;
        height: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-child-container {
        width: 250px;
        height: 350px;
    }
    
    .hero-child-img {
        width: 200px;
        height: 280px;
    }
    
    .floating-element {
        transform: scale(0.7);
    }
    
    .quote {
        font-size: 10px;
        padding: 4px 8px;
        max-width: 80px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .education-icon {
        font-size: 20px;
    }
    
    .element-text {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .about-img-container {
        height: 300px;
    }
    
    .main-img {
        width: 200px;
        height: 260px;
    }
    
    .float-img-1 {
        width: 100px;
        height: 130px;
    }
    
    .float-img-2 {
        width: 80px;
        height: 100px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .program-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .location-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
}
/* Form Messages */
.form-messages {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-messages.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-messages.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.character-count {
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
    font-size: 0.8rem;
    color: #666;
    pointer-events: none;
}

.form-group {
    position: relative;
}

.form-group textarea {
    padding-bottom: 2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form field validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Add this to your styles.css file */

/* Warning message styling for banned words */
.form-messages.warning {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    color: #856404;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
}

.form-messages.warning i {
    color: #f39c12;
    font-size: 1.2rem;
}

.form-messages.warning span {
    font-weight: 500;
    line-height: 1.5;
}

/* Enhanced error messages */
.form-messages.error {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-left: 4px solid #e74c3c;
}

/* Enhanced success messages */
.form-messages.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
    border-left: 4px solid #27ae60;
}

/* Ensure messages are readable */
.form-messages {
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
    white-space: pre-line;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-messages i {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.form-messages span {
    flex: 1;
}