/* 
==============================================
CARD VISIBILITY FIXES FOR ALBERT KWAME TCHALLA PORTFOLIO
==============================================
*/

/* Fix for service card titles - ensure they're visible */
.service-card h3 {
    color: var(--dark-color);
    font-weight: 600;
}

/* Make Learn More links always visible (not just on hover) */
.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

/* Keep the hover effect for the arrow icon */
.service-card .learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-card .learn-more:hover i {
    transform: translateX(5px);
}
