/* ===== AGRICULTURE PROJECTS ===== */

.agriculture-projects {
    padding: 80px 0;
    background: #f9f9f9;
}

.agriculture-projects .section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: #1b4332;
}

.agriculture-projects .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1b4332;
}

.project-content p {
    font-size: 1rem;
    color: #555;
}

.project-status {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 25px;
    margin-bottom: 10px;
}

.project-status.under-construction {
    background: #f0ad4e;
    color: #fff;
}

.project-status.completed {
    background: #28a745;
    color: #fff;
}

.project-status.pending {
    background: #6c757d;
    color: #fff;
}

/*D/n*/

html.dark-mode {
    background-color: #050807 !important;
}

html.dark-mode body {
    background-color: #050807 !important;
    color: #ffffff !important;
}