/* 1 UP Foundation - Modern CSS Design *//* Reset & Base Styles */* {    margin: 0;    padding: 0;    box-sizing: border-box;}html {    scroll-behavior: smooth;}body {    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    line-height: 1.6;    color: #333;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    overflow-x: hidden;}.container {    max-width: 1200px;    margin: 0 auto;    padding: 0 20px;}/* Typography */h1, h2, h3, h4, h5, h6 {    font-weight: 700;    margin-bottom: 1rem;    color: #2d3748;}h1 {    font-size: 3.5rem;    line-height: 1.2;}h2 {    font-size: 2.5rem;    line-height: 1.3;}h3 {    font-size: 1.8rem;}p {    margin-bottom: 1rem;    color: #4a5568;    font-size: 1.1rem;}/* Button Styles */.btn {    display: inline-block;    padding: 15px 30px;    border: none;    border-radius: 50px;    text-decoration: none;    font-weight: 600;    text-align: center;    transition: all 0.3s ease;    cursor: pointer;    font-size: 1rem;    text-transform: uppercase;    letter-spacing: 1px;    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.2), transparent);    transition: left 0.5s;}.btn:hover::before {    left: 100%;}.btn-primary {    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    color: white;    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);}.btn-primary:hover {    transform: translateY(-3px);    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);}.btn-secondary {    background: transparent;    color: #667eea;    border: 2px solid #667eea;}.btn-secondary:hover {    background: #667eea;    color: white;    transform: translateY(-3px);}.btn-large {    padding: 18px 40px;    font-size: 1.1rem;}/* Header & Navigation */.header {    position: fixed;    top: 0;    width: 100%;    background: rgba(255, 255, 255, 0.95);    backdrop-filter: blur(10px);    z-index: 1000;    border-bottom: 1px solid rgba(102, 126, 234, 0.1);    box-shadow: 0 5px 30px rgba(0,0,0,0.1);}.navbar {    padding: 1rem 0;}.nav-container {    display: flex;    justify-content: space-between;    align-items: center;}.logo h2 {    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    font-size: 1.8rem;    margin: 0;}.logo i {    color: #667eea;    margin-right: 10px;    animation: bounce 2s infinite;}@keyframes bounce {    0%, 20%, 50%, 80%, 100% {        transform: translateY(0);    }    40% {        transform: translateY(-10px);    }    60% {        transform: translateY(-5px);    }}.nav-menu {    display: flex;    list-style: none;    gap: 2rem;}.nav-menu a {    text-decoration: none;    color: #4a5568;    font-weight: 500;    transition: all 0.3s ease;    position: relative;}.nav-menu a::after {    content: '';    position: absolute;    width: 0;    height: 2px;    bottom: -5px;    left: 0;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    transition: width 0.3s ease;}.nav-menu a:hover::after {    width: 100%;}.nav-menu a:hover {    color: #667eea;}.donate-btn {    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    color: white !important;    padding: 12px 25px;    border-radius: 30px;    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);}.donate-btn:hover {    transform: translateY(-2px);    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);}.hamburger {    display: none;    flex-direction: column;    cursor: pointer;}.hamburger span {    width: 25px;    height: 3px;    background: #667eea;    margin: 3px 0;    transition: 0.3s;}/* Hero Section */.hero {    padding: 150px 0 100px;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    color: white;    min-height: 100vh;    display: flex;    align-items: center;    position: relative;    overflow: hidden;}.hero::before {    content: '';    position: absolute;    top: 0;    left: 0;    right: 0;    bottom: 0;    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');    opacity: 0.3;}.hero .container {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 4rem;    align-items: center;    position: relative;    z-index: 1;}.hero-content h1 {    color: white;    font-size: 4rem;    margin-bottom: 2rem;    animation: fadeInUp 1s ease;}.hero-content p {    font-size: 1.3rem;    color: rgba(255, 255, 255, 0.9);    margin-bottom: 3rem;    animation: fadeInUp 1s ease 0.2s both;}.hero-buttons {    display: flex;    gap: 2rem;    animation: fadeInUp 1s ease 0.4s both;}.hero-image {    position: relative;    animation: fadeInRight 1s ease 0.6s both;}.hero-img {    width: 100%;    height: 500px;    object-fit: cover;    border-radius: 20px;    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);    transform: perspective(1000px) rotateY(-5deg);}@keyframes fadeInUp {    from {        opacity: 0;        transform: translateY(50px);    }    to {        opacity: 1;        transform: translateY(0);    }}@keyframes fadeInRight {    from {        opacity: 0;        transform: translateX(50px);    }    to {        opacity: 1;        transform: translateX(0);    }}/* Tax Notice */.tax-notice {    background: white;    padding: 2rem 0;    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);}.notice-content {    display: flex;    align-items: center;    justify-content: center;    gap: 2rem;    text-align: center;}.notice-content i {    font-size: 3rem;    color: #667eea;    animation: pulse 2s infinite;}@keyframes pulse {    0% {        transform: scale(1);    }    50% {        transform: scale(1.05);    }    100% {        transform: scale(1);    }}.notice-text h3 {    color: #2d3748;    margin-bottom: 0.5rem;}.notice-text p {    margin-bottom: 0.5rem;}.notice-text small {    color: #667eea;    font-weight: 600;}/* Section Styles */section {    padding: 100px 0;}.section-header {    text-align: center;    margin-bottom: 4rem;}.section-header h2 {    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    -webkit-background-clip: text;    -webkit-text-fill-color: transparent;    background-clip: text;    margin-bottom: 1rem;}.section-header p {    font-size: 1.2rem;    color: #718096;    max-width: 600px;    margin: 0 auto;}/* About Section */.about {    background: white;    position: relative;}.about::before {    content: '';    position: absolute;    top: 0;    left: 0;    right: 0;    bottom: 0;    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);}.about-content {    display: grid;    grid-template-columns: 2fr 1fr;    gap: 4rem;    position: relative;    z-index: 1;}.mission-image {    margin: 2rem 0;}.about-img {    width: 100%;    height: 300px;    object-fit: cover;    border-radius: 15px;    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);}.values-list {    list-style: none;    margin-top: 2rem;}.values-list li {    display: flex;    align-items: center;    margin-bottom: 1rem;    padding: 1rem;    background: rgba(102, 126, 234, 0.05);    border-radius: 10px;    transition: all 0.3s ease;}.values-list li:hover {    background: rgba(102, 126, 234, 0.1);    transform: translateX(10px);}.values-list i {    color: #667eea;    margin-right: 1rem;    font-size: 1.2rem;}.about-stats {    display: flex;    flex-direction: column;    gap: 2rem;}.stat-item {    text-align: center;    padding: 2rem;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    color: white;    border-radius: 20px;    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);    transition: all 0.3s ease;}.stat-item:hover {    transform: translateY(-10px);    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);}.stat-item h3 {    font-size: 3rem;    color: white;    margin-bottom: 0.5rem;}.stat-item p {    color: rgba(255, 255, 255, 0.9);    font-weight: 600;}/* Services Section */.services {    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);}.services-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    gap: 3rem;}.service-card {    background: white;    border-radius: 20px;    overflow: hidden;    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);    transition: all 0.3s ease;    position: relative;}.service-card:hover {    transform: translateY(-15px);    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);}.service-image {    width: 100%;    height: 200px;    object-fit: cover;    transition: all 0.3s ease;}.service-card:hover .service-image {    transform: scale(1.05);}.service-icon {    position: absolute;    top: 160px;    right: 20px;    width: 60px;    height: 60px;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    border-radius: 50%;    display: flex;    align-items: center;    justify-content: center;    color: white;    font-size: 1.5rem;    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);}.service-card h3 {    padding: 2rem 2rem 1rem;    color: #2d3748;}.service-card p {    padding: 0 2rem 2rem;    color: #4a5568;}/* Support Section */.support {    background: white;}.support-content {    display: grid;    grid-template-columns: 2fr 1fr;    gap: 4rem;}.support-gallery {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));    gap: 2rem;    margin-bottom: 3rem;}.gallery-item {    position: relative;    border-radius: 15px;    overflow: hidden;    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);    transition: all 0.3s ease;}.gallery-item:hover {    transform: translateY(-5px);}.support-img {    width: 100%;    height: 200px;    object-fit: cover;    transition: all 0.3s ease;}.gallery-overlay {    position: absolute;    bottom: 0;    left: 0;    right: 0;    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));    color: white;    padding: 2rem 1.5rem 1.5rem;    transform: translateY(100%);    transition: all 0.3s ease;}.gallery-item:hover .gallery-overlay {    transform: translateY(0);}.gallery-overlay h4 {    color: white;    margin-bottom: 0.5rem;}.gallery-overlay p {    color: rgba(255, 255, 255, 0.9);    margin: 0;}.story-grid {    display: grid;    gap: 2rem;}.story-card {    padding: 2rem;    background: rgba(102, 126, 234, 0.05);    border-radius: 15px;    border-left: 4px solid #667eea;    transition: all 0.3s ease;}.story-card:hover {    background: rgba(102, 126, 234, 0.1);    transform: translateX(5px);}.impact-items {    display: flex;    flex-direction: column;    gap: 2rem;}.impact-item {    display: flex;    align-items: center;    gap: 1.5rem;    padding: 1.5rem;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    color: white;    border-radius: 15px;    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);}.amount {    font-size: 2rem;    font-weight: 700;    min-width: 80px;}.description {    font-size: 1rem;}/* Testimonials */.testimonials {    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);    color: white;    position: relative;}.testimonials::before {    content: '';    position: absolute;    top: 0;    left: 0;    right: 0;    bottom: 0;    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/></svg>');}.testimonials-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    gap: 3rem;    position: relative;    z-index: 1;}.testimonial-card {    background: rgba(255, 255, 255, 0.1);    backdrop-filter: blur(10px);    border-radius: 20px;    padding: 2.5rem;    text-align: center;    border: 1px solid rgba(255, 255, 255, 0.2);    transition: all 0.3s ease;}.testimonial-card:hover {    transform: translateY(-10px);    background: rgba(255, 255, 255, 0.15);}.testimonial-avatar {    width: 80px;    height: 80px;    border-radius: 50%;    object-fit: cover;    margin: 0 auto 1.5rem;    border: 3px solid rgba(255, 255, 255, 0.3);}.testimonial-text {    font-style: italic;    font-size: 1.1rem;    margin-bottom: 1.5rem;    color: rgba(255, 255, 255, 0.9);}.testimonial-author {    font-weight: 600;    color: #667eea;}/* Photo Gallery */.photo-gallery {    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);}.gallery-grid {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));    gap: 2rem;}.gallery-photo {    position: relative;    border-radius: 15px;    overflow: hidden;    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);    transition: all 0.3s ease;}.gallery-photo:hover {    transform: translateY(-10px);    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);}.gallery-photo img {    width: 100%;    height: 250px;    object-fit: cover;    transition: all 0.3s ease;}.gallery-photo:hover img {    transform: scale(1.05);}.photo-overlay {    position: absolute;    bottom: 0;    left: 0;    right: 0;    background: linear-gradient(transparent, rgba(102, 126, 234, 0.9));    color: white;    padding: 2rem 1.5rem 1.5rem;    transform: translateY(100%);    transition: all 0.3s ease;}.gallery-photo:hover .photo-overlay {    transform: translateY(0);}.photo-overlay h4 {    color: white;    margin-bottom: 0.5rem;}.photo-overlay p {    color: rgba(255, 255, 255, 0.9);    margin: 0;}/* Donation Section */.donate {    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    color: white;}.donate .section-header h2,.donate .section-header p {    color: white;}.donation-content {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 4rem;}.donation-form {    background: rgba(255, 255, 255, 0.1);    backdrop-filter: blur(10px);    border-radius: 20px;    padding: 3rem;    border: 1px solid rgba(255, 255, 255, 0.2);}.donation-form h3 {    color: white;    margin-bottom: 2rem;    text-align: center;}.amount-selection {    margin-bottom: 2rem;}.amount-selection label {    display: block;    margin-bottom: 1rem;    color: white;    font-weight: 600;}.amount-buttons {    display: grid;    grid-template-columns: 1fr 1fr;    gap: 1rem;    margin-bottom: 1rem;}.amount-btn {    padding: 15px;    background: rgba(255, 255, 255, 0.2);    border: 2px solid rgba(255, 255, 255, 0.3);    color: white;    border-radius: 10px;    font-weight: 600;    transition: all 0.3s ease;    cursor: pointer;}.amount-btn:hover,.amount-btn.active {    background: white;    color: #667eea;}.custom-amount {    width: 100%;    padding: 15px;    border: 2px solid rgba(255, 255, 255, 0.3);    background: rgba(255, 255, 255, 0.1);    color: white;    border-radius: 10px;    font-size: 1rem;}.custom-amount::placeholder {    color: rgba(255, 255, 255, 0.7);}.donation-type {    margin-bottom: 2rem;}.donation-type label {    color: white;    font-weight: 600;    margin-bottom: 1rem;    display: block;}.radio-group {    display: flex;    gap: 2rem;}.radio-group label {    display: flex;    align-items: center;    gap: 0.5rem;    margin-bottom: 0;    cursor: pointer;}.donor-info {    display: flex;    flex-direction: column;    gap: 1rem;    margin-bottom: 2rem;}.donor-info input {    padding: 15px;    border: 2px solid rgba(255, 255, 255, 0.3);    background: rgba(255, 255, 255, 0.1);    color: white;    border-radius: 10px;    font-size: 1rem;}.donor-info input::placeholder {    color: rgba(255, 255, 255, 0.7);}.tax-deductible {    margin-top: 2rem;    padding: 1.5rem;    background: rgba(255, 255, 255, 0.1);    border-radius: 10px;    text-align: center;}.tax-deductible i {    color: #4ade80;    margin-right: 0.5rem;}.giving-options {    display: flex;    flex-direction: column;    gap: 2rem;}.option {    display: flex;    align-items: center;    gap: 1.5rem;    padding: 2rem;    background: rgba(255, 255, 255, 0.1);    border-radius: 15px;    border: 1px solid rgba(255, 255, 255, 0.2);    transition: all 0.3s ease;}.option:hover {    background: rgba(255, 255, 255, 0.2);    transform: translateX(10px);}.option i {    font-size: 2rem;    color: white;}.option h4 {    color: white;    margin-bottom: 0.5rem;}.option p {    color: rgba(255, 255, 255, 0.9);    margin: 0;}/* Contact Section */.contact {    background: white;}.contact-content {    display: grid;    grid-template-columns: 2fr 1fr;    gap: 4rem;}.contact-info {    display: grid;    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));    gap: 2rem;}.contact-item {    display: flex;    align-items: flex-start;    gap: 1.5rem;    padding: 2rem;    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);    border-radius: 15px;    border-left: 4px solid #667eea;    transition: all 0.3s ease;}.contact-item:hover {    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);    transform: translateX(5px);}.contact-item i {    font-size: 1.5rem;    color: #667eea;    margin-top: 0.5rem;}.contact-item h4 {    margin-bottom: 0.5rem;}.contact-item p {    margin: 0;    color: #4a5568;}.contact-form {    padding: 3rem;    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);    border-radius: 20px;    color: white;}.contact-form input,.contact-form textarea {    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .support-content {
        grid-template-columns: 1fr;
    }

    .donation-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .donation-form,
    .contact-form {
        padding: 2rem;
    }
}

/* Additional Animations */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
