/* support Card Css */
.support-section{
    padding:90px 0;
}
.support-heading{
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.support-card {
    background-color: #e6eaf3;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 40px;
    transition: 0.3s;
    text-align: center;
    height: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
}

.support-card p{
    font-size:14px;
    color:#000;
    line-height: 1.5;
    font-family: 400;
}

.support-arrow-btn{
    width:45px;
    height: 45px;
    border-radius:50%;
    background: #eef4ff;
    color: #002964;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.support-arrow-btn:hover{
    background:#002964;
    color:#fff;
}