:root{

--primary:#3b2389;
--secondary:#7C3AED;
--orange:#ff7a00;
--green:#15C38A;

--bg:#F4F7FC;

--card:#ffffff;

--radius:24px;

--shadow:

0 15px 45px rgba(0,0,0,.08);

}

*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Poppins,sans-serif;

}

body{

background:var(--bg);

overflow-x:hidden;

position:relative;

}

/* animated background */

.bg-shape{

position:fixed;

border-radius:50%;

filter:blur(80px);

z-index:-1;

opacity:.25;

}

.shape1{

width:300px;

height:300px;

background:#6A5CFF;

top:-100px;

left:-80px;

}

.shape2{

width:350px;

height:350px;

background:#16d5b5;

bottom:-120px;

right:-100px;

}

.app-header{

padding:25px 0;

position:sticky;

top:0;

z-index:100;

backdrop-filter:blur(25px);

background:rgba(255,255,255,.55);

}

.header-content{

display:flex;

justify-content:space-between;

align-items:center;

}

.welcome{

font-size:13px;

color:#666;

}

.user-box h4{

font-size:28px;

font-weight:700;

margin-top:4px;

}

.location{

margin-top:8px;

font-size:14px;

color:#777;

}

.location i{

color:var(--orange);

}

.header-icons button{

width:58px;

height:58px;

border:none;

background:#fff;

border-radius:18px;

box-shadow:var(--shadow);

position:relative;

transition:.3s;

}
.job-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.job-card:hover{

    transform:translateY(-6px);

}

.job-image{

    position:relative;

    height:220px;

    overflow:hidden;

}

.job-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.job-card:hover .job-image img{

    transform:scale(1.08);

}

.image-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
        rgba(0,0,0,.55),
        transparent 60%);

}

/* Share Button */

.whatsapp-share-btns{

    position: absolute;

    top:1px;

    right:0px;

    width:30px;

    height:30px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    z-index:20;

    cursor:pointer;

    transition:.3s;

    display:flex;

    align-items:center;

    justify-content:center;

}

.whatsapp-share-btns:hover{

    background:var(--primary);

    color:#fff;

    transform:scale(1.1);

}

.whatsapp-share-btns i{

    font-size:18px;

}

/* Badge */

.urgent-badge{

    position:absolute;

    left:15px;

    top:15px;

    background:#ff4d4f;

    color:#fff;

    padding:8px 15px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

    z-index:2;

}

.job-body{

    padding:20px;

}

