.why-choose{
    padding:90px 5%;
    background:#f8f9fc;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:60px;
}

.badge{
    display:inline-block;
    background:#fff1e8;
    color:#ff6b00;
    padding:10px 24px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-header h2{
    font-size:40px;
    font-weight:700;
    color:#121d3a;
    margin-bottom:15px;
    font-family:Georgia, serif;
}

.section-header p{
    font-size:18px;
    color:#555;
    line-height:1.7;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    text-align:center;
    padding-bottom:35px;
    border:1px solid #e6e6e6;
    transition:0.4s ease;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(255,106,0,0.18);
}

.feature-card img{
    width:100%;
    height:150px;
    object-fit:cover;
    display:block;
}

.icon-box{
    width:40px;
    height:40px;
    margin:22px auto;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
}

.blue{
    background:#e8f2ff;
    color:#2563eb;
}

.purple{
    background:#f3e8ff;
    color:#7c3aed;
}

.orange{
    background:#fff2df;
    color:#ff6b00;
}

.green1{
    background:#eaf8ea;
    color:#2e7d32;
}

.feature-card h3{
    font-size:18px;
    color:#121d3a;
    margin-bottom:18px;
    font-family:Georgia, serif;
    padding:0 20px;
}

.feature-card p{
    font-size:16px;
    color:#555;
    line-height:1.7;
    padding:0 25px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    row-gap:45px;
}

/* Responsive */

@media(max-width:1200px){
    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .features-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:38px;
    }

    .feature-card h3{
        font-size:26px;
    }

    .feature-card p{
        font-size:18px;
    }
}