/* ===== OUR SERVICES ===== */

.services{
    padding:110px 0;
    background:#F8FAFC;
}

/* OUR SERVICES */

.section-tag{
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    color: #006780;
    text-align: center;
    margin-bottom: 20px;
}

.services h2{
    max-width: 929px;
    margin: 0 auto 24px;
    text-align: center;

    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.4px;
    color: #111111;
}

.section-desc{
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;

    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #667085;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.service-card{
    height: 314px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #E4E7EC;
    background: #FFFFFF;
}

.service-card.active{
    background: #F4F7FF;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:28px;
}

.service-icon{
    width:42px;
    height:42px;
    object-fit:contain;
}

.arrow-icon{
    width:38px;
    height:38px;
    border:1px solid #CBD5E1;
    border-radius:50%;
    padding:10px;
}

.service-card h3{
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 600;
    line-height: 33.6px;
    color: #111111;
    margin: 22px 0 14px;
}

.service-card p{
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #667085;
}

/* Responsive */
@media(max-width:1100px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .services h2{
        font-size:36px;
        line-height:46px;
    }
}