/* About Us Section with 4 Photo Cards */
.about-photos-modern {
    background: linear-gradient(to bottom, #f8f9fa, white);
    padding: 100px 0;
}

.about-photo-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    min-height: 280px;
}

.about-photo-card-large {
    min-height: 575px;
}


.about-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-photo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 106, 58, 0.1), rgba(22, 82, 45, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-photo-card:hover::after {
    opacity: 1;
}

.about-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(31, 106, 58, 0.3);
}

.about-photo-card:hover img {
    transform: scale(1.1);
}

.about-content-modern {
    padding-left: 2rem;
}

.about-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #1F6A3A, #7BC043);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(31, 106, 58, 0.3);
}

.about-content-modern h2 {
    color: #16522D;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-item i {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1F6A3A, #7BC043);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
}

.about-feature-item span {
    font-weight: 600;
    color: #2c3e50;
}

.about-counters-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.2rem 0 1.8rem;
}

.about-counter-card {
    background: #ffffff;
    border: 1px solid rgba(31, 106, 58, 0.15);
    border-top: 4px solid #C9A227;
    border-radius: 14px;
    padding: 1rem 0.9rem;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.about-counter-card h3 {
    margin: 0 0 0.25rem;
    color: #1F6A3A;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
}

.about-counter-card p {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
}

@media (max-width: 768px) {
    .about-photo-card-large {
        min-height: 320px;
    }

    .about-content-modern {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .about-content-modern h2 {
        font-size: 2rem;
    }

    .about-counters-grid {
        grid-template-columns: 1fr 1fr;
    }
}
