.perfect-solutions {
    background: #f9fbff;
}

.perfect-solutions h1 {
    color: #0b3d91;
}

.underline {
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, #0b3d91, #00c6ff);
    border-radius: 2px;
}

.perfect-solutions p.lead {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Service Card */
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px 25px 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e6e9f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Number Circle */
.service-card .service-number {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0b3d91, #00c6ff);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    position: relative;
}

.service-card h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #00c6ff;
    margin-top: 6px;
    transition: width 0.3s ease;
}

.service-card:hover h5::after {
    width: 70px;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.service-card ul li {
    font-size: 0.95rem;
    margin-bottom: 7px;
    padding-left: 1.4rem;
    position: relative;
    color: #444;
}

.service-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #00c6ff;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .perfect-solutions h1 {
        font-size: 1.8rem;
    }
    .service-card {
        padding: 30px 20px;
    }
}
.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 45px 25px 25px 25px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #e6e9f0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.service-card .service-number {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #0b3d91, #00c6ff);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
