:root {
    --primary: #1a73e8;
    --secondary: #34a853;
    --accent: #fbbc04;
    --dark: #202124;
    --light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #f5f9ff;
}

.navbar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a73e8" opacity="0.05"/><path d="M0 0L100 100M100 0L0 100" stroke="%2334a853" stroke-width="1" opacity="0.1"/></svg>');
    background-size: cover;
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.app-showcase {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 20px;
    overflow: hidden;
}

.app-showcase .btn {
    background: white;
    color: var(--primary);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.app-showcase .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.contact-card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.donation-section {
    background: linear-gradient(rgba(26, 115, 232, 0.05), rgba(52, 168, 83, 0.05));
    border-radius: 20px;
}

.donate-btn {
    background: linear-gradient(135deg, var(--accent), #f57c00);
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 5px 15px rgba(245, 188, 4, 0.3);
    transition: all 0.3s;
}

.donate-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 188, 4, 0.4);
}

footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.mobile-frame {
    border: 12px solid #202124;
    border-radius: 30px;
    width: 300px;
    height: 550px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.mobile-frame:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 25px;
    background: #202124;
    border-radius: 0 0 15px 15px;
    z-index: 10;
}

.mobile-screen {
    width: 100%;
    height: 100%;
    background: white;
    overflow: hidden;
    position: relative;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: white;
    text-align: center;
}

.app-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.app-logo i {
    font-size: 2.5rem;
    color: var(--primary);
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    width: 80%;
    margin: 20px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 70%;
    background: white;
    border-radius: 3px;
    animation: progress 2s infinite;
}

@keyframes progress {
    0% { width: 30%; }
    50% { width: 80%; }
    100% { width: 30%; }
}

/* Testimonial Styles */
.testimonial-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a73e8" opacity="0.03"/><circle cx="20" cy="20" r="5" fill="%2334a853" opacity="0.1"/><circle cx="80" cy="80" r="8" fill="%2334a853" opacity="0.1"/><circle cx="50" cy="50" r="10" fill="%231a73e8" opacity="0.1"/></svg>');
    background-size: cover;
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(26, 115, 232, 0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.testimonial-logo img {
    max-height: 60px;
    max-width: 80%;
    object-fit: contain;
}

.testimonial-content {
    padding: 25px;
    position: relative;
}

.testimonial-content:before {
    content: """;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(26, 115, 232, 0.1);
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    margin-top: 15px;
}

.testimonial-pdf {
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

.testimonial-pdf:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

 .section-title {
            position: relative;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title.light:after {
            background: white;
        }
        
        .section-title.light {
            color: white;
        }


         .hero-about {
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(52, 168, 83, 0.9)), 
                         url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/><path d="M0 0L100 100M100 0L0 100" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></svg>');
            background-size: cover;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }







        /**
        Contact Page
        */

        .contact-hero {
            background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(52, 168, 83, 0.9)), 
                         url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/><path d="M0 0L100 100M100 0L0 100" stroke="%23ffffff" stroke-width="1" opacity="0.2"/></svg>');
            background-size: cover;
            padding: 100px 0;
            color: white;
            text-align: center;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
            font-weight: 700;
            color: var(--dark);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .section-title.light:after {
            background: white;
        }
        
        .section-title.light {
            color: white;
        }
        
        .contact-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s;
            height: 100%;
            border: none;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .social-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin: 0 auto 20px;
        }
        
        .youtube-icon {
            background: #FF0000;
        }
        
        .facebook-icon {
            background: #1877F2;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 15px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-thumbnail {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .video-thumbnail img {
            width: 100%;
            height: auto;
            transition: transform 0.3s;
        }
        
        .video-thumbnail:hover img {
            transform: scale(1.05);
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 3rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .contact-form {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.25);
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #1557b7, #2d8e47);
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 300px;
            border: none;
        }
        
        @media (max-width: 768px) {
            .contact-hero {
                padding: 80px 0;
            }
            
            .social-card, .contact-card {
                margin-bottom: 30px;
            }
        }




.mission-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s;
            height: 100%;
            border: none;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .stat-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
            margin: 40px 0;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 30px;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -8px;
            top: 8px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary);
            border: 3px solid white;
            box-shadow: 0 0 0 2px var(--primary);
        }
        
        .timeline-year {
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .presentation-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0,0,0,0.1);
            margin: 50px 0;
        }
        
        .presentation-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .download-btn {
            background: white;
            color: var(--primary);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .impact-section {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }
        
        .impact-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.05"/><circle cx="20" cy="20" r="5" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="8" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="10" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: cover;
        }
        
        .contact-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s;
        }
        
        .contact-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .contact-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin: 0 auto 20px;
        }
        
        @media (max-width: 768px) {
            .hero-about {
                padding: 80px 0 50px;
            }
            
            .timeline {
                padding-left: 20px;
            }
            
            .timeline-item {
                padding-left: 20px;
            }
        }


         .privacy-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
        }
       
        .data-contact-box {
            background-color: #f5f9ff;
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2.5rem 0;
            border-radius: 0 4px 4px 0;
        }
        .policy-section {
            margin-bottom: 2.5rem;
        }
        .policy-section p {
            margin-bottom: 1.2rem;
        }
        .last-updated {
            font-style: italic;
            color: #666;
            margin-bottom: 2rem;
        }
        .container-narrow {
            max-width: 900px;
        }


@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .mobile-frame {
        width: 250px;
        height: 450px;
        margin: 0 auto 30px;
    }
    
    .testimonial-section {
        padding: 50px 0;
    }
}