/* ==========================================================
   SERVICES SECTION
========================================================== */

.services{

    padding:100px 0;

    background:#ffffff;

}

/* ==========================
   SECTION HEADING
========================== */

.section-heading{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.section-badge{

    display:inline-block;

    padding:8px 18px;

    background:#EAF8F0;

    color:#00A651;

    font-size:14px;

    font-weight:700;

    border-radius:30px;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-heading h2{

    font-size:46px;

    font-weight:800;

    line-height:1.2;

    color:#222;

    margin-bottom:18px;

}

.section-heading p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

/* ==========================
   GRID
========================== */

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================
   CARD
========================== */

.service-card{

    background:#fff;

    border:1px solid #eeeeee;

    border-radius:18px;

    padding:35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    border-color:#00A651;

}

/* ==========================
   ICON
========================== */

.service-icon{

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    border-radius:16px;

    background:#F2FBF5;

    margin-bottom:25px;

}

/* ==========================
   TITLE
========================== */

.service-card h3{

    font-size:24px;

    font-weight:700;

    color:#222;

    margin-bottom:18px;

}

/* ==========================
   DESCRIPTION
========================== */

.service-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:28px;

}

/* ==========================
   LINK
========================== */

.read-more{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:700;

    color:#00A651;

    transition:.3s;

}

.read-more:hover{

    gap:14px;

}