/* ============================================================================
   Icons Enhanced CSS
   Enhanced icon styling for better visual appeal
   ============================================================================ */

/* Service Preview Icons */
.service-preview-icon {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 92, 154, 0.2);
}

.service-preview-card:hover .service-preview-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(46, 92, 154, 0.3);
}

/* Trust Icons */
.trust-icon {
    transition: all 0.4s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.15) rotate(360deg);
}

/* Step Numbers */
.step-number {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 92, 154, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 92, 154, 0.4);
}

/* Why Us Numbers */
.why-us-number {
    transition: all 0.3s ease;
}

.why-us-card:hover .why-us-number {
    transform: scale(1.15) rotate(10deg);
}
