.tabs {
  max-width: 100%;
  margin: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}

.tab-btn {
  flex: 1;
  min-width: 150px;
  padding: 14px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  transition: background 0.3s;
  color: #333;
}

.tab-btn:hover {
  background-color: #f0f0f0;
}

.tab-btn.active {
  background-color: #dc143c;
  font-weight: bold;
  color: white;
}

.tab-content {
  padding: 40px 20px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.client-logo-item {
  text-align: center;
  margin-bottom: 30px;
}

.client-logo-item img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.client-logo-item:hover img {
  transform: scale(1.05);
}

.client-logo-caption {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

/* Mobile-Friendly Styles */
@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    border-bottom: 1px solid #ddd;
  }

  .tab-btn:last-child {
    border-bottom: none;
  }

  .tab-content {
    padding: 20px 16px;
  }
}
