/*==================================
      OUR INFRASTRUCTURE
==================================*/

.infrastructure-section{
    padding:70px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
    color:#0b3d91;
    text-transform:uppercase;
}

.infra-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.infra-card{
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.3s;
}

.infra-card:hover{
    transform:translateY(-6px);
}

.infra-card img{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

.infra-name{
    background:#0056b3;
    color:#fff;
    text-align:center;
    padding:14px;
    font-size:17px;
    font-weight:600;
}

/* Tablet */

@media(max-width:992px){

.infra-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:576px){

.infra-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:26px;
}

.infra-card img{
height:220px;
}

}