/*
.bs-icon img {
  transform: scale(0.9);
  transition: transform 0.4s ease;
}


.text-center:hover .bs-icon img,
.text-center a:hover ~ .bs-icon img {
  transform: scale(1.2);
}
*/

.project-card {
    border: 1px solid #ccc;
    border-radius: 12px;
    background: linear-gradient(to bottom, #d9d9d9 0%, #f5f5f5 100%);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.image-box {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.image-box img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.4s ease;
}

.project-card:hover .image-box img {
    transform: scale(1.15);
}

.card-title {
    font-family: 'Annie Use Your Telescope', serif;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    margin: 0;
}


