 /*==================================================
Aarohan Wealth
Home CSS
Footer Part 1
==================================================*/
/*==================================
Footer
==================================*/
.footer{
    position:relative;
    overflow:hidden;
    background:#0b1d35;
    color:rgba(255,255,255,.78);
    }
    /*==================================
    Background Decoration
    ==================================*/
    .footer::before{
    content:"";
    position:absolute;
    top:-260px;
    right:-180px;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(200,155,60,.10),
    transparent 70%
    );
    }
    .footer::after{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-220px;
    width:460px;
    height:460px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(255,255,255,.04),
    transparent 70%
    );
    }
    /*==================================
    Footer Top
    ==================================*/
    .footer-top{
    position:relative;
    z-index:2;
    padding:90px 0 60px;
    border-bottom:1px solid rgba(255,255,255,.08);
    }
    /*==================================
    Footer Bottom
    ==================================*/
    .footer-bottom{
    position:relative;
    z-index:2;
    padding:25px 0;
    }
    .footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.60);
    }
    /*==================================
    Bottom Links
    ==================================*/
    .footer-bottom-links{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:24px;
    }
    .footer-bottom-links a{
    color:rgba(255,255,255,.60);
    text-decoration:none;
    transition:all .35s ease;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Footer Part 2
==================================================*/
/*==================================
Footer Widget
==================================*/
.footer-widget{
    position:relative;
    }
    /*==================================
    Logo
    ==================================*/
    .footer-logo{
    display:inline-block;
    margin-bottom:28px;
    }
    .footer-logo img{
    height:48px;
    width:auto;
    }
    /*==================================
    About Text
    ==================================*/
    .footer-about{
    margin:0 0 30px;
    max-width:360px;
    color:rgba(255,255,255,.72);
    line-height:1.9;
    font-size:1rem;
    }
    /*==================================
    Widget Titles
    ==================================*/
    .footer-widget h5{
    position:relative;
    margin-bottom:28px;
    padding-bottom:14px;
    color:#ffffff;
    font-size:1.15rem;
    font-weight:700;
    letter-spacing:.02em;
    }
    .footer-widget h5::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:3px;
    border-radius:10px;
    background:var(--secondary);
    }
    /*==================================
    Footer Lists
    ==================================*/
    .footer-widget ul{
    margin:0;
    padding:0;
    list-style:none;
    }
    .footer-widget ul li{
    margin-bottom:16px;
    }
    /*==================================
    Footer Links
    ==================================*/
    .footer-widget ul li a{
    display:inline-flex;
    align-items:center;
    color:rgba(255,255,255,.72);
    text-decoration:none;
    transition:all .35s ease;
    position:relative;
    }
    /*==================================
    Animated Underline
    ==================================*/
    .footer-widget ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:width .35s ease;
    }
    /*==================================
    Footer Link Hover
    ==================================*/
    .footer-widget ul li a:hover{
    color:#ffffff;
    }
    .footer-widget ul li a:hover::after{
    width:100%;
    }
    /*==================================
    Widget Spacing
    ==================================*/
    .footer-widget:last-child ul li:last-child{
    margin-bottom:0;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Footer Part 3
==================================================*/
/*==================================
Social Icons
==================================*/
.footer-social{
    display:flex;
    align-items:center;
    gap:14px;
    }
    .footer-social a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    text-decoration:none;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#ffffff;
    transition:all .35s ease;
    }
    .footer-social a i{
    font-size:1rem;
    transition:transform .35s ease;
    }
    /*==================================
    Contact List
    ==================================*/
    .footer-contact{
    display:flex;
    flex-direction:column;
    gap:18px;
    }
    .footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin:0 !important;
    color:rgba(255,255,255,.72);
    line-height:1.7;
    }
    /*==================================
    Contact Icons
    ==================================*/
    .footer-contact i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:var(--secondary);
    transition:all .35s ease;
    }
    /*==================================
    Contact Links
    ==================================*/
    .footer-contact a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
    transition:all .35s ease;
    }
    .footer-contact a:hover{
    color:#ffffff;
    }
    /*==================================
    Footer Bottom Links
    ==================================*/
    .footer-bottom-links a{
    position:relative;
    }
    .footer-bottom-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    border-radius:10px;
    background:var(--secondary);
    transition:width .35s ease;
    }
    .footer-bottom-links a:hover{
    color:#ffffff;
    }
    .footer-bottom-links a:hover::after{
    width:100%;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Footer Part 4
==================================================*/
/*==================================
Footer Widget
==================================*/
.footer-widget{
    position:relative;
    z-index:2;
    }
    /*==================================
    Social Hover
    ==================================*/
    .footer-social a{
    position:relative;
    overflow:hidden;
    }
    .footer-social a::before{
    content:"";
    position:absolute;
    inset:0;
    background:var(--gradient-primary);
    opacity:0;
    transition:opacity .35s ease;
    }
    .footer-social a i{
    position:relative;
    z-index:2;
    }
    .footer-social a:hover{
    transform:translateY(-5px);
    border-color:transparent;
    box-shadow:
    0 18px 40px rgba(18,60,115,.28);
    }
    .footer-social a:hover::before{
    opacity:1;
    }
    .footer-social a:hover i{
    transform:scale(1.15);
    color:#ffffff;
    }
    /*==================================
    Footer Links
    ==================================*/
    .footer-widget ul li a{
    transition:
    color .35s ease,
    transform .35s ease;
    }
    .footer-widget ul li a:hover{
    transform:translateX(6px);
    }
    /*==================================
    Contact Cards
    ==================================*/
    .footer-contact li{
    transition:transform .35s ease;
    }
    .footer-contact li:hover{
    transform:translateX(6px);
    }
    .footer-contact li:hover i{
    background:var(--gradient-primary);
    border-color:transparent;
    color:#ffffff;
    transform:rotate(-8deg);
    }
    /*==================================
    Bottom Links
    ==================================*/
    .footer-bottom-links a{
    transition:
    color .35s ease,
    transform .35s ease;
    }
    .footer-bottom-links a:hover{
    transform:translateY(-2px);
    }
    /*==================================
    Copyright
    ==================================*/
    .footer-bottom p{
    transition:color .35s ease;
    }
    .footer:hover .footer-bottom p{
    color:rgba(255,255,255,.75);
    }
    /*==================================
    Performance
    ==================================*/
    .footer-social a,
    .footer-contact li,
    .footer-contact i,
    .footer-widget ul li a{
    will-change:transform;
    }
    /*==================================
    Keyboard Accessibility
    ==================================*/
    .footer a:focus-visible{
    outline:2px solid rgba(200,155,60,.65);
    outline-offset:4px;
    border-radius:8px;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Footer Part 5
==================================================*/
/*==================================
Large Desktop
==================================*/
@media (min-width:1400px){
    .footer-top{
    padding:100px 0 70px;
    }
    }
    /*==================================
    Laptop
    ==================================*/
    @media (max-width:1199.98px){
    .footer-about{
    max-width:100%;
    }
    }
    /*==================================
    Tablet
    ==================================*/
    @media (max-width:991.98px){
    .footer-top{
    padding:70px 0 50px;
    }
    .footer-widget{
    margin-bottom:10px;
    }
    .footer-bottom{
    text-align:center;
    }
    .footer-bottom-links{
    justify-content:center;
    margin-top:18px;
    flex-wrap:wrap;
    gap:18px;
    }
    }
    /*==================================
    Mobile
    ==================================*/
    @media (max-width:767.98px){
    .footer::before,
    .footer::after{
    display:none;
    }
    .footer-top{
    padding:60px 0 40px;
    }
    .footer-logo img{
    height:42px;
    }
    .footer-about{
    margin-bottom:25px;
    line-height:1.8;
    }
    .footer-widget h5{
    margin-bottom:22px;
    }
    .footer-widget ul li{
    margin-bottom:14px;
    }
    .footer-social{
    gap:12px;
    }
    .footer-social a{
    width:42px;
    height:42px;
    border-radius:12px;
    }
    .footer-contact{
    gap:14px;
    }
    .footer-contact i{
    width:38px;
    height:38px;
    border-radius:10px;
    font-size:.9rem;
    }
    .footer-bottom{
    padding:20px 0;
    }
    }
    /*==================================
    Small Mobile
    ==================================*/
    @media (max-width:575.98px){
    .footer-top{
    padding:50px 0 35px;
    }
    .footer-widget h5{
    font-size:1.05rem;
    }
    .footer-about{
    font-size:.95rem;
    }
    .footer-social{
    justify-content:flex-start;
    flex-wrap:wrap;
    }
    .footer-social a{
    width:40px;
    height:40px;
    font-size:.9rem;
    }
    .footer-contact li{
    gap:12px;
    font-size:.95rem;
    }
    .footer-bottom p{
    font-size:.9rem;
    line-height:1.7;
    }
    .footer-bottom-links{
    gap:14px;
    }
    .footer-bottom-links a{
    font-size:.9rem;
    }
    }
    /*==================================
    Reduced Motion
    ==================================*/
    @media (prefers-reduced-motion: reduce){
    .footer *,
    .footer::before,
    .footer::after{
    animation:none !important;
    transition:none !important;
    }
    }

    /*===========================
Regulatory
===========================*/
.footer-regulatory{
    padding:35px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    }
    .regulatory-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px;
    }
    .regulatory-card h5{
    color:#fff;
    margin-bottom:15px;
    }
    .regulatory-card p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    margin-bottom:15px;
    }
    .regulatory-card strong{
    color:#fff;
    }

    /*==================================
Demo Website Notice
Remove this after purchase and in the footer.php also
==================================*/
.demo-notice{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-top:30px;
    padding:18px 22px;
    border-radius:16px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    color:rgba(255,255,255,.78);
    font-size:.9rem;
    line-height:1.8;
    }
    .demo-notice i{
    flex-shrink:0;
    margin-top:3px;
    font-size:1.2rem;
    color:#f8c146;
    }
    .demo-notice strong{
    color:#ffffff;
    font-weight:700;
    }
    .demo-notice a{
    color:#f8c146;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    }
    .demo-notice a:hover{
    color:#ffffff;
    }
    /*==================================
    Responsive
    ==================================*/
    @media (max-width:767px){
    .demo-notice{
    padding:16px;
    font-size:.85rem;
    gap:10px;
    }
    .demo-notice i{
    font-size:1.1rem;
    }
    }

    .popup-icon i{
        font-size:40px;
        color:#f8c146;
    }