/* =========================
   WHY CHOOSE US
========================= */

.why-section{

padding:100px 0;

background:
linear-gradient(
135deg,
#f8fafc,
#eff6ff
);

}

.why-card{

background:#fff;

padding:35px;

height:100%;

border-radius:24px;

text-align:center;

border:1px solid #e5e7eb;

transition:.35s ease;

box-shadow:
0 10px 30px rgba(0,0,0,.05);

}

.why-card:hover{

transform:translateY(-10px);

border-color:#2563eb;

box-shadow:
0 20px 50px rgba(37,99,235,.12);

}

.why-icon{

width:85px;
height:85px;

margin:auto;

display:flex;
align-items:center;
justify-content:center;

border-radius:22px;

background:
linear-gradient(
135deg,
#2563eb,
#60a5fa
);

color:#fff;

font-size:35px;

margin-bottom:25px;

}

.why-card h3{

font-size:22px;

font-weight:700;

margin-bottom:15px;

color:#0f172a;

}

.why-card p{

color:#64748b;

line-height:1.8;

margin:0;

}

@media(max-width:768px){

.why-section{

padding:70px 0;

}

.why-card{

padding:25px;

}

}