.mobile-imagebox-container {
  background: #f8f8f8;
  margin-top: 70px;
  display: none;
  padding: 0px 10px;
}

.fixed-box {
  position: fixed;
  left: 0;
  width: 100%;
  top: 61px;
  z-index: 99999;
  padding: 10px 10px;
  background: #fff;
}

.search-box1 {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 5px;
  padding: 10px 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: solid 1px #0678b1;
}

.search-box1 i {
  font-size: 18px;
  color: #555;
  cursor: pointer;
}

.search-box1 i:first-child {
  margin-right: 10px;
}

.search-box1 i:last-child {
  margin-left: 10px;
  color: #0678b1;
}

.search-box1 input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
}

.full-screen-search {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 999999;
  display: flex;
  flex-direction: column;
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
}

.full-screen-category {
  padding: 10px 10px;
}

.category-search-box {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 5px;
  padding: 10px 10px;
  padding-top: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border: solid 1px #0678b1;
  position: static;
}

.category-search-box i {
  font-size: 18px;
  color: #555;
  cursor: pointer;
}

.category-search-box i:first-child {
  margin-right: 10px;
}

.category-search-box i:last-child {
  margin-left: 10px;
  color: #0678b1;
}

.category-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #000;
}

.back-button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.location h2 {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fullInputWrapper {
  margin: 12px 0;
}

.results {
  flex: 1;
  overflow-y: auto;
}

.result-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 15px;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: #888;
}

.cityDropdown {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}

.cityDropdown strong {
  display: block;
  font-weight: 600;
  color: #0071bc;
  margin: 10px 0 5px;
}

.cityDropdown .cityItem {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.cityDropdown .cityItem:hover {
  background-color: #f1f1f1;
}

@media only screen and (max-width: 768px) and (min-width: 360px) {
  .mobile-imagebox-container {
    display: block;
  }
  .mobile-imagebox-container .wrapper {
    width: 100%;
    padding: 0px 10px;
  }
  .mobile-imagebox-container .wrapper .services .serviceCard {
    width: 48%;
  }
}
