/* Our Solutions Enhanced Section */
.our_solutions_enhanced {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.our_solutions_enhanced h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--cerise);
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
  flex-wrap: wrap;
    position: relative;
  z-index: 10;
}

.item-bg {
  z-index: 1;
}

.tablink {
  padding: 10px 20px;
  border: 1px solid var(--cerise);
  background-color: white;
  color: var(--cerise);
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.tablink:hover, .tablink.active {
  background-color: var(--cerise);
  color: white;
}

/* Tab content */
.tabcontent {
  display: none;
  animation: fadeEffect 0.5s;
}

.solution_slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.solution_slider img {
  max-height: 250px;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Text description */
.solution_description {
  margin-top: 20px;
  text-align: center;
}

.solution_description h3 {
  color: var(--cerise);
  margin-bottom: 10px;
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .solution_slider {
    flex-direction: column;
    align-items: center;
  }

  .solution_slider img {
    width: 90%;
    height: auto;
  }
}