/* Services Detail Cards Styles */

.service-card {
    transition: var(--transition-slow);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md) !important;
}

.service-icon-badge {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
    background: var(--primary-gradient);
    color: #ffffff;
}

.service-card .card-body {
    padding-top: 35px !important;
}

/* Premium Text-Focused Service Cards styling */
.service-detail-card {
    border-top: 4px solid var(--primary) !important;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 82, 186, 0.12) !important;
}

.service-icon-box {
    min-width: 50px;
    width: 50px;
    height: 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.service-detail-card:hover .service-icon-box {
    transform: scale(1.1);
    background-color: var(--primary) !important;
    color: #ffffff !important;
}

.w-48 {
    width: 48%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 50px;
}