/* Projects Page Specific Styles */

.projects-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 70%, transparent 100%), 
                url('/deeq.org.001/assets/images/field001.jpeg') center/cover no-repeat;
    color: white;
    text-align: center;
}

.projects-hero-content {
    max-width: 800px;
    z-index: 2;
}

.projects-hero-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #12961C;
}

.projects-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.projects-hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(18, 150, 28, 0.15);
}

.project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f0f0f0;
}

.project-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-program {
    display: inline-block;
    background: #12961C;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    width: fit-content;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-location i {
    color: #12961C;
}

.project-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.project-stats {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: auto;
    font-size: 0.85rem;
}

.project-stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-weight: 700;
    color: #12961C;
    font-size: 1.3rem;
}

.stat-label {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.project-footer {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.btn-support {
    flex: 1;
    padding: 0.7rem;
    background: #12961C;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-support:hover {
    background: #0d6b15;
    transform: scale(1.02);
}

.btn-contact {
    flex: 1;
    padding: 0.7rem;
    background: transparent;
    color: #12961C;
    border: 2px solid #12961C;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-contact:hover {
    background: #12961C;
    color: white;
}

.projects-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.projects-section-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: #12961C;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-footer {
        flex-direction: column;
    }
}
