 /*==================================================
Aarohan Wealth
Home CSS
Trust Statistics Part 1
==================================================*/
/*==================================
Stats Section
==================================*/
.stats{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
    );
    }
    /*==================================
    Background Shapes
    ==================================*/
    .stats::before{
    content:"";
    position:absolute;
    top:-220px;
    left:-180px;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(18,60,115,.05),
    transparent 70%
    );
    }
    .stats::after{
    content:"";
    position:absolute;
    right:-180px;
    bottom:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(200,155,60,.08),
    transparent 70%
    );
    }
    /*==================================
    Wrapper
    ==================================*/
    .stats-wrapper{
    position:relative;
    z-index:2;
    background:#ffffff;
    border-radius:36px;
    padding:80px;
    overflow:hidden;
    border:1px solid rgba(18,60,115,.08);
    box-shadow:
    0 25px 80px rgba(15,23,42,.06);
    }
    /* Decorative Glow */
    .stats-wrapper::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-220px;
    right:-180px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(18,60,115,.05),
    transparent 70%
    );
    }
    .stats-wrapper::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-100px;
    bottom:-100px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(200,155,60,.08),
    transparent 70%
    );
    }
    /*==================================
    Content
    ==================================*/
    .stats-content{
    position:relative;
    z-index:2;
    }
    .stats-content .section-title{
    margin:22px 0;
    }
    .stats-content p{
    max-width:520px;
    margin-bottom:35px;
    color:var(--text-light);
    line-height:1.9;
    font-size:1.05rem;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Trust Statistics Part 2
==================================================*/
/*==================================
Stat Cards
==================================*/
.stat-card{
    position:relative;
    height:100%;
    padding:36px 32px;
    background:#ffffff;
    border-radius:24px;
    border:1px solid rgba(18,60,115,.08);
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:
    0 15px 40px rgba(15,23,42,.05);
    }
    /*==================================
    Top Accent
    ==================================*/
    .stat-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--gradient-primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
    }
    /*==================================
    Background Glow
    ==================================*/
    .stat-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    right:-90px;
    bottom:-90px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(18,60,115,.08),
    transparent 70%
    );
    opacity:0;
    transition:.4s ease;
    }
    /*==================================
    Statistic Number
    ==================================*/
    .stat-number{
    font-family:var(--heading-font);
    font-size:clamp(2.3rem,4vw,3.4rem);
    font-weight:800;
    line-height:1;
    margin-bottom:18px;
    color:var(--primary);
    letter-spacing:-1px;
    }
    /* Gold underline */
    .stat-number::after{
    content:"";
    display:block;
    width:60px;
    height:4px;
    margin-top:16px;
    border-radius:10px;
    background:var(--secondary);
    }
    /*==================================
    Heading
    ==================================*/
    .stat-card h5{
    font-size:1.3rem;
    font-weight:800;
    color:var(--dark);
    margin-bottom:14px;
    line-height:1.35;
    }
    /*==================================
    Description
    ==================================*/
    .stat-card p{
    margin:0;
    color:var(--text-light);
    line-height:1.85;
    font-size:.97rem;
    position:relative;
    z-index:2;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Trust Statistics Part 3
==================================================*/
/*==================================
Card Hover
==================================*/
.stat-card:hover{
    transform:translateY(-10px);
    border-color:rgba(18,60,115,.12);
    box-shadow:
    0 28px 70px rgba(15,23,42,.10);
    }
    .stat-card:hover::before{
    transform:scaleX(1);
    }
    .stat-card:hover::after{
    opacity:1;
    }
    /*==================================
    Stat Number
    ==================================*/
    .stat-number{
    position:relative;
    transition:.4s ease;
    }
    .stat-card:hover .stat-number{
    color:var(--secondary);
    transform:translateY(-2px);
    }
    /*==================================
    Heading
    ==================================*/
    .stat-card h5{
    transition:.35s ease;
    position:relative;
    z-index:2;
    }
    .stat-card:hover h5{
    color:var(--primary);
    }
    /*==================================
    Premium Background
    ==================================*/
    .stat-card{
    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #fcfdff 100%
    );
    }
    /*==================================
    Floating Decoration
    ==================================*/
    .stat-card .stat-decoration{
    position:absolute;
    right:24px;
    top:24px;
    width:48px;
    height:48px;
    opacity:.05;
    pointer-events:none;
    }
    .stat-card .stat-decoration::before,
    .stat-card .stat-decoration::after{
    content:"";
    position:absolute;
    border-radius:50%;
    background:var(--primary);
    }
    .stat-card .stat-decoration::before{
    width:10px;
    height:10px;
    right:0;
    top:0;
    }
    .stat-card .stat-decoration::after{
    width:6px;
    height:6px;
    left:8px;
    bottom:8px;
    }
    /*==================================
    Card Layer
    ==================================*/
    .stat-number,
    .stat-card h5,
    .stat-card p{
    position:relative;
    z-index:2;
    }
    /*==================================
    Note
    ==================================*/
    .stats-note{
    display:block;
    margin-top:28px;
    color:var(--text-light);
    font-size:.85rem;
    text-align:right;
    opacity:.8;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Trust Statistics Part 4
==================================================*/
/*==================================
Desktop
==================================*/
@media (min-width:1200px){
    .stats-content{
    padding-right:40px;
    }
    }
    /*==================================
    Laptop
    ==================================*/
    @media (max-width:1199.98px){
    .stats-wrapper{
    padding:60px;
    }
    }
    /*==================================
    Tablet
    ==================================*/
    @media (max-width:991.98px){
    .stats-wrapper{
    padding:50px 40px;
    }
    .stats-content{
    text-align:center;
    margin-bottom:50px;
    }
    .stats-content p{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    }
    .stats-note{
    text-align:center;
    margin-top:25px;
    }
    }
    /*==================================
    Mobile
    ==================================*/
    @media (max-width:767.98px){
    .stats{
    overflow:hidden;
    }
    .stats-wrapper{
    padding:35px 25px;
    border-radius:24px;
    }
    .stats-content{
    margin-bottom:40px;
    }
    .stats-content .section-title{
    margin:18px 0;
    }
    .stats-content p{
    font-size:1rem;
    }
    .stat-card{
    padding:28px 24px;
    border-radius:20px;
    }
    .stat-number{
    font-size:2.2rem;
    }
    .stat-card h5{
    font-size:1.15rem;
    }
    .stat-card p{
    font-size:.94rem;
    line-height:1.75;
    }
    }
    /*==================================
    Small Mobile
    ==================================*/
    @media (max-width:575.98px){
    .stats::before,
    .stats::after{
    display:none;
    }
    .stats-wrapper{
    padding:28px 20px;
    border-radius:20px;
    }
    .stats-content{
    margin-bottom:35px;
    }
    .stats-content .theme-btn{
    width:100%;
    justify-content:center;
    }
    .stat-card{
    padding:24px 20px;
    }
    .stat-number{
    font-size:2rem;
    }
    .stat-card h5{
    font-size:1.1rem;
    }
    .stats-note{
    font-size:.8rem;
    }
    }
    /*==================================
    Reduced Motion
    ==================================*/
    @media (prefers-reduced-motion: reduce){
    .stats *,
    .stat-card{
    animation:none !important;
    transition:none !important;
    }
    }