

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 108, 86, 0.85), rgba(26, 108, 86, 0.85));
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}





/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: #6e9479;
}



/* Image Section */
.image-section {
    padding: 4rem 0;
    background-color: var(--light);
}

.image-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.image-card {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-card:hover {
    transform: translate(-5px);
}

.image-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.image-content {
    padding: 1.5rem;
    background: #fff;
}

.image-content h3 {
    margin-left: 5px;
}


.image-content p {
    color: black;
    margin-left: 5px;
    margin-right: 5px;
}

/* responsive Image Section */
@media(max-width: 768px) {
    .image-container {
        flex-direction: column;
    }

    .image-card {
        min-width: 100%;
    }
}


/* How It Works Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    z-index: 2;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 25px;
    right: 0;
    width: 50%;
    height: 2px;
    background: var(--secondary);
    z-index: -2;
}

.step:not(:first-child):before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--secondary);
    z-index: -2;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to right, var(--primary), var(--primary));
    color: white;
}

.testimonials h2 {
    color: white;
    border-bottom: 2px solid var(--secondary);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(245, 243, 243, 0.318);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-name p  {
    color: #fff;
}


.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}
.section-title p {
    color: #6e9479;
}

.section-title p {
    color: #6e9479;
}











.active-page {
    display: block;
} 

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .process-steps {
        flex-direction: column;
    }
    .step:not(:last-child):after,
    .step:not(:first-child):before {
        display: none;
    }
}



