/* ===============================
   Segments We Serve
================================== */

.segments-section{
    padding:80px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:48px;
    font-weight:700;
    color:#0d2b63;
}

.segments-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.segment-card{
    background:#f4f9ff;
    border-radius:12px;
    height:170px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.3s;
    cursor:pointer;
}

.segment-card i{
    font-size:48px;
    color:#1380d4;
    margin-bottom:20px;
}

.segment-card h3{
    font-size:22px;
    font-weight:600;
    color:#111;
    text-align:center;
}

.segment-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
    background:#1380d4;
}

.segment-card:hover i,
.segment-card:hover h3{
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

    .segments-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:38px;
    }

}

/* Mobile */

@media(max-width:576px){

    .segments-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

    .segment-card{
        height:150px;
    }

    .segment-card h3{
        font-size:20px;
    }

}