.service-icon {
    position: absolute;
    top: 25px;
    right: 25px; /* Top Right */
    left: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    background: #fff; /* Solid background */
    border: 1px solid #e0e0e0;
    border-radius: 4px; /* Stone Style */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color); /* Primary Color */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 3;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.service-btn-details i, .service-btn-whatsapp i {
    vertical-align: middle;
}
