/* Hero Section */
.hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
  
    color: #F9F6F1;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
}

.hero-subtitle {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mission Intro */
.mission-intro {
    text-align: center;
    padding: 5rem 2rem;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mission-intro h2 {
    font-size: 2.5rem;
    color: #9B8570;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.mission-intro p {
    font-size: 1.2rem;
    color: #58595B;
    max-width: 800px;
    margin: 1rem auto;
    font-weight: 300;
    line-height: 1.9;
}

/* Mission Highlight */
.mission-highlight {
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    margin: 4rem 0;
    box-shadow: 0 10px 40px rgba(199, 173, 144, 0.15);
}

    .mission-highlight h3 {
        font-size: 2rem;
        color: #C7AD90;
        margin-bottom: 2rem;
        text-align: center;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .mission-highlight p {
        font-size: 1.15rem;
        color: #58595B;
        line-height: 2;
        margin-bottom: 1.5rem;
        font-weight: 300;
    }

    .mission-highlight strong {
        color: #9B8570;
        font-weight: 500;
    }

/* Pillars Section */
.pillars-section {
    padding: 5rem 0;
}

.pillars-title {
    text-align: center;
    font-size: 2.5rem;
    color: #9B8570;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pillar-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #F0E5D9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .pillar-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #C7AD90, #9B8570);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .pillar-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(199, 173, 144, 0.2);
    }

        .pillar-card:hover::before {
            transform: scaleX(1);
        }

.pillar-number {
    font-size: 3rem;
    color: #F0E5D9;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.pillar-title {
    font-size: 1.5rem;
    color: #C7AD90;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.pillar-description {
    color: #58595B;
    line-height: 1.8;
    font-weight: 300;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    border-radius: 30px;
    margin: 4rem 0;
    padding: 4rem 3rem;
}

.commitment-title {
    text-align: center;
    font-size: 2.5rem;
    color: #9B8570;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #F0E5D9;
    transition: all 0.3s ease;
}

    .commitment-item:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(199, 173, 144, 0.15);
    }

.commitment-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C7AD90, #9B8570);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.commitment-text h4 {
    color: #9B8570;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.commitment-text p {
    color: #58595B;
    font-weight: 300;
    line-height: 1.7;
}

/* Impact Section */
.impact-section {
    padding: 5rem 2rem;
    text-align: center;
}

.impact-title {
    font-size: 2.5rem;
    color: #9B8570;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

    .stat-item:hover {
        transform: translateY(-10px);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: #C7AD90;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 1.1rem;
    color: #58595B;
    font-weight: 300;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 30px;
    margin: 4rem 2rem;
    color: #F9F6F1;
}

    .cta-section h2 {
color:white;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
    }

    .cta-section p {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
        line-height: 1.8;
    }

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: white;
    color: #9B8570;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .mission-intro h2,
    .pillars-title,
    .commitment-title,
    .impact-title,
    .cta-section h2 {
        font-size: 2rem;
        color:white
    }

    .pillars-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
