/* Home Portfolio Carousel */
.port-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.port-track::-webkit-scrollbar {
  display: none;
}

.port-card:hover {
  transform: scale(1.02);
}

.port-arrow {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s;
}

.port-arrow-left {
  background: #F2E7CE;
  color: #141414;
}

.port-arrow-right {
  background: #4E7C72;
  color: #fff;
}

.port-arrow:hover {
  opacity: 0.8;
}

/* Before/After Sliders */
.ba-slider {
  height: 320px;
}

/* Tablet */
@media (max-width: 1024px) {
  .ba-slider {
    height: 260px !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .port-card {
    flex: 0 0 260px !important;
    min-height: 340px !important;
  }

  .port-section-heading {
    font-size: 28px !important;
  }

  .ba-slider {
    height: 220px !important;
  }
}
