.hero-gradient{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top right,#dbeafe 0%,transparent 35%),
    radial-gradient(circle at bottom left,#eef4ff 0%,transparent 45%);
}

.hero-dashboard{
    background:#fff;
    padding:18px;
    border-radius:28px;
    position:relative;
    z-index:2;
}

.hero-circle{
    width:420px;
    height:420px;
    background:#3b82f630;
    filter:blur(80px);
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.hero-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:18px 22px;
    z-index:3;
}

.hero-card-1{
    left:-40px;
    top:70px;
}

.hero-card-2{
    right:-35px;
    bottom:50px;
}

@media(max-width:991px){

.hero-card{
    display:none;
}

.hero-circle{
    width:250px;
    height:250px;
}

}
.feature-box{

    background:#fff;
    border-radius:22px;
    padding:35px;
    transition:.35s;
    border:1px solid #edf2f7;

}

.feature-box:hover{

    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.feature-icon{

    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#edf4ff;
    color:#2563eb;
    font-size:30px;
    margin-bottom:25px;

}

.feature-box h5{

    font-weight:700;
    margin-bottom:15px;

}

.feature-box p{

    color:#6b7280;
    margin-bottom:0;

}

.dashboard-wrapper{
    background:#f8fafc;
    border-radius:28px;
    padding:20px;
    border:1px solid #edf2f7;
}

.panel-item{
    background:#fff;
    padding:14px 18px;
    border-radius:14px;
    font-weight:600;
    border:1px solid #eef2f7;
    transition:.3s;
}

.panel-item:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

