/* Service Card Hover Fix - Remove Icon Flip, Add Card Hover */

.service-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    border-color: rgba(108, 117, 125, 0.3) !important;
}

.service-card:hover::before {
    opacity: 1 !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #6c757d 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) !important;
    background: linear-gradient(135deg, #495057 0%, #343a40 100%) !important;
    /* REMOVED: rotateY(180deg) - No more icon flip */
}

/* Enhanced card hover effect */
.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 20px !important;
    padding: 40px 30px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    transform-style: preserve-3d !important;
    position: relative !important;
}

.service-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%) !important;
    border-radius: 20px !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}
