/* Projects Section */
.projects-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    text-align: center;
}

.projects-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.projects-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Project Cards Layout */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.project-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.project-card p {
    font-size: 1rem;
    color: #666;
    padding: 0 1rem 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-section {
        padding: 1rem;
    }

    .project-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}
