/* ===================================
   BHARATLIKES STYLE
=================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
background:#f8e8e8;
font-family:Arial,sans-serif;
padding-bottom:100px;
}

/* HEADER */

.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px;
}

.logo{
background:#000;
color:#dfff00;
padding:15px 25px;
border-radius:15px;
font-size:28px;
font-weight:bold;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.balance-btn{
background:#f3c700;
padding:15px 25px;
border-radius:40px;
font-size:22px;
font-weight:bold;
color:#333;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* SERVICES TITLE */

.service-title{
text-align:center;
font-size:42px;
font-weight:700;
color:#7d1212;
margin:40px 0;
}

/* SERVICES WRAPPER */

.services{
padding:0 20px;
}

/* CATEGORY CARD */

.service-card{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
border:3px solid #000;
border-radius:25px;
padding:22px;
margin-bottom:20px;
text-decoration:none;
color:#4a0f0f;
font-size:28px;
font-weight:bold;
transition:.2s;
}

.service-card:hover{
transform:scale(1.01);
}

.service-left{
display:flex;
align-items:center;
gap:18px;
}

.service-left img{
width:55px;
height:55px;
object-fit:contain;
}

.arrow{
font-size:45px;
font-weight:bold;
color:#d32f2f;
}

/* FLOATING WHATSAPP */

.whatsapp-btn{
position:fixed;
left:25px;
bottom:120px;
width:80px;
height:80px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:36px;
color:#fff;
box-shadow:0 6px 20px rgba(0,0,0,.2);
z-index:999;
}

/* FLOATING YOUTUBE */

.youtube-btn{
position:fixed;
right:25px;
bottom:120px;
width:90px;
height:90px;
background:#ff0000;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
font-size:42px;
color:#fff;
box-shadow:0 6px 20px rgba(0,0,0,.2);
z-index:999;
}

/* BOTTOM MENU */

.bottom-nav{
position:fixed;
bottom:0;
left:0;
width:100%;
height:85px;
background:#fff;
display:flex;
justify-content:space-around;
align-items:center;
box-shadow:0 -5px 20px rgba(0,0,0,.08);
z-index:1000;
}

.bottom-nav a{
text-decoration:none;
color:#8f7474;
font-size:16px;
font-weight:600;
text-align:center;
}

/* CENTER CREATE ORDER BUTTON */

.center-btn{
background:#ff2d2d;
color:#fff !important;
padding:18px 40px;
border-radius:50px;
font-size:18px;
font-weight:bold;
margin-top:-45px;
box-shadow:
0 0 0 8px rgba(0,255,100,.12),
0 8px 20px rgba(0,0,0,.2);
}

/* SERVICE PAGE */

.service-box{
background:#fff;
padding:20px;
border-radius:20px;
margin:15px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.service-box h3{
font-size:22px;
margin-bottom:10px;
}

.service-price{
color:#16a34a;
font-size:22px;
font-weight:bold;
margin-bottom:10px;
}

.service-form input,
.service-form select,
.service-form textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:10px;
margin-bottom:12px;
font-size:15px;
}

.order-btn{
width:100%;
padding:14px;
border:none;
border-radius:12px;
background:#ff2d2d;
color:#fff;
font-size:16px;
font-weight:bold;
cursor:pointer;
}

/* ORDERS */

.order-card{
background:#fff;
padding:15px;
margin:15px;
border-radius:15px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.order-id{
font-weight:bold;
margin-bottom:8px;
}

.status{
display:inline-block;
padding:6px 12px;
border-radius:20px;
font-size:13px;
font-weight:bold;
}

.pending{
background:#fff3cd;
color:#856404;
}

.processing{
background:#dbeafe;
color:#1d4ed8;
}

.completed{
background:#dcfce7;
color:#15803d;
}

.partial{
background:#fde68a;
color:#92400e;
}

.cancelled{
background:#fee2e2;
color:#b91c1c;
}

/* PROFILE */

.profile-card{
background:#fff;
padding:20px;
margin:15px;
border-radius:20px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.profile-card h3{
margin-bottom:15px;
}

/* ADD FUNDS */

.wallet-card{
background:#fff;
padding:20px;
margin:15px;
border-radius:20px;
box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.wallet-card input,
.wallet-card select{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:10px;
margin-bottom:12px;
}

/* MOBILE */

@media(max-width:768px){

.logo{
font-size:18px;
padding:12px 18px;
}

.balance-btn{
font-size:18px;
padding:12px 18px;
}

.service-title{
font-size:28px;
}

.service-card{
font-size:22px;
padding:18px;
}

.service-left img{
width:45px;
height:45px;
}

.arrow{
font-size:34px;
}

.center-btn{
font-size:15px;
padding:15px 28px;
}

.whatsapp-btn{
width:70px;
height:70px;
font-size:30px;
}

.youtube-btn{
width:75px;
height:75px;
font-size:34px;
}

}