/* Current Projects Section */
.current-projects {
    padding: 40px 20px;
    background-color: #f4f4f4; /* Light background color */
}

.current-projects h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #00b33c; /* Consistent green color */
    text-align: center;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between project cards */
    justify-content: center;
}

.project-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 550px;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.project-details p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 10px;
    overflow: hidden;
}

.progress {
    background-color: #00b33c; /* Green color for progress */
    height: 100%;
    transition: width 0.3s;
}

.progress-text {
    font-size: 14px;
    color: #333;
    text-align: right;
}

@media (max-width: 768px) {

    .current-projects h2{
        font-size: 32px;
    }

    .project-details h3 {
        font-size: 20px;
    }

    .project-details p {
        font-size: 14px;
    }

    .progress-text {
        font-size: 12px;
    }

}