/*=========================================================
HOME PROCESS SECTION
=========================================================*/

.process-section{

padding:90px 0;

background:#ffffff;

overflow:hidden;

}


/*=========================================================
SECTION TITLE
=========================================================*/

.process-section .section-title{

text-align:center;

margin-bottom:60px;

}

.process-section .section-title span{

display:inline-block;

padding:8px 22px;

background:#E56A08;

color:#eaf4ff   ;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:15px;

}

.process-section .section-title h2{

font-size:42px;

font-weight:700;

color:#003366;

margin-bottom:18px;

}

.process-section .section-title p{

max-width:700px;

margin:auto;

font-size:16px;

line-height:30px;

color:#666;

}


/*=========================================================
GRID
=========================================================*/

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

}


/*=========================================================
CARD
=========================================================*/

.process-card{

position:relative;

background:#fff;

padding:40px 30px;

border-radius:22px;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,.08);

transition:.35s;

overflow:hidden;

z-index:2;

}

.process-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}


/*=========================================================
TOP BORDER
=========================================================*/

.process-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#0056b3;

transform:scaleX(0);

transition:.35s;

}

.process-card:hover::before{

transform:scaleX(1);

}


/*=========================================================
STEP NUMBER
=========================================================*/

.process-number{

position:absolute;

top:18px;

right:20px;

font-size:45px;

font-weight:700;

color:rgba(0,86,179,.08);

line-height:1;

}


/*=========================================================
ICON
=========================================================*/

.process-icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:25px;

background:#E56A08;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

transition:.35s;

}

.process-card:hover .process-icon{

background:#003366;

transform:rotateY(180deg);

}


/*=========================================================
TEXT
=========================================================*/

.process-card h3{

font-size:24px;

font-weight:700;

color:#003366;

margin-bottom:15px;

}

.process-card p{

font-size:15px;

line-height:28px;

color:#666;

}


/*=========================================================
CONNECTOR LINE
=========================================================*/

.process-card:not(:last-child)::after{

content:"➜";

position:absolute;

top:50%;

right:-22px;

transform:translateY(-50%);

font-size:30px;

color:#0056b3;

z-index:5;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.process-card:nth-child(2)::after{

display:none;

}

}

@media(max-width:768px){

.process-section{

padding:70px 0;

}

.process-grid{

grid-template-columns:1fr;

gap:25px;

}

.process-section .section-title h2{

font-size:32px;

}

.process-card::after{

display:none;

}

.process-card{

padding:35px 25px;

}

.process-icon{

width:80px;

height:80px;

font-size:30px;

}

}

@media(max-width:480px){

.process-section{

padding:60px 0;

}

.process-section .section-title h2{

font-size:27px;

}

.process-section .section-title p{

font-size:15px;

line-height:26px;

}

.process-card{

padding:30px 20px;

}

.process-number{

font-size:34px;

}

.process-icon{

width:70px;

height:70px;

font-size:26px;

}

.process-card h3{

font-size:21px;

}

.process-card p{

font-size:14px;

line-height:24px;

}

}