/* شبکه نمایش پروژه‌ها */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.project-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.project-card .card-image {
    height: 200px;
    overflow: hidden;
}

.project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .card-image img {
    transform: scale(1.1);
}

.project-card .card-content {
    padding: 20px;
    text-align: center;
}

.project-card h3 {
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: #2c3e50;
}

.read-more {
    display: inline-block;
    color: #e67e22;
    font-weight: bold;
    font-size: 0.9rem;
}
