/* New Service Cards */
.serviceCards_ui123 {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.serviceCards_ui123 .service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary);
}

.serviceCards_ui123 .service-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    background-color: rgba(42, 101, 156, 0.589);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
}

.serviceCards_ui123 .service-card .serviceJi009 {
    position: relative;
    z-index: 9;
}

.serviceCards_ui123 .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(58, 134, 255, 0.15);
}

.serviceCards_ui123 .service-icon {
    width: 90px;
    height: 90px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(58, 134, 255, 0.2);
}

.serviceCards_ui123 .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary));
}

.serviceCards_ui123 .service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.serviceCards_ui123 .service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* New Service Cards */