/* =========================================
   GOVT SECTION START
========================================= */

.govt-section{
    padding:100px 0;
    background:#f8fbff;
}

/* =========================================
   HEADING
========================================= */

.govt-heading{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.govt-heading span{
    display:inline-block;
    background:#e6f0ff;
    color:#0d5bff;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.govt-heading h2{
    font-size:56px;
    font-weight:600;
    color:#002147;
    line-height:1.2;
    margin-bottom:20px;
}

.govt-heading p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    max-width:700px;
    margin:auto;
}

/* =========================================
   GRID
========================================= */

.govt-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

/* =========================================
   CARD
========================================= */

.govt-card{
    background:#ffffff;
    height:240px;
    padding:30px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.govt-card:hover{
    transform:translateY(-8px);
}

.govt-card img{
    width:100%;
    height:90px;
    object-fit:contain;
    display:block;
    margin:0 auto 25px;
}

.govt-card h4{
    font-size:18px;
    font-weight:700;
    color:#002147;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .govt-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .govt-heading h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .govt-section{
        padding:80px 0;
    }

    .govt-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .govt-heading h2{
        font-size:32px;
    }

    .govt-heading p{
        font-size:16px;
    }

    .govt-card{
        height:auto;
        min-height:220px;
    }

}

/* =========================================
   GOVT SECTION END
========================================= */