.job-title{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.salary-chip{

    display:inline-block;

    background:#E8F5E9;

    color:#2E7D32;

    padding:8px 16px;

    border-radius:30px;

    font-weight:600;

    margin-bottom:15px;

}

.job-desc{

    color:#666;

    line-height:1.7;

    margin-bottom:20px;

}
.job-date{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    color:#6c757d;

    margin:12px 0 15px;

    font-weight:500;

}

.job-date i{

    color:#6C63FF;

    font-size:15px;

}
.header-icons button:hover{

transform:translateY(-5px);

}

.header-icons i{

font-size:24px;

color:var(--primary);

}

.notification-dot{

width:10px;

height:10px;

background:red;

border-radius:50%;

position:absolute;

top:15px;

right:15px;

border:2px solid white;

}

.search-section{

margin-top:20px;

}

.search-box{

display:flex;

align-items:center;

background:#fff;

border-radius:60px;

padding:10px 20px;

box-shadow:var(--shadow);

}

.search-box input{

flex:1;

border:none;

outline:none;

padding:12px;

font-size:15px;

}

.search-box i{

font-size:22px;

color:#888;

}

.search-box button{

border:none;

width:50px;

height:50px;

border-radius:50%;

background:linear-gradient(135deg,#5B5FEF,#7C3AED);

color:#fff;

margin-left:10px;

}

.hero-section{

margin:35px 0;

}

.hero-card{

border-radius:32px;

overflow:hidden;

padding:45px;

display:flex;

align-items:center;

justify-content:space-between;

background:linear-gradient(135deg,#5B5FEF,#7C3AED);

color:white;

box-shadow:var(--shadow);

}

.hero-card.property{

background:linear-gradient(135deg,#ff7a00,#ffb703);

}

.hero-card.business{

background:linear-gradient(135deg,#14b866,#15C38A);

}

.hero-left{

max-width:55%;

}

.badge-tag{

background:rgba(255,255,255,.2);

padding:8px 18px;

border-radius:50px;

display:inline-block;

font-size:13px;

margin-bottom:20px;

}

.hero-left h2{

font-size:38px;

font-weight:700;

margin-bottom:15px;

}

.hero-left p{

opacity:.9;

margin-bottom:25px;

}

.hero-btn{

display:inline-block;

padding:14px 30px;

background:#fff;

color:#333;

border-radius:50px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.hero-btn:hover{

transform:translateY(-4px);

}

.hero-right img{

width:280px;

animation:float 4s infinite ease-in-out;

}

@keyframes float{

50%{

transform:translateY(-15px);

}

}

@media(max-width:991px){

.hero-card{

padding:30px;

flex-direction:column;

text-align:center;

}

.hero-left{

max-width:100%;

}

.hero-right{

margin-top:25px;

}

.hero-right img{

width:220px;

}

.user-box h4{

font-size:22px;

}

}

@media(max-width:576px){

.hero-left h2{

font-size:28px;

}

.search-box{

padding:8px 15px;

}

.header-icons button{

width:50px;

height:50px;

}

}
/*==================================
CATEGORY SECTION
==================================*/

.category-section{

margin:50px 0;

}

.section-header{

display:flex;

justify-content:space-between;

align-items:center;
margin-top : -20px;
margin-bottom:25px;

}

.section-header h3{

font-size:28px;

font-weight:700;

margin-bottom:3px;

}

.section-header p{

font-size:14px;

color:#888;

margin:0;

}

.see-all{

text-decoration:none;

font-weight:600;

color:var(--primary);

display:flex;

align-items:center;

gap:4px;

transition:.3s;

}

.see-all:hover{

gap:8px;

}

.category-wrapper{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:5px;

}

.category-card{

background:rgba(255,255,255,.75);

backdrop-filter:blur(20px);

border-radius:12px;

padding:14px 12px;

text-align:center;

text-decoration:none;

box-shadow:0 12px 35px rgba(0,0,0,.06);

transition:.35s;

position:relative;

overflow:hidden;

}

.category-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(90deg,

transparent,

rgba(255,255,255,.45),

transparent);

transition:.8s;

}

.category-card:hover::before{

left:120%;

}

.category-card:hover{

transform:translateY(-8px);

}

.category-icon{

width:72px;

height:72px;

border-radius:12px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:18px;

color:#fff;

font-size:28px;

box-shadow:0 12px 25px rgba(0,0,0,.18);

}

.blue{

    background: linear-gradient(149deg, #3b2389, #3A63FF);

}

.orange{

background:linear-gradient(135deg,#FF8A00,#FF5F1F);

}

.green{

background:linear-gradient(135deg,#12C76A,#00A86B);

}

.purple{

background:linear-gradient(135deg,#8B5CF6,#6D28D9);

}

.red{

background:linear-gradient(135deg,#FF4D6D,#D90429);

}

.cyan{

background:linear-gradient(135deg,#00C9FF,#0099FF);

}

.pink{

background:linear-gradient(135deg,#FF4FA3,#FF006E);

}

.dark{

background:linear-gradient(135deg,#3A3A3A,#111);

}

.gradient{

background:linear-gradient(135deg,#5B5FEF,#7C3AED,#FF7A00);

}

.category-card h6{

font-size:16px;

font-weight:700;

margin-bottom:4px;

color:#222;

}

.category-card span{

font-size:13px;

color:#888;

}

.special{

background:linear-gradient(135deg,#3b2389,#7C3AED);

color:#fff;

}

.special h6,

.special span{

color:#fff;

}

.special .category-icon{

background:#fff;

color:#5B5FEF;

}

@media(max-width:768px){

.category-wrapper{

display:flex;

overflow-x:auto;

gap:10px;

padding-bottom:10px;

scroll-snap-type:x mandatory;

scrollbar-width:none;

}

.category-wrapper::-webkit-scrollbar{

display:none;

}

.category-card{

min-width:95px;

flex-shrink:0;

scroll-snap-align:start;

}

.section-header h3{

font-size:22px;

}

}
.category-card{

position:relative;

overflow:hidden;

}

.ripple{

position:absolute;

background:rgba(255,255,255,.4);

border-radius:50%;

transform:scale(0);

animation:ripple .6s linear;

pointer-events:none;

}

@keyframes ripple{

to{

transform:scale(4);

opacity:0;

}

}
/* =====================================================
   URGENT JOB SECTION
===================================================== */

.job-section{
    padding:60px 0;
    position:relative;
}

/* Horizontal Slider */

.job-slider{
    display:flex;
    gap:16px;
    overflow-x:auto;
    padding:10px 16px 20px;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.job-slider::-webkit-scrollbar{
    display:none;
}


/* =====================================================
   JOB CARD
===================================================== */

.job-card{
    flex: 0 0 84%;
    max-width: 84%;
    min-width: 84%;

    background: rgba(255,255,255,.78);
    backdrop-filter: blur(18px);

    border-radius: 30px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    scroll-snap-align: start;
    transition: .35s ease;
}

.job-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);

}

/* =====================================================
   BANNER
===================================================== */

.job-banner{

    position:relative;

    height:190px;

    overflow:hidden;

}

.job-banner img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;

}

.job-card:hover .job-banner img{

    transform:scale(1.08);

}

/* dark overlay */

.job-banner::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(

    to top,

    rgba(0,0,0,.45),

    rgba(0,0,0,.05)

    );

}

/* =====================================================
   BADGE
===================================================== */

.urgent-badge{

    position:absolute;

    top:18px;

    left:18px;

    z-index:5;

    background:

    linear-gradient(
    135deg,
    #ff7a00,
    #ff4d00
    );

    color:#fff;

    padding:8px 18px;

    border-radius:40px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.4px;

    box-shadow:

    0 8px 20px rgba(255,122,0,.35);

}

/* =====================================================
   BOOKMARK
===================================================== */

.bookmark-btn{

    position:absolute;

    top:18px;

    right:18px;

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    z-index:20;

    cursor:pointer;

    transition:.3s;

    display:flex;

    align-items:center;

    justify-content:center;

}

.bookmark-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:scale(1.1);

}

.bookmark-btn i{

    font-size:18px;

}















.whatsapp-share-btn{

    position:absolute;

    top:18px;

    right:18px;

    width:30px;

    height:30px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    z-index:20;

    cursor:pointer;

    transition:.3s;

    display:flex;

    align-items:center;

    justify-content:center;

}

.whatsapp-share-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:scale(1.1);

}

.whatsapp-share-btn i{

    font-size:18px;

}

.share-btn{

    position:absolute;

    top:18px;

    right:18px;

    width:46px;

    height:46px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    z-index:20;

    cursor:pointer;

    transition:.3s;

    display:flex;

    align-items:center;

    justify-content:center;

}

.share-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:scale(1.1);

}

.share-btn i{

    font-size:18px;

}

/* =====================================================
   CARD BODY
===================================================== */
.job-body{
    padding:25px;
}

.job-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 20px 0;
}

.bookmark-btn{
    position:absolute;
    top:18px;
    right:18px;
}

.urgent-badge{
    display:inline-flex;
    align-items:center;
    padding:8px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

/* =====================================================
   COMPANY
===================================================== */

.company-row{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

}

.company-logo{

    width:58px;

    height:58px;

    border-radius:18px;

    object-fit:cover;

    border:3px solid #fff;

    box-shadow:

    0 8px 20px rgba(0,0,0,.12);

    background:#fff;

}

.company-row h5{

    margin:0;

    font-size:17px;

    font-weight:700;

    color:#222;

}

.company-row span{

    display:flex;

    align-items:center;

    gap:6px;

    margin-top:4px;

    color:#888;

    font-size:13px;

}

.verified{

    color:#16C784;

    font-size:15px;

}

/* =====================================================
   JOB TITLE
===================================================== */

.job-title{

    font-size:24px;

    font-weight:700;

    color:#222;

    line-height:1.35;

    margin-bottom:18px;

}

/* subtle divider */

.job-title::after{

    content:"";

    display:block;

    width:55px;

    height:4px;

    margin-top:12px;

    border-radius:30px;

    background:

    linear-gradient(
    90deg,
    var(--primary),
    #8e44ff
    );

}

/* =====================================================
   CARD SHINE
===================================================== */

.job-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:

    linear-gradient(

    90deg,

    transparent,

    rgba(255,255,255,.35),

    transparent

    );

    transform:skewX(-25deg);

    transition:.9s;

}

.job-card:hover::before{

    left:150%;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1200px){

.job-card{

    min-width:340px;
    max-width:340px;

}

}

@media(max-width:992px){

.job-section{

    padding:45px 0;

}

.job-card{

    min-width:320px;
    max-width:320px;

}

.job-banner{

    height:180px;

}

.job-title{

    font-size:22px;

}

}

@media(max-width:768px){

.job-slider{

    gap:16px;

}

.job-card{

    min-width:300px;
    max-width:300px;

}

.company-logo{

    width:52px;
    height:52px;

}

.job-title{

    font-size:20px;

}

.job-body{

    padding:20px;

}

}

@media(max-width:576px){

.job-card{
    flex: 0 0 84%;
    max-width: 84%;
    min-width: 84%;

    background: rgba(255,255,255,.78);
    backdrop-filter: blur(18px);

    border-radius: 30px;
    overflow: hidden;

    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 15px 40px rgba(0,0,0,.08);

    
    transition: .35s ease;
}

.job-banner{

    height:165px;

}

.urgent-badge{

    font-size:11px;

    padding:7px 14px;

}

.bookmark-btn{

    width:42px;
    height:42px;

}

.company-row h5{

    font-size:16px;

}

.job-title{

    font-size:12px;

}

}
/* =====================================================
   SALARY CHIP
===================================================== */

.salary-chip{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:5px 10px;

    margin-bottom:15px;

    border-radius:12px;

    font-size:8px;
    font-weight:700;

    color:#0F9D58;

    background:#ECFFF5;

    border:1px solid #C8F3D9;

}

.salary-chip::before{

    content:"💰";

    font-size:16px;

}

/* =====================================================
   JOB TAGS
===================================================== */

.job-tags{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-bottom:20px;

}

.job-tags span{

    padding:8px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

    color:#555;

    background:#F5F7FB;

    transition:.3s;

}

.job-tags span:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    transform:translateY(-2px);

}
/* =====================================================
   JOB INFO
===================================================== */

.job-info{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 0;

    border-top:1px solid #ECECEC;

    border-bottom:1px solid #ECECEC;

    margin-bottom:18px;

}

.job-info div{

    display:flex;

    align-items:center;

    gap:8px;

    color:#666;

    font-size:13px;

    font-weight:500;

}

.job-info i{

    color:var(--primary);

    font-size:15px;

}
/* =====================================================
   DESCRIPTION
===================================================== */

.job-desc{

    color:#666;

    font-size:10px;

    line-height:1.8;

    margin-bottom:24px;

    min-height:75px;

}
/* =====================================================
   FOOTER BUTTONS
===================================================== */

.job-footer{

    display:flex;

    gap:12px;

}

.job-footer button{

    flex:1;

    border:none;

    height:52px;

    border-radius:16px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}
/* CALL */

.call-btn{

    background:#EEF3FF;

    color:var(--primary);

}

.call-btn:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/* WHATSAPP */

.whatsapp-btn{

    background:#18C964;

    color:#fff;

}

.whatsapp-btn:hover{

    background:#13A854;

    transform:translateY(-3px);

}
/* =====================================================
   SKELETON LOADING
===================================================== */

.skeleton{

    background:

    linear-gradient(

        90deg,

        #F1F1F1 25%,

        #E4E4E4 50%,

        #F1F1F1 75%

    );

    background-size:400% 100%;

    animation:skeleton 1.4s infinite;

}

@keyframes skeleton{

    from{

        background-position:100%;

    }

    to{

        background-position:-100%;

    }

}
/* ICON */

.job-footer i{

    margin-right:8px;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:768px){

.job-footer{

    flex-direction:column;

}

.job-footer button{

    width:100%;

}

.job-info{

    flex-direction:column;

    align-items:flex-start;

    gap:12px;

}

.salary-chip{

    font-size:10px;

}

.job-desc{

    min-height:auto;

}

}
/* =====================================================
   CARD ENTRANCE
===================================================== */
.job-card{
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    animation: cardFade .6s ease forwards;
}

@keyframes cardFade{
    from{
        opacity:0;
        transform:translateY(30px) scale(0.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}
/*==================================
BOOKMARK ACTIVE
==================================*/

.bookmark-btn.active{

background:#ff4d6d;

color:#fff;

transform:scale(1.08);

}

/*==================================
READ MORE
==================================*/

.read-more{

color:var(--primary);

font-weight:600;

cursor:pointer;

}

/*==================================
SCROLL REVEAL
==================================*/

.job-card{

opacity:0;

transform:translateY(40px);

transition:all .6s ease;

}

.job-card.show{

opacity:1;

transform:translateY(0);

}

/*==================================
TOAST
==================================*/

.app-toast{

position:fixed;

bottom:90px;

left:50%;

transform:translateX(-50%);

background:#222;

color:#fff;

padding:14px 22px;

border-radius:50px;

font-size:14px;

z-index:9999;

opacity:0;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.25);

}

.app-toast.show{

opacity:1;

bottom:110px;

}
/*=========================================
PROPERTY SECTION
=========================================*/

.property-section{

padding:70px 0;

}

.property-slider{

display:flex;

gap:25px;

overflow-x:auto;

scroll-snap-type:x mandatory;

scrollbar-width:none;

padding-bottom:15px;

}

.property-slider::-webkit-scrollbar{

display:none;

}

.property-card{

min-width:380px;

background:#fff;

border-radius:30px;

overflow:hidden;

box-shadow:0 18px 45px rgba(0,0,0,.08);

transition:.35s;

scroll-snap-align:start;

}

.property-card:hover{

transform:translateY(-8px);

}

.property-image{

height:240px;

position:relative;

overflow:hidden;

}

.property-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.5s;

}

.property-card:hover img{

transform:scale(1.08);

}

.price-badge{

position:absolute;

left:18px;

bottom:18px;

background:#fff;

padding:10px 16px;

border-radius:12px;

font-weight:700;

box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.fav-btn{

position:absolute;

top:18px;

right:18px;

width:48px;

height:48px;

border:none;

border-radius:50%;

background:#fff;

font-size:18px;

transition:.3s;

}

.fav-btn:hover{

background:#ff4d6d;

color:#fff;

}

.verified-property{

position:absolute;

top:18px;

left:18px;

background:linear-gradient(135deg,#15C38A,#0E9F6E);

color:#fff;

padding:8px 16px;

border-radius:30px;

font-size:12px;

font-weight:700;

}

.property-body{

padding:22px;

}

.property-title{

font-size:18px;

font-weight:700;

margin-bottom:10px;

}

.property-location{

color:#777;
font-size: 10px;
margin-bottom:20px;

}

.property-features{

display:flex;

justify-content:space-between;

background:#F7F9FD;

padding:15px;

border-radius:18px;

margin-bottom:20px;

font-size:14px;

}

.owner-box{

display:flex;

align-items:center;

gap:12px;

margin-bottom:20px;

}

.owner-box img{

width:55px;

height:55px;

border-radius:50%;

object-fit:cover;

}

.owner-box h6{

margin:0;

font-weight:700;

}

.owner-box span{

font-size:13px;

color:#888;

}

.property-buttons{

display:flex;

gap:12px;
margin-top: -17px;

}

.property-buttons button{

flex:1;

height:50px;

border:none;

border-radius:15px;

font-weight:600;

transition:.3s;

}

.call-property{

background:#EEF2FF;

color:#5B5FEF;

}

.call-property:hover{

background:#5B5FEF;

color:#fff;

}

.whatsapp-property{

background:#16C784;

color:#fff;

}

.whatsapp-property:hover{

background:#11A75A;

}

@media(max-width:768px){

.property-card{

min-width:300px;

}

.property-features{

font-size:13px;

}

}

.mobile-bottom-nav{
  position:fixed;bottom:0;left:0;right:0;
  background:rgba(255,255,255,0.96);
 
  backdrop-filter:blur(14px);
  border-top:1px solid var(--border-c);
  display:flex;align-items:center;justify-content:space-around;
  padding:8px 6px calc(8px + env(safe-area-inset-bottom));
  z-index:1035;
  box-shadow:0 -6px 20px rgba(0,0,0,0.05);
}
.mobile-nav-item{
  display:flex;flex-direction:column;align-items:center;gap:2px;
   text-decoration : none;
  font-size:0.65rem;color:var(--text-muted);font-weight:500;
  padding:4px 10px;border-radius:10px;
  transition:color .2s ease;
}
.mobile-nav-item i{font-size:1.25rem;}
.mobile-nav-item.active,.mobile-nav-item:hover{color:var(--primary);}
.mobile-nav-fab{
  width:52px;height:52px;border-radius:20%;
  background:linear-gradient(135deg,var(--accent),var(--accent-light));
  color:#000;font-size:1.4rem;
  display:flex;align-items:center;justify-content:center;
  margin-top:-0px;
  box-shadow:0 10px 22px #0000001a;
  border:4px solid #fff;
  transition:transform .25s ease;
}
.mobile-nav-fab:hover{transform:scale(1.08) rotate(90deg);color:#fff;}
/*==================================
APP LOADER
===================================*/

#appLoader{

position:fixed;

inset:0;

background:linear-gradient(135deg,#f8fbff,#eef5ff);

display:flex;

align-items:center;

justify-content:center;

z-index:999999;

transition:.5s;

}

#appLoader.hide{

opacity:0;

visibility:hidden;

}

.loader-box{

text-align:center;

width:280px;

}

.loader-logo{

width:90px;

height:90px;

margin:auto;

border-radius:30px;

background:linear-gradient(135deg,#3b2389,#7C3AED);

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

color:#fff;

box-shadow:0 20px 40px rgba(91,95,239,.35);

animation:logoPulse 1.2s infinite;

}

.loader-box h3{

margin-top:22px;

font-weight:700;

font-size:28px;

}

.loader-box p{

color:#888;

margin:8px 0 25px;

font-size:14px;

}

.loader-progress{

height:7px;

background:#E9EEF8;

border-radius:20px;

overflow:hidden;

}

.loader-progress span{

display:block;

height:100%;

width:0;

border-radius:20px;

background:linear-gradient(90deg,#5B5FEF,#8B5CF6,#FF7A00);

animation:loading 2s linear infinite;

}

@keyframes loading{

0%{

width:0;

}

50%{

width:80%;

}

100%{

width:100%;

}

}

@keyframes logoPulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}
