:root {
  --primary: #0b5ed7;
  --bg: #f4f9ff;
  --radius: 16px;
}

.services-section {
  padding: 50px 20px;
  background: var(--bg);
}

.section-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

/* Slider Container */
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* Slider */
.slider {
  overflow: hidden;
}

/* Slides */
.slides {
  display: flex;
  gap: 16px;
  transition: transform 0.6s ease;
}

/* Story Card */
.story-card {
  flex: 0 0 auto;
  width: 180px;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(to top, rgba(0, 38, 255, 0.7), transparent);
  padding: 6px;
  border-radius: 8px;
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  border: none;
  font-size: 22px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.left { left: -10px; }
.right { right: -10px; }

/* Indicators */
.indicators {
  margin-top: 20px;
  text-align: center;
}

.indicators span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 4px;
  transition: 0.3s;
}

.indicators .active {
  background: var(--primary);
}

/* ===========================
   Responsive
=========================== */

/* Tablet */
@media (max-width: 992px) {
  .story-card {
    width: 160px;
    height: 230px;
  }
}

/* Mobile */
@media (max-width: 600px) {

  .story-card {
    width: 140px;
    height: 210px;
  }

  /* Hide arrows on mobile */
  .nav-arrow {
    display: none;
  }

  /* Allow manual horizontal scroll */
  .slider {
    overflow-x: auto;
    scroll-behavior: smooth;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }
}
.story-card:hover {
  transform: scale(1.05);
  transition: 0.3s;
}