.tech-section {
  padding: 120px 0 80px;
}

.tech-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
}

.tech-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #34bec1;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid #34bec1;
  padding-bottom: 10px;
}

.category-title i {
  margin-right: 15px;
  font-size: 1.5rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.tech-item {
  background: white;
  color: #2c3e50;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border-left: 4px solid #34bec1;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(52, 190, 193, 0.3);
  background: #34bec1;
  color: white;
}
