
/* Section Layout */
.what-we-do-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #0a0a0a;
  color: white;
}

.what-we-do {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  max-width: 100%;
  margin: auto;
}

/* Base Hexagon Style */
.hex-grid {
  position: relative;
  width: 500px;
  aspect-ratio: 1 / 1;
}

.hex-grid .hex {
  width: calc(100%/3);
  aspect-ratio: 1 / 1;
  position: relative;
}

.hex-grid .hex svg path {
  fill: #161616;
  transition: fill 0.3s ease;
}

.hex-grid .hex:not(.hex-1) {
  cursor: pointer;
}

.hex-grid .hex:not(.hex-1):hover {
  color: #161616;
}

.hex-grid .hex:not(.hex-1):hover svg path {
  fill: #ffffff;
}

.hex-grid .hex .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2vw;
  font-size: 15px;
  line-height: 25px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hex-grid .hex.hex-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.hex-grid .hex.hex-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.hex-grid .hex.hex-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.hex-grid .hex.hex-4 {
  position: absolute;
  top: 15%;
  left: 0;
  margin: auto;
}

.hex-grid .hex.hex-5 {
  position: absolute;
  bottom: 15%;
  left: 0;
  margin: auto;
}

.hex-grid .hex.hex-6 {
  position: absolute;
  top: 15%;
  right: 0;
  margin: auto;
}

.hex-grid .hex.hex-7 {
  position: absolute;
  bottom: 15%;
  right: 0;
  margin: auto;
}

/* Text Section */
.text-block {
  max-width: 500px;
  margin-left: 60px;
  margin: auto;
}

.text-block h2 {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #00f0ff, #00ff73);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-block p {
  font-size: 17px;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive */
@media screen and (max-width: 900px) {
  .what-we-do {
    flex-direction: column;
    align-items: center;
  }

  .text-block {
    margin-left: 0;
    margin-top: 40px;
    text-align: center;
  }
.what-we-do-fullwidth {
  width: 100vw;
  margin: 0;
  padding: 0;
  background-color: #0a0a0a;
  color: white;
}
}
