body{
margin:0;
font-family:Segoe UI;
}

/* TOP BAR */
.topbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 30px;
background:#2c3e50;
color:#fff;
}

.login-btn{
background:#00b894;
color:#fff;
padding:8px 15px;
text-decoration:none;
border-radius:5px;
}

/* HERO */
.hero{
position:relative;
height:80vh;
overflow:hidden;
}

.bg-video{
width:100%;
height:100%;
object-fit:cover;
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
color:#fff;
}

/* SECTION */
.section{
padding:40px;
text-align:center;
}
.section h2{
font-size:28px;
margin-bottom:20px;
position:relative;
}

.section h2::after{
content:'';
width:60px;
height:3px;
background:#00b894;
display:block;
margin:8px auto;
}
/* FOOTER */
.footer{
background:#2c3e50;
color:#fff;
text-align:center;
padding:15px;
}

.icon{
font-size:40px;
margin-bottom:10px;
}

.card-box h3{
margin:10px 0 5px;
}
.card-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.card-box p{
font-size:13px;
color:#666;
}
.whatsapp{
position:fixed;
bottom:25px;
right:25px;   /* 🔥 LEFT हटाओ */

width:70px;
height:70px;

background:#25D366;  /* 🔥 circle color */
color:#fff;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

box-shadow:0 5px 15px rgba(0,0,0,0.3);

z-index:9999;
}

/* ICON */
.whatsapp i{
font-size:32px;
}
.contact-form{
max-width:400px;
margin:auto;
display:flex;
flex-direction:column;
gap:10px;
}

.contact-form input,
.contact-form textarea{
padding:10px;
border:1px solid #ccc;
border-radius:6px;
}

.contact-form button{
background:#00b894;
color:#fff;
border:none;
padding:10px;
border-radius:6px;
cursor:pointer;
}
/* ================= LOGIN PAGE ================= */

.login-page{
display:flex;
justify-content:center;
align-items:center;
height:100vh;
background:#f5f6fa;
}

.login-box{
width:320px;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
text-align:center;
}

.login-box input{
width:100%;
padding:10px;
margin:8px 0;
border:1px solid #ccc;
border-radius:5px;
}

.login-box button{
width:100%;
padding:10px;
background:#00b894;
color:#fff;
border:none;
border-radius:5px;
cursor:pointer;
}

.login-box button:hover{
background:#019875;
}

/* DASHBOARD */
.header{
background:#2c3e50;
color:#fff;
padding:12px;
}

.main{
display:flex;
}

/* SIDEBAR */
.sidebar{
width:220px;
background:#f1f2f6;
padding:15px;
min-height:100vh;
}

.sidebar a{
display:block;
margin-bottom:8px;
padding:6px;
border-radius:5px;
color:#000;
text-decoration:none;
}

.sidebar a:hover{
background:#dfe6e9;
}

/* CONTENT */
.content{
flex:1;
padding:15px;
}

.box{
background:#fff;
padding:10px;
border-radius:8px;
margin-bottom:10px;
}

/* TABLE */
table{
width:100%;
border-collapse:collapse;
background:#fff;
}

th,td{
padding:8px;
border-bottom:1px solid #eee;
text-align:center; 
}
/* RESET */
body{
margin:0;
font-family:Segoe UI;
background:#f5f6fa;
}

/* HEADER */
.header{
background:#2c3e50;
color:#fff;
padding:12px 20px;
font-size:18px;
}

/* MAIN LAYOUT */
.main{
display:flex;
}

/* SIDEBAR */
.sidebar{
width:220px;
background:#ffffff;
padding:15px;
min-height:100vh;
box-shadow:2px 0 5px rgba(0,0,0,0.05);
}

.sidebar h4{
margin-bottom:10px;
}

.sidebar a{
display:block;
padding:8px;
margin-bottom:5px;
border-radius:6px;
text-decoration:none;
color:#333;
font-size:14px;
transition:0.2s;
}

.sidebar a:hover{
background:#dfe6e9;
}

/* CONTENT */
.content{
flex:1;
padding:20px;
}

/* BOX */
.box{
background:#fff;
padding:12px;
border-radius:8px;
margin-bottom:12px;
box-shadow:0 2px 5px rgba(0,0,0,0.05);
font-size:14px;
}

/* FILTER BUTTON */
.filters button{
padding:6px 10px;
margin:3px;
border:none;
border-radius:5px;
background:#dfe6e9;
cursor:pointer;
font-size:12px;
}

.filters button:hover{
background:#b2bec3;
}

/* TABLE */
table{
width:100%;
border-collapse:collapse;
background:#fff;
border-radius:8px;
overflow:hidden;
}

th{
background:#2c3e50;
color:#fff;
font-size:13px;
}

th,td{
padding:8px;
border-bottom:1px solid #eee;
text-align:center;
font-size:12px;
}

tr:hover{
background:#f1f1f1;
}

/* STATUS BADGE */
.badge{
padding:4px 8px;
border-radius:6px;
font-size:11px;
border:none;
cursor:pointer;
}

.approved{background:#55efc4;}
.pending{background:#ffeaa7;}
.rejected{background:#ff7675;color:#fff;}
.refer{background:#74b9ff;}
.objection{background:#fab1a0;}

/* FORM CONTAINER */
.container{
width:400px;
margin:40px auto;
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* FORM */
.container h2{
text-align:center;
margin-bottom:15px;
}

label{
font-size:13px;
font-weight:600;
}

select,input{
width:100%;
padding:8px;
margin-top:5px;
margin-bottom:12px;
border:1px solid #ccc;
border-radius:6px;
font-size:13px;
}

input[readonly]{
background:#eee;
}

/* BUTTON */
button{
width:100%;
padding:10px;
border:none;
border-radius:6px;
background:#00b894;
color:#fff;
cursor:pointer;
font-size:14px;
}

button:hover{
background:#019875;
}

/* SECOND BUTTON */
button[type="button"]{
background:#6c757d;
margin-top:10px;
}

button[type="button"]:hover{
background:#5a6268;
}

/* POPUP */
#popup{
display:none;
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:50%;
background:#fff;
padding:15px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
z-index:1000;
}

#overlay{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
z-index:999;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

.sidebar{
display:none;
}

.container{
width:90%;
}

table{
font-size:11px;
}

}