﻿/* --------------- Projects Section --------------- */
.projects-section {
    padding: 4rem 1rem;
    background-color: #ffffff;
    text-align: center;
}

.projects-container {
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #003b5c;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .project-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .project-card h3 {
        font-size: 1.2rem;
        color: #003b5c;
        margin: 1rem;
    }

    .project-card p {
        font-size: 0.95rem;
        color: #444;
        margin: 0 1rem 1.5rem;
        line-height: 1.5;
    }
