.service-card{
    transition:.3s;
    border-radius:20px;
}

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

.service-image{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:15px;
}

.service-sidebar{
    background:#f8fafc;
    padding:20px;
    border-radius:20px;
    position:sticky;
    top:100px;
}

.sidebar-title{
    font-weight:800;
    margin-bottom:20px;
    color:#0B1F3A;
}

.sidebar-item{
    display:block;
    padding:12px;
    border-radius:15px;
    margin-bottom:12px;
    text-decoration:none;
    transition:.3s;
    background:#fff;
    border:1px solid #eee;
}

.sidebar-item:hover{
    transform:translateX(5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.sidebar-item.active{
    border:2px solid #D4A017;
    background:#fffdf5;
}

.sidebar-img{
    width:50px;
    height:50px;
    border-radius:12px;
    object-fit:cover;
}