/*
      OUR SWOT ANALYSIS PROCESS
 */

.swot-process-section{

    position:relative;

    overflow:hidden;

    padding:140px 0 100px;

    background:#041021;

}

/*
      Unique Background
*/

.process-radar{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:900px;

    height:900px;

    border-radius:50%;

    background:

    repeating-radial-gradient(

    circle,

    rgba(255,255,255,.03) 0,

    rgba(255,255,255,.03) 1px,

    transparent 1px,

    transparent 90px

    );

    opacity:.6;

    pointer-events:none;

}

.process-conic{

    position:absolute;

    top:50%;

    left:50%;

    width:1100px;

    height:1100px;

    transform:translate(-50%,-50%);

    background:conic-gradient(

    from 0deg,

    rgba(65,101,183,.10),

    transparent 25%,

    rgba(228,77,38,.10),

    transparent 50%,

    rgba(143,221,223,.08),

    transparent 75%,

    rgba(65,101,183,.10)

    );

    border-radius:50%;

    filter:blur(60px);

    animation:processConicSpin 40s linear infinite;

    pointer-events:none;

}

@keyframes processConicSpin{

from{

transform:translate(-50%,-50%) rotate(0deg);

}

to{

transform:translate(-50%,-50%) rotate(360deg);

}

}

.process-container{

    max-width:1280px;

    margin:auto;

    padding:0 24px;

    position:relative;

    z-index:2;

}

/* ==========================
        Heading
========================== */

.process-heading{

    max-width:760px;

    margin:0 auto 100px;

    text-align:center;

}

.process-heading h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin-top:18px;

    line-height:1.2;

}

.process-heading p{

    color:#CBD5E1;

    margin-top:24px;

    line-height:1.9;

    font-size:17px;

}

/* ==========================
      Arch Layout (Desktop)
========================== */

.process-arch{

    position:relative;

    height:420px;

}

.process-connector{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    overflow:visible;

}

.process-connector path{

    fill:none;

    stroke:rgba(255,255,255,.15);

    stroke-width:2;

    stroke-dasharray:10 10;

}

.process-step{

    position:absolute;

    width:200px;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    transform:translate(-50%,-50%);

}

.step-1{ left:4%;  top:82%; }
.step-2{ left:27%; top:32%; }
.step-3{ left:50%; top:6%;  }
.step-4{ left:73%; top:32%; }
.step-5{ left:96%; top:82%; }

.step-node{

    width:78px;

    height:78px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    border:2px solid var(--step-color);

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(14px);

    box-shadow:0 0 24px rgba(var(--step-color-rgb),.35);

    transition:.4s ease;

}

.step-node i{

    font-size:28px;

    color:var(--step-color);

}

.process-step:hover .step-node{

    transform:scale(1.08);

    box-shadow:0 0 34px rgba(var(--step-color-rgb),.55);

}

.step-number{

    margin-top:16px;

    color:var(--step-color);

    font-weight:800;

    font-size:14px;

    letter-spacing:2px;

}

.process-step h4{

    margin-top:8px;

    color:#fff;

    font-size:19px;

    font-weight:700;

}

.process-step p{

    margin-top:10px;

    color:#94A3B8;

    font-size:13.5px;

    line-height:1.7;

}

/* ==========================
      Tablet
========================== */

@media(max-width:1024px){

.swot-process-section{

    padding:100px 0 80px;

}

.process-heading h2{

    font-size:48px;

}

.process-heading{

    margin-bottom:70px;

}

.process-connector{

    display:none;

}

.process-arch{

    height:auto;

    display:flex;

    flex-direction:column;

    gap:40px;

}

.process-step{

    position:relative;

    left:auto !important;

    top:auto !important;

    transform:none;

    width:100%;

    flex-direction:row;

    text-align:left;

    align-items:flex-start;

    gap:22px;

    padding-left:20px;

    border-left:2px dashed rgba(255,255,255,.12);

}

.step-node{

    flex-shrink:0;

}

.process-step > div:not(.step-node),
.process-step h4,
.process-step p,
.process-step .step-number{

    text-align:left;

}

}

/* ==========================
      Mobile
========================== */

@media(max-width:768px){

.swot-process-section{

    padding:80px 0 60px;

}

.process-heading h2{

    font-size:24px;

}

.process-heading p{

    font-size:15px;

}




.process-radar{

    width:600px;

    height:600px;

}

.process-conic{

    width:700px;

    height:700px;

}

.process-arch{

    gap:32px;

}

.process-step{

    gap:16px;

    padding-left:16px;

}

.step-node{

    width:60px;

    height:60px;

}

.step-node i{

    font-size:22px;

}

.process-step h4{

    font-size:17px;

}

.process-step p{

    font-size:13px;

}

}