/* hero section */
.hero-section {
    background-color: #1d5b1d;
    color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; 
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 20px;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}


.hero-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    padding: 20px;
}

.hero-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


/* Steps Section */
.info-section {
    text-align: center;
    padding: 40px;
    margin-top: 60px;
}

.info-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0D0D0D;
}

.info-description {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.info-description a {
    color: #1d5b1d;
    text-decoration: underline;
}

.steps-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 40px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: #5aba4a;
    z-index: 1;
}

.step-box {
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    background-color: #1d5b1d; 
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    z-index: 3;
}

.step-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
    margin-top: 15px;
}

.step-box p {
    font-size: 1rem;
    color: #000;
}


/* Projects Section*/

.projects-section {
    padding: 40px;
}

.projects-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.project-item {

    margin: 15px;
    width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-15px);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 15px;
}

.project-content h3 {
    font-size: 1.5rem;
    color: #1d5b1d;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.project-content a {
    text-decoration: none;
    color: #1d5b1d;
    font-weight: bold;
}