body{
margin:0;
font-family:'Poppins',sans-serif;
background:#f4f8ff;
padding-top:110px;
overflow-x:hidden;
}
header{
position:fixed;
top:18px;
left:50%;
transform:translateX(-50%);
width:95%;
max-width:1250px;
height:78px;
padding:0 30px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
border-radius:60px;
box-shadow:0 15px 40px rgba(0,0,0,.12);
z-index:1000;
}

.logo h1{
font-size:32px;
font-weight:800;
color:#0B1F3A;
margin:0;
}

.tagline{
font-size:14px;
color:#6b7280;
margin-top:5px;
}

nav{
display:flex;
align-items:center;
gap:18px;
}

nav a{
text-decoration:none;
color:#1f2937;
font-weight:600;
padding:12px 22px;
border-radius:30px;
transition:.3s;
}

nav a:hover,
nav a.active{
background:#0A5CFF;
color:#fff;
}

.hero{

max-width:1300px;

margin:50px auto;

padding:90px 60px;

border-radius:40px;

background:linear-gradient(135deg,#2563EB,#3B82F6,#38BDF8);

color:#fff;

text-align:center;

position:relative;

overflow:hidden;

box-shadow:0 35px 80px rgba(37,99,235,.30);

}

.hero h2{

font-size:clamp(3rem,6vw,5rem);

font-weight:900;

line-height:1.1;

margin-bottom:20px;

color:white;

}

.hero p{

font-size:20px;

max-width:850px;

margin:0 auto 35px;

line-height:1.8;

opacity:.95;

}

.hero-buttons{
margin-top:40px;
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.hero button{

padding:18px 42px;

font-size:18px;

font-weight:700;

border-radius:18px;

background:#fff;

color:#2563EB;

box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.secondary-btn{
background:#0B1F3A !important;
color:white !important;
}

.hero button:hover{

transform:translateY(-4px) scale(1.03);

background:#F8FAFC;

}
.hero::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(255,255,255,.08);

border-radius:50%;

top:-170px;

right:-170px;

}

.hero::after{

content:"";

position:absolute;

width:320px;

height:320px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-120px;

left:-120px;

}
@media(max-width:768px){

header{
flex-direction:column;
border-radius:25px;
padding:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero{
padding:60px 20px;
}

.hero h2{
font-size:36px;
}

.hero p{
font-size:18px;
}

.hero-buttons{
flex-direction:column;
}

.hero button{
width:100%;
}
}
.hero-stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
margin-top:60px;
}

.stat-card{
background:rgba(255,255,255,.15);
backdrop-filter:blur(15px);
padding:25px;
border-radius:24px;
border:1px solid rgba(255,255,255,.25);
transition:.3s;
}

.stat-card:hover{
transform:translateY(-8px);
background:rgba(255,255,255,.22);
}

.stat-card h3{
font-size:42px;
font-weight:800;
margin-bottom:8px;
color:#fff;
}

.stat-card p{
font-size:16px;
opacity:.95;
margin:0;
}
/* ===== FOOD PAGE ===== */

.food-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
max-width:1300px;
margin:60px auto;
padding:0 20px;
}

.food-card{
background:#fff;
border-radius:28px;
overflow:hidden;
box-shadow:0 18px 40px rgba(0,0,0,.08);
transition:.35s;
}

.food-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 60px rgba(21,101,192,.22);
}

.food-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.food-card-content{
padding:22px;
}

.food-card h3{
font-size:24px;
margin-bottom:10px;
color:#0B1F3A;
}

.food-card p{
color:#666;
margin-bottom:12px;
line-height:1.6;
}

.food-price{
font-size:28px;
font-weight:800;
color:#1565C0;
margin:15px 0;
}

