*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.infrastructure-main{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 40px 0;
}
.infrastructure-main .infrastructure-card{
    width: 350px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    margin-top: 60px;
}
.infrastructure-main .infrastructure-card .icon-infrastructure{
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    position: absolute;
    top: -20px;
    right: 20px;
    border-radius: 5px;
    z-index: 4;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content:center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: rgb(0, 149, 255);
}
.infrastructure-main .infrastructure-card .icon-infrastructure img{
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.infrastructure-main .infrastructure-card .infrastructure-top-bg{
    width: 100%;
    height: 170px;
    background: linear-gradient(135deg, #004289, #d5edff);
    position: relative;
    border-bottom-left-radius: 30px;
}

.infrastructure-main .infrastructure-card .infrastructure-top-bg .infrastructure-images {
    width: 287px;
    height: 191px;
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-position: center;
    border-radius: 17px 0 17px 0px;
    overflow: hidden;
}
.infrastructure-main .infrastructure-card .infrastructure-top-bg .infrastructure-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infrastructure-main .infrastructure-card .infrastructure-content{
    padding: 70px 20px 20px;
    text-align: right;
}
.infrastructure-main .infrastructure-card .infrastructure-content .infrastructure-heading-content{
    font-size: 25px;
    font-weight: 600;
    color: #014379;
}

.infrastructure-main .infrastructure-card .infrastructure-content .infrastructure-para-content{
    font-size: 16px;
    color: #5c5c5c;
    text-align: justify;
}
.infrastructure-main .infrastructure-card .infrastructure-content .infrastructure-btn{
    width: auto;
    height: auto;
    padding: 10px 20px;
    font-size: 15px;
    position: relative;
    border: none;
    outline: none;
    background-color: #014379;
    color: #ffffff;
}
.infrastructure-main .infrastructure-card .infrastructure-content .infrastructure-btn::before{
    width: 20px;
    height: 100%;
    position: absolute;
    content: '';
    background-color: #014379;
    transform: skewX(-20deg);
    top: 0;
    left: -10px;

}