
:root {
    --primary-green: #0a8560;
    --dark-green: #0173ff;

    --warm-brown: #FF512F;   /* orange-tinted warm accent */
    --dark-brown: #b05a1c;   /* deeper orange-brown */
    --deep-brown: #6a3b16;   /* rich dark earthy tone */

    --light-cream: #fffaf4;
    --cream: #f3e6d4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--deep-brown);
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--cream) 100%);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Header with Parallax Effect */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.logo-container {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.logo-container img {
    max-width: 600px;
    width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.logo-container img:hover {
    transform: scale(1.05) translateY(-10px);
}

.tagline {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    color: var(--light-cream);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.supporters {
    font-size: 1rem;
    margin-top: 15px;
    position: relative;
    font-family: cursive;
    font-weight: 300;
    z-index: 2;
    opacity: 0.95;
    animation: fadeIn 1.5s ease-out 0.6s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    max-width: 1400px;
    margin: -50px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10;
}

/* About Us Section - Modern Card Design */
.about-section {
    background: white;
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(74, 55, 40, 0.15);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--warm-brown), var(--dark-brown));
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(122, 155, 95, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(122, 155, 95, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(122, 155, 95, 0.5);
    }
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-brown);
    margin-bottom: 25px;
    font-weight: 700;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6b5847;
    margin-bottom: 40px;
    font-family: cursive;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.objective-card {
    background: linear-gradient(135deg, rgba(122, 155, 95, 0.05), rgba(122, 155, 95, 0.1));
    border-radius: 20px;
    padding: 35px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(122, 155, 95, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(122, 155, 95, 0.2);
    background: linear-gradient(135deg, rgba(122, 155, 95, 0.1), rgba(122, 155, 95, 0.15));
}

.objective-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: absolute;
}

.objective-title {
    font-size: 1.5rem;
    color: var(--deep-brown);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
left: 50px;
}

.objective-text {
    color: #6b5847;
    line-height: 1.7;
    font-size: 1rem;
}

/* Mission Box */
.mission-box {
    background: linear-gradient(135deg, var(--warm-brown) 0%, var(--dark-brown) 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 60px;
    color: white;
    box-shadow: 0 20px 60px rgba(180, 131, 78, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.mission-box .section-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mission-box .section-title,
.mission-box .section-text {
    color: var(--light-cream);
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(74, 55, 40, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0.05;
    transition: all 0.5s ease;
}

.feature-card:nth-child(1) {
    border-top-color: var(--primary-green);
}

.feature-card:nth-child(1)::after {
    background: var(--primary-green);
}

.feature-card:nth-child(2) {
    border-top-color: var(--warm-brown);
}

.feature-card:nth-child(2)::after {
    background: var(--warm-brown);
}

.feature-card:nth-child(3) {
    border-top-color: var(--dark-brown);
}

.feature-card:nth-child(3)::after {
    background: var(--dark-brown);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(74, 55, 40, 0.2);
}

.feature-card:hover::after {
    bottom: -50px;
    right: -50px;
    opacity: 0.1;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(122, 155, 95, 0.3);
}

.feature-card:nth-child(2) .feature-icon-box {
    background: linear-gradient(135deg, var(--warm-brown), var(--dark-brown));
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.feature-card:nth-child(3) .feature-icon-box {
    background: linear-gradient(135deg, var(--dark-brown), var(--deep-brown));
    box-shadow: 0 8px 25px rgba(184, 131, 78, 0.3);
}

.feature-title {
    font-size: 1.75rem;
    color: var(--deep-brown);
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    color: #6b5847;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    position: relative;
}

.feature-list li i {
    color: var(--primary-green);
    font-size: 1.2rem;
    min-width: 20px;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(122, 155, 95, 0.3);
}

.impact-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 10s ease-in-out infinite;
}

.impact-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: float 15s ease-in-out infinite reverse;
}

.impact-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--light-cream);
    position: relative;
    z-index: 1;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    color: var(--light-cream);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-cream);
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--warm-brown) 0%, rgba(232, 200, 154, 0.9) 100%);
    border-radius: 25px;
    padding: 70px 50px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.cta-title {
    font-size: 2.8rem;
    color: var(--deep-brown);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-btn-primary {
    background: var(--deep-brown);
    color: var(--light-cream);
    box-shadow: 0 10px 30px rgba(74, 55, 40, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(74, 55, 40, 0.4);
}

.cta-btn-secondary {
    background: white;
    color: var(--deep-brown);
    border: 3px solid var(--deep-brown);
    box-shadow: 0 10px 30px rgba(74, 55, 40, 0.2);
}

.cta-btn-secondary:hover {
    background: var(--deep-brown);
    color: white;
    transform: translateY(-8px) scale(1.05);
}

.cta-btn span {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-brown) 0%, #5d4635 100%);
    color: var(--light-cream);
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-cream);
}

.footer-description {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-section-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--light-cream);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light-cream);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--warm-brown);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(254, 248, 240, 0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-cream);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--warm-brown);
    transform: translateY(-5px) scale(1.1);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 768px) {
    .tagline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-section,
    .mission-box,
    .impact-section,
    .cta-section {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}