/* ============================
   PROJECTS HERO
============================ */
.projects-hero {
    background: linear-gradient(rgba(11,102,35,0.80), rgba(11,102,35,0.80)), url("../images/project1.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.projects-hero-content {
    max-width: 900px;
    margin: auto;
}

.projects-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: white;
}

.projects-hero p {
    font-size: 22px;
    line-height: 1.7;
}

/* ============================
   PROJECT STATS
============================ */
.project-stats {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.project-stats .stat-card {
    background: white;
    padding: 35px 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.project-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.project-stats .stat-card h2 {
    color: #0b6623;
    font-size: 42px;
    margin-bottom: 10px;
}

.project-stats .stat-card p {
    font-size: 18px;
    font-weight: 600;
    color: #555;
}

/* ============================
   PROJECTS GRID
============================ */
.projects-container {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.project-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
}

.project-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0b6623;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    color: #0b6623;
    font-size: 22px;
    margin-bottom: 10px;
}

.project-location {
    color: #777;
    margin-bottom: 15px;
    font-size: 15px;
}

.project-description {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.project-result {
    background: #f3faf5;
    border-left: 4px solid #0b6623;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.project-result strong {
    color: #0b6623;
    font-size: 20px;
}

.project-btn {
    display: inline-block;
    background: #0b6623;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.project-btn:hover {
    background: #094d1a;
    transform: translateY(-2px);
}

/* ============================
   FEATURED PROJECT
============================ */
.featured-project {
    max-width: 1400px;
    margin: 100px auto;
   /* padding: 0 30px; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
	 background:white;
    border-radius:20px;
    padding:50px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-label {
    display: inline-block;
    background: #e8f5e9;
    color: #0b6623;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.featured-content h2 {
    color: #0b6623;
    font-size: 2.3rem;
    margin-bottom: 20px;
}

.featured-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    font-size: 18px;
}

.featured-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.featured-stats div {
    text-align: center;
}

.featured-stats strong {
    display: block;
    color: #0b6623;
    font-size: 2rem;
}

.featured-stats span {
    color: #666;
    font-size: 14px;
}

.featured-btn {
    display: inline-block;
    background: #0b6623;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.featured-btn:hover {
    background: #094d1a;
    transform: translateY(-2px);
}

/* ============================
   SUCCESS STORIES
============================ */
.success-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 30px;
}
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.success-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.success-card h3 {
    color: #0b6623;
    font-size: 22px;
    margin-bottom: 15px;
}

.success-card p {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

/* ============================
   RESPONSIVE - PROJECTS
============================ */
@media (max-width: 900px) {
    .projects-hero h1 {
        font-size: 36px;
    }

    .featured-project {
        grid-template-columns: 1fr;
    }

    .featured-image img {
        height: 350px;
    }

    .featured-stats {
        justify-content: space-between;
    }

    .projects-container {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width:768px){

    .featured-stats{
        flex-direction:column;
        gap:15px;
    }

    .project-stats{
        grid-template-columns:1fr 1fr;
    }

}