/*Product Section Start*/
.Product-section{
  padding: 50px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #f0f9ff 100%);
}

.Product-section h2{
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin-bottom:40px;
    text-align: center;
    line-height: 1.3;
}

.Product-section .product-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:100%;
    border:1px solid #bfdbfe;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow:0 2px 5px rgba(0,0,0,.01);
    transition:.35s;
}

.Product-section .product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.Product-section .product-card .product-info img{
    width :150px;
    height:150px;
    object-fit:contain;
    border-radius: 4px;
    margin-bottom:15px;
}

.Product-section .product-card .product-info h5{
    color:#000;
    font-size:22px;
    font-weight: 600;
    margin-bottom:15px;
}


.Product-section .product-card .pro-btn a{
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    background: #002964;
    color: #fff;
    margin: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*Product Section End*/







