/* ===================================================
   SERVICE CARD ICON STYLING
   Color: #e52e2d
   =================================================== */

.box-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 46, 45, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.box-icon i {
    font-size: 24px;
    color: #e52e2d;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Hover effect - card hover pe icon bhi highlight ho */
.service-card:hover .box-icon {
    background: #e52e2d;
    transform: scale(1.05);
}

.service-card:hover .box-icon i {
    color: #ffffff;
    transform: rotate(8deg);
}