*{ 
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f5f7fb;
direction:rtl;
color:#222;
}

header{
background:linear-gradient(135deg,#0d6efd,#3ea6ff);
color:white;
padding:40px 20px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

header h1{ 
font-size:40px;
margin-bottom:10px;
}

header p{
font-size:18px;
opacity:0.9;
}

.container{
width:90%;
max-width:1200px;
margin:40px auto;
}

form{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

input{
width:100%;
padding:15px;
margin-top:15px;
border:1px solid #ddd;
border-radius:12px;
font-size:16px;
outline:none;
transition:0.3s;
}

input:focus{
border-color:#0d6efd;
box-shadow:0 0 10px rgba(13,110,253,0.2);
}

.btn{
display:inline-block;
background:#0d6efd;
color:white;
padding:14px 28px;
border:none;
border-radius:12px;
font-size:16px;
cursor:pointer;
text-decoration:none;
transition:0.3s;
margin-top:10px;
}

.btn:hover{
background:#0b5ed7;
transform:translateY(-2px);
} 

.card{
background:white;
padding:25px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
margin-top:20px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.status-open{
color:green;
font-weight:bold;
}

.status-closed{
color:red;
font-weight:bold;
}

.queue-number{
font-size:70px;
color:#0d6efd;
font-weight:bold;
margin:20px 0;
}

.navbar{
background:white;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
font-size:28px;
font-weight:bold;
color:#0d6efd;
}

@media(max-width:768px){
    
header h1{
font-size:30px;
} 

.btn{
width:100%;
text-align:center;
}

.services-box{
background:black;
padding:40px 30px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
margin-top:40px;
text-align:center;
}

.services-box h2{
background:#0d6efd;
color:black;
padding:15px;
border-radius:15px;
display:inline-block;
margin-bottom:30px;
font-size:35px;
box-shadow:0 5px 15px rgba(13,110,253,0.3);
}

.service-item{
background:#f5f7fb;
color:black;
padding:18px;
margin-top:25px;
border-radius:15px;
font-size:20px;
font-weight:bold;
transition:0.3s;
line-height: 2;
} 

.service-item:hover{
background:#0d6efd;
color:black; 
transform:scale(1.03);
}

.services-title{
background:#0d6efd;
color:black;
padding:15px 30px;
border-radius:15px;
display:inline-block;
font-size:35px;
font-weight:bold;
margin-bottom:30px;
box-shadow:0 5px 15px rgba(13,110,253,0.3);
}

footer{
margin-top:50px;
padding:20px;
background:#0d6efd;
color:black;text-align:center;
font-size:16px;
}

.features-box{ 
background:black;
padding:25px;
border-radius:20px; 
box-shadow:0 5px 20px rgba(0,0,0,0.08);
margin-top:30px;
text-align:right;
line-height:2.5;
font-size:20px;
font-weight:black;
color:#333;
}