.services-hero {

    background:
    linear-gradient(
        135deg,
        #061229,
        #10294D
    );

    color: white;

    padding: 100px 0;

}

.service-card {

    background: white;

    border-radius: 18px;

    padding: 30px;

    transition: 0.3s;

    height: 100%;

}

.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);

}

.service-icon {

    font-size: 48px;

    color: var(--primary-orange);

}