/*EXPLORE SECTION*/
.exploreSection {
  padding: 2.5rem 1rem 3rem;
  background-color: #f0f4f8;
  text-align: center;
  font-family: "ChakraPetch", sans-serif;
  color: #333;
  margin-top: -2rem;
}

.exploreSection h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.exploreSection .subtitle {
  font-size: 1.25rem;
  color: #555;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.exploreTabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hexTab {
  position: relative;
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #fff;
  color: #333;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
  font-weight: 500;
}

.hexTab.active,
.hexTab:hover {
  background-color: #3b82f6;
  color: #fff;
}

.searchContainer {
  position: relative;
  max-width: 40rem;
  margin: 0 auto;
}

.searchInput {
  width: 100%;
  padding: 1rem 1rem 1rem 3.5rem;
  border: none;
  background-color: #fff;
  color: #333;
  clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0 50%);
  box-sizing: border-box;
}

.searchInput:focus {
  outline: none;
}

.searchIcon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  cursor: pointer;
  padding: 0.5rem;
}
/*-------------------------*/