/* ========================================
   SOLUTIONS TABS
   ======================================== */
.solutions-tabs-wrapper {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 100;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.solutions-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.solutions-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 12px 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.tab-pane {
  display: none;
  animation: tabFadeIn 0.5s ease forwards;
}

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

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reset section padding when in tab mode */
.tab-pane.section-padding {
  padding: 60px 0;
  background: #ffffff !important;
  border: none !important;
}
.solutions-tabs {
  position: relative;
}
.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px 3px 0 0;
  z-index: 10;
}
