.project-card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensures all cards have the same height */
}

.project-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-card .btn {
    margin-top: auto;
    /* Pushes button to the bottom */
}

.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.modal-content {
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}