.tab-title {
  font-family: "Figtree", Sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #18181b;
  text-align: center;
}

.tab-subtitle {
  font-weight: 500;
  font-size: 1.1em;
  color: black;
  text-align: center;
}

.tabs {
  background: #fff;
  border-radius: 8px;
}

/* Tab buttons row */
.tab-header {
  display: flex;
  gap: 1em;
  font-size: .9em;
  flex-wrap: wrap;
}

/* Each button (tab) */
.tab-link {
  flex: 1;
  padding: .65em;
  cursor: pointer;
  background: #0027ff0d;
  border: 1px solid var(--primary-clr);
  outline: none;
  transition: background 0.3s;
  font-weight: 500;
  border-radius: 8px;
  padding: .65em;
  white-space: nowrap;
}

.tab-link:hover {
  background: #141bc452;
}

/* Active tab */
.tab-link.active {
  background: var(--primary-clr);
  color: white;
  font-weight: bold;
  border-bottom: 2px solid white;
}

/* Tab content area */
.tab-content {
  padding: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* tech content */
.tech-img-name-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;

  .tech-img-name {
    background-color: #f2f9ff;
    text-align: center;
    /* width: 15%; */
    min-width: 165px;
    padding: 1em;
    border-radius: 5px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .tech-img {
    width: 60px;
  }

  .tech-name {
    color: black;
    padding-top: 10px;
  }

  @media screen and (max-width: 768px) {
    justify-content: center;
  }
}