/* Blue Theme What to Expect Section - Matching How We Help You */

.expect-card-blue {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.expect-card-blue.active {
    border-top: 3px solid #0d6efd;
}

.expect-card-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}

.expect-number-blue {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

.expect-icon-blue {
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.expect-icon-blue i {
    font-size: 2rem;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.expect-card-blue:hover .expect-icon-blue {
    background: #0d6efd;
    transform: scale(1.05);
}

.expect-card-blue:hover .expect-icon-blue i {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .expect-card-blue {
        padding: 1.75rem 1.25rem;
    }

    .expect-icon-blue {
        width: 70px;
        height: 70px;
    }

    .expect-icon-blue i {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .expect-card-blue {
        margin-bottom: 1rem;
    }
}