.food-card button{
width:100%;
padding:16px;
border:none;
border-radius:18px;
background:linear-gradient(135deg,#1565C0,#4A90FF);
color:white;
font-size:18px;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.food-card button:hover{
transform:scale(1.03);
}

@media(max-width:768px){

.food-grid{
grid-template-columns:1fr;
}

.food-card img{
height:200px;
}

}
/* ===== SERVICES ===== */

.services{
max-width:1300px;
margin:80px auto;
padding:0 20px;
text-align:center;
}

.services h2{
font-size:42px;
margin-bottom:45px;
color:#0B1F3A;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:35px 25px;
border-radius:28px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.35s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(21,101,192,.18);
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
color:#1565C0;
}

.service-card p{
font-size:17px;
line-height:1.7;
color:#666;
}

/* ===== STATS ===== */

.stats{
max-width:1300px;
margin:80px auto;
padding:0 20px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.stat-box{
background:linear-gradient(135deg,#1565C0,#4A90FF);
color:white;
padding:40px 20px;
border-radius:28px;
text-align:center;
box-shadow:0 20px 45px rgba(21,101,192,.25);
}

.stat-box h2{
font-size:52px;
margin-bottom:10px;
font-weight:800;
}

.stat-box p{
font-size:18px;
opacity:.95;
}

@media(max-width:768px){

.services h2{
font-size:32px;
}

.stat-box h2{
font-size:40px;
}

}
/* ===========================
   LIVE KPI RADAR
=========================== */

.kpi-radar{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:22px;
margin:35px 0;
}

.kpi-radar .card{
text-align:left;
padding:25px;
}

.kpi-radar h3{
color:#64748B;
font-size:15px;
margin-bottom:10px;
}

.kpi-radar h1{
font-size:42px;
font-weight:800;
color:#0F172A;
margin-bottom:12px;
}

.kpi-up{
color:#22C55E;
font-weight:700;
}

.kpi-good{
color:#2563EB;
font-weight:700;
}

.kpi-danger{
color:#EF4444;
font-weight:700;
}

/* ===========================
   ORDER QUEUE
=========================== */

.order-queue{
margin:40px 0;
}

.order-queue h2{
margin-bottom:20px;
font-size:28px;
font-weight:800;
}

.order-card{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px;
margin-bottom:18px;
border-radius:24px;
background:#fff;
box-shadow:0 18px 40px rgba(15,23,42,.08);
transition:.3s;
}

.order-card:hover{
transform:translateY(-6px);
}

.food-priority{
border-left:8px solid #F97316;
}

.package-order{
border-left:8px solid #2563EB;
}

.priority-badge{
padding:10px 18px;
border-radius:999px;
font-weight:700;
font-size:13px;
}

.priority-badge.urgent{
background:#F97316;
color:white;
animation:pulseGlow 2s infinite;
}

.priority-badge.normal{
background:#2563EB;
color:white;
}
/* ===========================
   LIVE MAP
=========================== */

.map-card{

margin:35px 0;

background:#fff;

border-radius:30px;

padding:25px;

box-shadow:0 20px 45px rgba(15,23,42,.08);

}

.map-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.map-header h2{

font-size:28px;

font-weight:800;

}

.live-dot{

width:14px;

height:14px;

border-radius:50%;

background:#22C55E;

animation:pulse 1.5s infinite;

}

.fake-map{

position:relative;

height:500px;

border-radius:25px;

overflow:hidden;

background:
linear-gradient(rgba(255,255,255,.25),rgba(255,255,255,.25)),
url("https://tile.openstreetmap.org/0/0/0.png");

background-size:cover;

background-color:#EAF4FF;

}

.route-line{

position:absolute;

top:50%;

left:12%;

width:70%;

height:6px;

background:#2563EB;

border-radius:999px;

}

.truck{

position:absolute;

font-size:34px;

animation:drive 12s linear infinite;

}

.truck1{

top:44%;

left:12%;

}

.truck2{

top:58%;

left:18%;

animation-duration:8s;

}

.food-alert{

position:absolute;

top:35%;

right:18%;

font-size:42px;

animation:pulse 1s infinite;

}

@keyframes drive{

0%{

transform:translateX(0);

}

100%{

transform:translateX(650px);

}

}

@keyframes pulse{

0%{

transform:scale(1);

opacity:1;

}

50%{

transform:scale(1.15);

opacity:.7;

}

100%{

transform:scale(1);

opacity:1;

}

}
/* ===== LIVE ALERTS ===== */

.alerts-panel{
margin-top:30px;
}

.alerts-panel h2{
margin-bottom:20px;
font-size:28px;
font-weight:800;
}

.alert-card{
display:flex;
align-items:center;
gap:18px;
padding:18px;
margin-bottom:15px;
background:#fff;
border-radius:20px;
box-shadow:0 12px 30px rgba(15,23,42,.08);
transition:.3s;
}

.alert-card:hover{
transform:translateX(6px);
}

.alert-card span{
font-size:30px;
}

.alert-card strong{
display:block;
margin-bottom:4px;
}

.alert-card p{
margin:0;
color:#64748B;
}

.danger{
border-left:6px solid #EF4444;
}

.warning{
border-left:6px solid #F97316;
}

.success{
border-left:6px solid #22C55E;
}
/* ===== ENTERPRISE SIDEBAR ===== */

.sidebar{
position:fixed;
top:0;
left:0;
width:270px;
height:100vh;
background:#0F172A;
padding:30px 20px;
display:flex;
flex-direction:column;
box-shadow:10px 0 30px rgba(0,0,0,.15);
z-index:1000;
}

.sidebar-logo{
text-align:center;
margin-bottom:40px;
}

.sidebar-logo img{
width:85px;
margin-bottom:15px;
}

.sidebar-logo h2{
color:#fff;
font-size:28px;
font-weight:800;
}

.sidebar nav{
display:flex;
flex-direction:column;
gap:12px;
}

.sidebar nav a{
display:flex;
align-items:center;
padding:16px 18px;
border-radius:16px;
color:#CBD5E1;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.sidebar nav a:hover,
.sidebar nav a.active{
background:linear-gradient(135deg,#2563EB,#3B82F6);
color:#fff;
transform:translateX(6px);
}

.main-content{
margin-left:290px;
padding:35px;
}

header{
margin-left:290px;
}
/* ===== TOP BAR ===== */

header{

position:fixed;

top:0;

left:290px;

right:0;

height:85px;

padding:0 35px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(255,255,255,.85);

backdrop-filter:blur(18px);

border-bottom:1px solid #E2E8F0;

box-shadow:0 8px 20px rgba(15,23,42,.05);

z-index:999;

}

.main-content{

margin-left:290px;

margin-top:105px;

padding:35px;

}
#logoutBtn{

background:#EF4444;

padding:14px 26px;

border-radius:16px;

font-weight:700;

box-shadow:0 12px 25px rgba(239,68,68,.25);

}

#logoutBtn:hover{

background:#DC2626;

transform:translateY(-2px);

}
/* ===== ANALYTICS ===== */

.analytics-section{
margin:40px 0;
}

.analytics-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
gap:25px;
}

.chart-card{
background:#fff;
border-radius:26px;
padding:25px;
box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.chart-card h3{
margin-bottom:20px;
color:#0F172A;
font-size:22px;
font-weight:700;
}

.chart-card canvas{
width:100%!important;
height:320px!important;
}
/* ===== LIVE ACTIVITY ===== */

.activity-section{
margin:35px 0;
}

.activity-card{
background:#fff;
padding:28px;
border-radius:26px;
box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.activity-item{
display:flex;
align-items:center;
gap:18px;
padding:18px 0;
border-bottom:1px solid #E2E8F0;
}

.activity-item:last-child{
border-bottom:none;
}

.activity-icon{
width:55px;
height:55px;
border-radius:50%;
background:linear-gradient(135deg,#2563EB,#3B82F6);
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
color:white;
}

.activity-item strong{
display:block;
font-size:16px;
color:#0F172A;
}

.activity-item p{
color:#64748B;
font-size:14px;
}