.hover-card {
    position: relative;
    overflow: hidden;
    width: 300px;  /* اختياري حسب التصميم */
    height: 300px; /* خليها نفس العرض عشان تطلع دايرة */
    border-radius: 50%;
    margin: auto;
}

.hover-card .card-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: rgba(80, 109, 157, 0.8); 
    color: white;
    opacity: 1; 
    text-align: center;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.hover-card:hover .card-img {
    transform: scale(1.1);
}
