.edv-how-it-works {
    padding: 20px 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.work-item {
    text-align: center;
    position: relative;
}

/* Connecting Dashed Line */
.work-item::after {
    content: "";
    position: absolute;
    top: 45px;
    left: calc(50% + 45px);   /* Circle ke right edge se start */
    width: calc(100% - 45px); /* Next item tak */
    border-top: 2px dashed #d8e3ef;
    z-index: 0;
}

.work-item:last-child::after {
    display: none;
}

/* Icon Circle */
.work-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e6eef7;
    font-size: 34px;
    color: #2e74c9;
    box-sizing: border-box;

    /* Yeh line ko hide karega */
    overflow: hidden;
}

/* White layer inside circle */
.work-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
}

.work-icon i,
.work-icon svg {
    position: relative;
    z-index: 3;
}

.step {
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0b66d8;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.work-item h3 {
    font-size: 18px;
    margin: 10px 0 0;
}

.work-item p {
    color: #666;
    margin-top: 10px;
}

/* Tablet */
@media (max-width: 768px) {

    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .work-item::after {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .works-grid {
        grid-template-columns: 1fr;
    }

    .work-item::after {
        display: none;
    }
}

.work-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Circle */
.work-icon{
    position:relative;
    z-index:5;
    width:90px;
    height:90px;
    margin:0 auto;
    border-radius:50%;
    background:#fff;
    border:2px solid #e6eef7;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#2e74c9;
}

/* Connector Line */
.work-item::after{
    content:"";
    position:absolute;
    top:45px;
    left:calc(50% + 45px);
    right:-15px;
    border-top:2px dashed #d8e3ef;
    z-index:1;
}

.work-item:last-child::after{
    display:none;
}