/*==================================================
PROCESS SECTION
==================================================*/
.process-section{
    padding:80px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}
.process-section::before{
    content:"";
    position:absolute;
    width:380px;height:380px;
    right:-120px;top:-120px;
    background:rgba(95,213,208,.08);
    filter:blur(70px);
    border-radius:50%;
}
.process-section .container{position:relative;z-index:2;}

.workflow-wrapper{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    margin-top: 50px;
}
.workflow-line{
    position:absolute;
    top:38px;
    left:8%;
    right:8%;
    height:3px;
    background:linear-gradient(90deg,#0D0A63,#1E8BFF,#5FD5D0);
    border-radius:20px;
    z-index:0;
}
.workflow-item{
    position:relative;
    z-index:2;
    text-align:center;
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:22px;
    padding: 22px 14px;
    transition:.35s;
    box-shadow:0 12px 28px rgba(15,23,42,.05);
}
.workflow-item:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 50px rgba(15,23,42,.10);
    border-color:#d8e8ff;
}
.workflow-icon{
    width:64px;
    height:64px;
    margin:-8px auto 18px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0D0A63,#1E8BFF);
    color:#fff;
    font-size:26px;
    box-shadow:0 15px 35px rgba(30,139,255,.25);
}
.step-no{
    display:inline-block;
    padding:4px 12px;
    border-radius:30px;
    background:#eef6ff;
    color:#0D0A63;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:12px;
}
.workflow-item h5{
    font-size:1rem;
    color:#24324B;
    font-weight:700;
    margin-bottom:10px;
}
.workflow-item p{
    color:#64748B;
    line-height:1.6;
    font-size:.85rem;
    margin:0;
}

/* Technologies */
.technology-wrapper{
    border-top:1px solid #edf2f7;
    padding-top:55px;
}
.technology-header{
    display:flex;
    justify-content:space-between;
    align-items:end;
    gap:40px;
    margin-bottom:35px;
}
.tech-badge{
    display:inline-block;
    padding:8px 16px;
    border-radius:30px;
    background:#eef6ff;
    color:#0D0A63;
    font-size:.8rem;
    font-weight:700;
    margin-bottom:12px;
}
.technology-header h3{
    margin:0;
    color:#24324B;
    font-size:2rem;
    font-weight:700;
}
.technology-header p{
    max-width:520px;
    color:#64748B;
    margin:0;
    line-height:1.8;
}
.technology-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}
.technology-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 20px;
    border-radius:18px;
    background:#F8FAFC;
    border:1px solid #eef2f7;
    transition:.3s;
}
.technology-item i{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#1E8BFF;
    font-size:22px;
    box-shadow:0 8px 20px rgba(15,23,42,.05);
}
.technology-item span{
    font-weight:600;
    color:#24324B;
}
.technology-item:hover{
    background:#fff;
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(15,23,42,.08);
}
.technology-item:hover i{
    background:linear-gradient(135deg,#0D0A63,#1E8BFF);
    color:#fff;
}

@media (max-width:1200px){
    .workflow-wrapper{grid-template-columns:repeat(3,1fr);}
    .workflow-line{display:none;}
}
@media (max-width:992px){
    .technology-header{
        flex-direction:column;
        align-items:flex-start;
    }
    .technology-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media (max-width:768px){
    .process-section{padding:60px 0;}
    .workflow-wrapper{
        grid-template-columns:1fr;
        gap:20px;
        margin:40px 0 50px;
    }
    .technology-grid{
        grid-template-columns:1fr;
    }
}
