/* ================= SERVICES ================= */
.services {
    /* margin-top: 40px; */
    max-width:1200px;
    margin:20px auto 0;
    padding:0 20px;
}


/* ================= SECTION HEADER ================= */

.section-heading{
    max-width:720px;
    margin:0 auto 50px;
    text-align:center;
}

.section-label{
    display:inline-flex;
    align-items:center;
    gap:12px;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#E60012;
}

.section-label::before,
.section-label::after{
    content:"";
    width:48px;
    height:2px;
    background:#E60012;
    opacity:.25;
}

.section-heading h2{
    margin:14px 0 16px;
    font-size:42px;
    font-weight:700;
    color:#1f2937;
}

.section-description{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
}

/* ========================================
   GRID
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ========================================
   CARD
======================================== */
.service-card {
    background: #ffffff;
    text-align: left;
    position:relative;
    border-radius:16px;
    padding:25px;
    min-height:210px;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
    display:flex;
    flex-direction:column;
    cursor:pointer;
    text-decoration: none;
    color: inherit;
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.service-card h3 {
    margin: 10px 0 6px;
    font-weight: 600;
    font-weight:700;
    color:#1f2937;
    font-size:20px;
    line-height:1.4;
    margin-bottom:14px;
}

.service-card p {
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

.service-card:hover,
.service-card:focus,
.service-card:visited{
    text-decoration:none;
    color:inherit;
}

.service-card:active{
    transform:translateY(-4px);
}

.service-card:focus-visible{
    outline:3px solid #E60012;
    outline-offset:4px;
}

/* ========================================
   ICON
======================================== */
.service-icon{
    width:74px;
    height:74px;
    border-radius:50%;
    background:#FFF1F2;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:18px;
    transition:
        background .25s ease,
        transform .25s ease;
}

.service-icon i{
    color:#E60012;
    font-size:34px;
    transition:
        color .25s ease,
        transform .25s ease;
}



/* ========================================
   ARROW
======================================== */
.service-arrow{
    margin-top:auto;
    margin-left:auto;
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid #ffd9dc;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#E60012;
    text-decoration:none;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}

.service-arrow i{
    font-size:15px;
    text-decoration: none;
}

.service-arrow:hover,
.service-arrow:focus,
.service-arrow:active,
.service-arrow:visited{
    text-decoration:none;
    color:#E60012;
}

/* ========================================
   HOVER
======================================== */
.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 42px rgba(0,0,0,.12);
}

.service-card:hover .service-icon{
    background:#E60012;
}

.service-card:hover .service-icon i{
    color:#fff;
    transform:scale(1.08);
}

.service-card:hover .service-arrow{
    background:#E60012;
    border-color:#E60012;
}

.service-card:hover .service-arrow i{
    color:#fff;
    transform:translateX(2px);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width:1199px){

}

@media (max-width:991px){

}

@media (max-width:767px){

}

@media (max-width:575px){

}