/* 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;
}
/* 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;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(199, 173, 144, 0.2);
    transition: transform 0.3s;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #C7AD90;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.services {
    padding:2em;
    background: linear-gradient(to bottom, #F9F6F1 0%, #F0E5D9 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(199, 173, 144, 0.3);
    }

    .service-card h3 {
        color: #C7AD90;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

.contact {
    padding:2em;
    background: linear-gradient(135deg, #C7AD90 0%, #F0E5D9 100%);
    color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-item {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: background 0.3s;
}

    .contact-item:hover {
        background: rgba(255,255,255,0.25);
    }

    .contact-item h3 {
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .contact-item a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        transition: opacity 0.3s;
    }

        .contact-item a:hover {
            opacity: 0.8;
        }
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .mission-intro h2 {
        font-size: 2rem;
    }
    .timeline::before {
        left: 30px;
    }
   
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-dot {
        left: 30px;
    }

    .principles {
        grid-template-columns: 1fr;
    }
}
