.service-process{
    padding:100px 0;
    background:#f8fafc;
}

.process-flow{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:20px;
    margin-top:60px;
    position:relative;
}

.process-flow::before{
    content:"";
    position:absolute;
    top:40px;
    left:7%;
    right:7%;
    height:2px;
    background:#dbe3ee;
}
.process-step{
    position:relative;
    text-align:center;
    z-index:2;
}
.process-step:not(:last-child)::after{
    content:"";
    position:absolute;
    top:35px;
    right:-14px;
    width:14px;
    height:14px;
    border-top:2px solid #94a3b8;
    border-right:2px solid #94a3b8;
    transform:rotate(45deg);
}
.process-icon{
    width:80px;
    height:80px;
    margin:0 auto 16px;
    border-radius:50%;
    background:#fff;
    border:1px solid #e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 6px 20px rgba(15,23,42,.08);
}

.process-icon svg{
    width:30px;
    height:30px;
    color:var(--sekin-orange);
}
.process-number{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:var(--sekin-primary);
}
.process-step h3{
    margin-bottom:3px;
    font-size:14px;
    line-height:1.4;
    font-weight:700;
}
.process-step p{
    margin:0;
    font-size:13px;
    line-height:1.4;
    text-align: justify;
    color:#64748b;
}
.service-process-footer{
    margin-top: 40px;
    text-align: center;
}
/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner-section {
    margin-bottom: 40px !important;
}
.cta-banner{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    min-height:280px;
    overflow:hidden;
    border-radius:20px;
    background:#071735 url('../images/cta-security-consulting.png') no-repeat;
    background-size: cover;
    background-position: 45% 35%;
    position:relative;
}
.cta-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(5,15,35,.95) 0%,
        rgba(5,15,35,.92) 40%,
        rgba(5,15,35,.55) 70%,
        rgba(5,15,35,0) 100%
    );
    z-index:1;
}
.cta-banner-content{
    position:relative;
    z-index:2;
    padding:48px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    color:#fff;
}
.cta-banner-tag{
    display:inline-block;
    margin-bottom:12px;
    color:var(--sekin-orange);
    font-size:13px;
    font-weight:600;
}
.cta-banner h2{
    margin-bottom:16px;
    color:#fff;
    font-size:24px;
    line-height:1.2;
    text-transform: uppercase;
}
.cta-banner p{
    max-width:520px;
    margin-bottom:16px;
    color:rgba(255,255,255,.85);
}
.cta-banner-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

@media(max-width:992px){

    .cta-banner{
        grid-template-columns:1fr;
    }

    .cta-banner-image{
        min-height:280px;
        order:-1;
    }

}