/* ===========================
   BVSR TRANSPORT ERP
   Modern Premium UI
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#06111d;
    color:#fff;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#06111d;
}

/* Container */

.container{
    width:min(1200px,92%);
    margin:auto;
}

/* ================= Header ================= */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(18px);
    background:rgba(7,17,31,.75);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:1.6rem;
    font-weight:700;
    color:#fff;
    letter-spacing:1px;
}

nav{
    display:flex;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#d8e7ff;
    font-weight:500;
    transition:.3s;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#3b82f6;
    transition:.35s;
}

nav a:hover{
    color:#4ea1ff;
}

nav a:hover::after{
    width:100%;
}

/* Buttons */

.btn{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:.35s;
    box-shadow:0 12px 30px rgba(37,99,235,.35);
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(37,99,235,.5);
}

.ghost{
    background:transparent;
    border:2px solid #3b82f6;
}

.ghost:hover{
    background:#2563eb;
}

/* ================= HERO ================= */

.hero{
    padding:90px 0;
    background:
    radial-gradient(circle at top right,#2563eb 0%,transparent 40%),
    radial-gradient(circle at bottom left,#0ea5e9 0%,transparent 35%),
    #06111d;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(37,99,235,.18);
    border:1px solid rgba(59,130,246,.4);
    color:#82b8ff;
    margin-bottom:25px;
}

.hero h1{
    font-size:3.4rem;
    line-height:1.15;
    margin-bottom:22px;
}

.hero p{
    color:#cbd5e1;
    line-height:1.9;
    font-size:17px;
}

.actions{
    display:flex;
    gap:18px;
    margin:35px 0;
}

.stats{
    display:flex;
    gap:40px;
    margin-top:30px;
    flex-wrap:wrap;
}

.stats h2{
    color:#3b82f6;
    font-size:2rem;
}

.stats p{
    color:#94a3b8;
}

/* Dashboard */

.dashboard{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:25px;
    box-shadow:0 30px 60px rgba(0,0,0,.4);
}

.top{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.card{
    background:#0f2137;
    border-radius:16px;
    padding:20px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-8px);
    background:#173456;
}

.card h3{
    margin-bottom:10px;
    color:#8ab6ff;
    font-size:18px;
    line-height:1.35;
}

.card strong{
    font-size:32px;
    line-height:1.2;
}

.card .live-count{display:inline-block;min-width:90px;transform-origin:center;will-change:transform,opacity}.card .live-count.count-jump{animation:numberRoll 2.5s cubic-bezier(.22,.75,.25,1)}@keyframes numberRoll{0%{opacity:.45;transform:translateY(11px)}18%{opacity:1;transform:translateY(-3px)}100%{opacity:1;transform:translateY(0)}}

.graph{
    margin-top:22px;
    height:210px;
    border-radius:16px;
    background:radial-gradient(circle at 80% 0,rgba(0,212,255,.13),transparent 38%),#0b192b;
    border:1px solid rgba(113,175,255,.16);
}

@keyframes gradient{

0%{
background-position:left;
}

100%{
background-position:right;
}

}

/* ================= Sections ================= */

section{
    padding:90px 0;
}

section h2{
    text-align:center;
    font-size:2.3rem;
    margin-bottom:22px;
}

section p{
    color:#cbd5e1;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:45px;
}

/* Cards */

.feature{
    background:#0f2137;
    padding:28px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.feature:hover{
    transform:translateY(-10px);
    background:#173456;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.feature h3{
    margin:15px 0;
}

/* CTA */

.cta{
    text-align:center;
    background:linear-gradient(135deg,#1d4ed8,#0ea5e9);
}

.cta h2{
    margin-bottom:15px;
}

.cta p{
    color:#eef5ff;
    margin-bottom:35px;
}

/* Footer */

footer{
    background:#040c15;
    padding:35px;
    text-align:center;
    color:#8ca0bb;
    border-top:1px solid rgba(255,255,255,.08);
}

/* Animations */

.card,
.feature,
.dashboard,
.hero h1,
.hero p,
.stats{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(35px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* Responsive */

@media(max-width:980px){

.hero-grid{
grid-template-columns:1fr;
text-align:center;
}

.actions{
justify-content:center;
flex-wrap:wrap;
}

.stats{
justify-content:center;
}

nav{
display:none;
}

.hero h1{
font-size:2.5rem;
}

.cards{
grid-template-columns:1fr;
}

}

@media(max-width:600px){

.hero h1{
font-size:2rem;
}

section h2{
font-size:1.8rem;
}

.logo{
font-size:1.2rem;
}

.btn{
padding:12px 22px;
}

}
.graph{position:relative;overflow:hidden;padding:16px 16px 12px}.graph-head,.graph-legend{position:relative;z-index:2;display:flex;align-items:center;color:#aebed3;font-size:12px}.graph-head{gap:12px}.graph-head>span{color:#edf5ff;font-size:13px;font-weight:600}.graph-head>small{margin-left:auto;font-size:11px}.graph-head i{display:inline-block;width:8px;height:8px;margin-right:7px;border-radius:50%;background:#34d399;box-shadow:0 0 0 5px rgba(52,211,153,.1);animation:livePulse 1.4s infinite}.market-price{color:#f5f9ff;font-size:15px}.market-price em{margin-left:4px;color:#34d399;font-size:12px;font-style:normal}.market-price.down em{color:#fb7185}.graph canvas{display:block;width:100%;height:140px;margin-top:6px}.graph-legend{justify-content:flex-start;gap:18px}.graph-legend i{display:inline-block;width:16px;height:3px;margin-right:6px;border-radius:4px;vertical-align:middle}.graph-legend .market-up{height:8px;background:#34d399}.graph-legend .market-down{height:8px;background:#fb7185}.graph-legend .market-line{background:#38bdf8}@keyframes livePulse{50%{opacity:.4;transform:scale(.75)}}@media(max-width:520px){.top{font-size:21px}.card h3{font-size:16px}.card strong{font-size:29px}.graph-head{flex-wrap:wrap}.graph-head>small{width:100%;margin-left:0}.market-price{margin-left:auto}.graph{height:235px}.graph canvas{height:145px}}@media(prefers-reduced-motion:reduce){.graph-head i{animation:none}.card .live-count.count-jump{animation:none}}
