.program-card-alt {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 85px; /* Légèrement réduit pour la grille de 5 */
    height: 85px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.icon-circle i {
    font-size: 35px;
    color: #1a1a54;
}

.program-card-alt h5 {
    font-weight: 700;
    color: #1a1a54;
    font-size: 1rem;
    margin: 0;
}

/* Hover effect */
.program-card-alt:hover {
    border-color: var(--zilom-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
}

.program-card-alt:hover .icon-circle {
    background-color: var(--zilom-blue);
}

.program-card-alt:hover .icon-circle i {
    color: #ffffff;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--zilom-blue);
    margin-top: 10px;
}