

.about_us_section{
    background-color: #FFFFFF;
}

.section-type {
    display: flex;
    align-items: start;
    font-weight: 200;
    font-size: 1.2em;
    justify-content: center;
    color: #b3d3cc;
}

.section-heading {
    display: flex;
    align-items: start;
    font-weight: 800;
    font-size: 4.2em;
    justify-content: center;
    color: #2c93b9;
    margin-bottom: 24px;
}

.section-sub-heading{
    font-size: 1.8em;
    line-height: 2.25rem;
    font-weight: 100 !important;
    font-family: 'Spline Sans', sans-serif;
    margin-bottom: 16px;
}

.section-sub-heading-2{
    font-size: 1.4em;
    line-height: 2.0rem;
    font-weight: 100;
    font-family: 'Spline Sans', sans-serif;
    margin-bottom: 16px;
}


.section-description{
    margin: 0 0 24px;
    font-size: 1em;
    line-height: 1.5rem;
    font-weight: 100;
    font-family: 'Spline Sans', sans-serif;
    text-align: center;
    color: #3F3F3F;
    justify-content: center;
}

.heading-mb{
    margin-bottom: 3em;
}

.heading-lighter{
    font-weight: 400;
}

.text-green{
    color: #2bb686 !important;
}


.stat-item {
    background: linear-gradient(135deg, #f9f9f9, #eaf3f9) !important;
    color: #2c3e50  !important;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #eaf3f9 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease  !important;
}



/** Securities **/
.securities-item {
    background: white;
    border-radius: 18px !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.securities-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.12), transparent 80%);
    transform: scale(0);
    transition: transform 0.5s ease;
    border-radius: 50%;
    z-index: 0;
}

.securities-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.securities-item:hover::before {
    transform: scale(1);
}

.securities-item * {
    position: relative;
    z-index: 1;
}









.service-area{
    background-image: url(../../images/custom/services/advisory-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 828px;
}


@media (max-width: 900px) {

    .section-type {
        margin-bottom: 0;
    }

    .section-heading {
        font-size: 2.2em;
    }
    .section-sub-heading-2{
        font-size: 1.4em;
        line-height: 1.6rem;
        font-weight: 100;
        font-family: 'Spline Sans', sans-serif;
        margin-bottom: 16px;
    }

}


@media (max-width: 600px) {

}