
    /* FULL SCREEN LOADER WRAPPER */
#page-loader {
   /* position: fixed;
    inset: 0;
    background: rgb(44, 72, 148);  
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;*/
     position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    /* Purple (left) → Orange (right) */
    background: linear-gradient(
      /*  to right,*/
         135deg,
        #1c0138 0%,
       
         #431475 40%,
          
        #f97316 100%
    );
}
.loader-center {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    width: 60px;      /* adjust size */
    height: 60px;
    object-fit: contain;
    z-index: 2;
    position: absolute;
}

    .ai-loader{
    width:20px;
    height:20px;
    border-radius:50%;
    background:#38bdf8;
    animation:pulse 1.2s infinite;
    }

/*
    .orbit{
width:80px;
height:80px;
border-radius:50%;
animation:rotate 2s linear infinite;
}

.planet{
width:14px;
height:14px;
background:linear-gradient(45deg,#38bdf8,#a855f7);
}*/

/* ORBIT */
.orbit {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(56, 189, 248, 0.3);
    position: relative;
    animation: rotate 2s linear infinite;
}

/* PLANET */
.planet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(45deg, #38bdf8, #a855f7);
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

/* rotation */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}