.projects {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-info h3 {
    color: #222;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.project-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}