.service-detail-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
}
.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon-lg {
    width: 60px;
    height: 60px;
    background: #f0f4ff;
    color: #0056b3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border-radius: 12px;
    flex-shrink: 0;
}

.service-features li {
    margin-bottom: 6px;
    font-size: 0.9rem;
}


.process-step {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0056b3;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Optional: Connecting Lines for Desktop */
@media (min-width: 992px) {
    .process-step::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -35px;
        width: 35px;
        height: 2px;
        background: #ccc;
    }
    .col-lg-3:last-child .process-step::after {
        display: none;
    }
}

.service-cta {
    background: url('https://images.pexels.com/photos/3183171/pexels-photo-3183171.jpeg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.service-cta h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.service-cta p {
    color: #f1f1f1;
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: #0056b3;
    transform: translateY(-2px);
    transition: 0.3s ease-in-out;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #0056b3;
    transform: translateY(-2px);
    transition: 0.3s ease-in-out;
}
