/*========service-index.html========*/
.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 25px;
  max-width: 400px; 
  margin: 30px auto; 
  text-align: center;
  border: 1px solid #eaeaea;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.4em;
}


.menu-btn {
  display: block;
  width: 100%;
  box-sizing: border-box; 
  background-color: #007bff;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 15px;
  transition: background 0.3s;
}

.menu-btn:hover { background-color: #0056b3; }

.input-box {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 2px solid #ccc; 
  border-radius: 8px;
  text-transform: uppercase;
  text-align: center;
}

.total-bar {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  margin-bottom: 15px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
}

.order-btn {
  width: 100%;
  box-sizing: border-box;
  padding: 12px;
  background: rgb(21, 192, 183); 
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.order-btn:hover { background:rgb(20, 170, 165);  }

@media screen and (max-width: 768px) {
    header {
        padding: 0 10px;
    }
    header h1 {
        font-size: 1.2rem;
    }
    .nav-links {
        gap: 10px; 
    }
    .nav-links li a {
        font-size: 0.9rem;
    }
    .nav-links li a.nav-login-btn {
        padding: 5px 12px; 
    }
    .main-container {
        grid-template-columns: 1fr;
    }
    .container-welcome h1 {
        font-size: 2rem;
    }
}

.service-card h5{
    margin-bottom: 20px;
    color: #ff0000;
    font-size: 1.0em;
}