@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: rgb(16, 18, 18);
  color: #f5f5f5;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  text-align: center;
}

h2 {
  font-size: 65px;
}

.service-category {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  width: 100%;
}

.service-category h3 {
  margin-top: 50px;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-decoration: none;
}

.service-item {
  padding: 8px 12px;
  background-color: #2c2f33;
  border-radius: 5px;
  color: #f5f5f5;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  box-sizing: border-box;
  flex-basis: calc(9.5% - 8px);
  margin-bottom: 15px;
  margin-left: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  background-color: #3d4145;
  transform: scale(1.05);
  cursor: pointer;
}

.search-container {
  display: flex;
  align-items: center;
  margin: 20px auto;
  width: 100%;
  max-width: 400px;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #6ea4f5b4;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
  margin-right: 10px;
  line-height: 1;
  margin-top: -100px;
  transition: 0.3s ease;
}

.back-button:hover {
  background-color: #6ea4f5b4;
  transform: scale(1.05);
}

.search-box {
  width: 100%;
  padding: 10px;
  border: 2px solid #2c2f33;
  border-radius: 5px;
  background-color: #1c1e20;
  color: #f5f5f5;
  font-size: 16px;
  transition: border-color 0.3s ease;
  margin-bottom: 100px;
  line-height: 1;
}

.search-box:focus {
  outline: none;
  border-color: #00bcd4;
  background-color: #2c2f33;
}
