.project-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003865;
    margin-bottom: 10px;
}

.project-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.project-card .tag {
    background-color: #cce7f1;
    color: #007ab0;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
}
