#services h1 {
  margin-top: 0px;
  margin-bottom: 3rem;
}


.text-bold {
  font-weight: bold;
}

.tabs {
  display: flex;
  justify-content: left;
  gap: 10px;
  /* border-bottom: 2px solid #eaeaea; */
  /* margin-bottom: 20px; */
}

.tab-button {
  padding: 10px 20px;
  font-size: 16px;
  color: #555;
  background-color: #f0f0f0;
  border: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.tab-button[aria-selected="true"] {
  color: #ffffff;
  background-color: #7770b0;
  font-weight: bold;
  /* border-bottom: 3px solid #ffffff; */
}

.tab-button:hover {
  background-color: #9b7bb0;
  color: #ffffff;
}

/* Active and Focus State */
.tab-button:focus {
  outline: 2px solid #7770b0;
}

/* Tab Content Styles */
.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-content[aria-hidden="false"] {
  display: block;
}

/* Transitions and Effects */
.tab-content h2 {
  color: #6200ea;
}

.tab-content p {
  color: #555;
  line-height: 1.6;
}

/* Info grid styling */
.info-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.info-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  gap: 15px;
}

.info-item:hover {
  box-shadow: 0 4px 8px rgba(128, 0, 128, 0.3);
  /* Shadow in purple when hovered */
  border-color: #800080;
  /* Border color changes to purple */
  background-color: #f7e8ff;
  /* Lighter purple background */

  cursor: pointer;
}

/* Selected style for .info-item */
.info-item.selected {
  background-color: #d9d9ff;
  /* Slightly darker purple */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.info-item i {
  color: #7770b0;
  font-size: 2rem;
  min-width: 20px;
}

/* Responsive design */
@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
  }

  .tab-button {
    padding: 8px;
  }


  #services .row {
    margin: 0px;
  }

  .info-item {
    justify-content: space-between;
  }
}