/* Tabs */
.maya-tabs [role="tab"] {
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.maya-tabs [role="tab"][aria-selected="true"] {
  background-color: #fff;
  color: #d6312f;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.maya-tabs [role="tab"][aria-selected="false"] {
  color: #666;
}

/* Slider */
.maya-slider-container {
  position: relative;
  overflow: hidden;
}
.maya-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.maya-slider-track > * {
  flex: 0 0 100%; /* each slide takes full width */
}
.maya-slider-nav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}
.maya-slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}
.maya-slider-nav button:hover {
  background-color: #f9f9f9;
}

.maya-services-panel-left,
.maya-services-panel-right {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
 /* Progress bar under tabs */
  .maya-industries-tab {
    position: relative;
  }
  .maya-industries-tab .progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #D6312F;
    transition: width linear;
  }
