.ms-features{

padding:90px 0;

background:#f8fbff;

}

.section-heading{

text-align:center;

max-width:760px;

margin:auto auto 60px;

}

.section-heading .subtitle{

display:inline-block;

padding:8px 18px;

background:#0d6efd;

color:#fff;

border-radius:40px;

font-size:13px;

font-weight:600;

letter-spacing:2px;

margin-bottom:20px;

}

.section-heading h2{

font-size:42px;

margin-bottom:15px;

color:#222;

}

.section-heading p{

color:#666;

font-size:17px;

line-height:1.7;

}

.feature-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.feature-card{

background:#fff;

border-radius:20px;

padding:40px 30px;

transition:.35s;

position:relative;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.feature-card::before{

content:"";

position:absolute;

left:0;

top:0;

height:5px;

width:100%;

background:linear-gradient(90deg,#0d6efd,#00c6ff);

}

.feature-card:hover{

transform:translateY(-12px);

box-shadow:0 30px 60px rgba(0,0,0,.15);

}

.feature-icon{

width:72px;

height:72px;

border-radius:18px;

display:flex;

align-items:center;

justify-content:center;

background:#eef5ff;

margin-bottom:25px;

}

.feature-icon img{

width:40px;

height:40px;

}

.feature-body h3{

font-size:22px;

margin-bottom:12px;

}

.feature-body p{

color:#666;

line-height:1.7;

margin-bottom:22px;

}

.feature-counter{

font-size:34px;

font-weight:700;

color:#0d6efd;

}

@media(max-width:992px){

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:640px){

.feature-grid{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:32px;

}

}