.simple-slides-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 10px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.simple-slides-title-section {
    text-align: left;
}
.simple-slides-title-section h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #000;
}
.simple-slides-slider-wrapper {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 1;
}

.simple-slides-slider-wrapper .swiper {
    position: relative;
    overflow: hidden;
}

.simple-slides-slider-wrapper .swiper-wrapper {
    align-items: stretch;
    padding-bottom: 60px;
}

.simple-slides-slider-wrapper .swiper-slide {
    flex: 0 0 auto;
    width: auto;
}

/* Progress Bar (Scrollbar) - Purple gradient like screenshot */
.simple-slides-scrollbar {
    position: absolute;
    bottom: 60px !important;
    left: 5px !important;
    right: 20px;
    height: 8px;
    background: rgba(85, 25, 230, 0.15);
    border-radius: 5px;
    z-index: 10;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.simple-slides-scrollbar .swiper-scrollbar-drag {
    background: linear-gradient(90deg, #5519e4 0%, #7c3aed 50%, #5519e4 100%);
    border-radius: 6px;
    height: 100%;
    position: relative;
    cursor: grab;
    min-width: 50%;
    max-width: 70%;
    box-shadow: 0 2px 8px rgba(85, 25, 230, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.simple-slides-scrollbar .swiper-scrollbar-drag:hover {
    background: linear-gradient(90deg, #7c3aed 0%, #9333ea 50%, #7c3aed 100%);
    box-shadow: 0 3px 12px rgba(85, 25, 230, 0.5);
    transform: scaleY(1.2);
}

.simple-slides-scrollbar .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

/* Navigation Container - Below progress bar */
.simple-slides-navigation {
    position: absolute;
    left: 5px;
    display: flex;
    gap: 15px;
    z-index: 10;
    bottom: 5px;
}

.simple-slides-nav-prev,
.simple-slides-nav-next {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #6f42c1;
  border-radius: 50%;
  color: #6f42c1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.simple-slides-nav-prev:hover,
.simple-slides-nav-next:hover {
    background: #6f42c1;
    color: white;
    transform: scale(1.1);
}

.simple-slides-nav-prev:after,
.simple-slides-nav-next:after {
    display: none;
}

.simple-slides-nav-prev i,
.simple-slides-nav-next i {
    font-size: 1.1rem;
    font-weight: normal;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .simple-slides-slider-wrapper .swiper-slide {
    width: 50%;
    }
}

@media (max-width: 768px) {
    .simple-slides-section {
    padding: 10px 0;
    }

    .simple-slides-title-section h2 {
    font-size: 2rem;
    }

    .simple-slides-slider-wrapper .swiper-slide {
    width: 50%;
    }
    
    .simple-slides-navigation {
    left: 0;
    gap: 10px;
    }
    
    .simple-slides-nav-prev,
    .simple-slides-nav-next {
    width: 45px;
    height: 45px;
    }
    
    .simple-slides-nav-prev i,
    .simple-slides-nav-next i {
    font-size: 1rem;
    }
    
    .simple-slides-scrollbar {
    bottom: 45px !important;
    }

    .simple-slides-slider-wrapper {
    padding-bottom: 0;
    }
}

@media (max-width: 576px) {
    .simple-slides-slider-wrapper .swiper-slide {
    width: 100%;
    }

    .simple-slides-title-section h2 {
    font-size: 1.75rem;
    }

    .simple-slides-nav-prev,
    .simple-slides-nav-next {
    width: 42px;
    height: 42px;
    }
}

/* Simple Slide Card Styles */
.simple-slide-item {
  height: 100%;
}

.simple-slide-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background: none;
  padding: 0;
  width: 350px;
}

.simple-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.simple-slide-image {
  width: 100%;
  opacity:1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 16 / 9;
  min-height: 420px;
}

.simple-slide-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.simple-slide-card:hover .simple-slide-image img {
  transform: scale(1.08);
}

.simple-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.65) 100%
  ) !important;
  z-index: 1;
}

.simple-slide-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #ffffff;
}

.simple-slide-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.2em * 2);
  line-height: 1.2em;
}

.simple-slide-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.simple-slide-description {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.simple-slide-description p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.2em * 2);
  line-height: 1.2em;
  margin: 0;
}

/* No image fallback */
.simple-slide-no-image {
  padding: 40px 30px;
  min-height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.simple-slide-no-image .simple-slide-title {
  font-size: 2rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .simple-slide-image {
    height: 360px;
  }

  .simple-slide-content {
    padding: 25px;
  }

  .simple-slide-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .simple-slide-image {
    height: 340px;
  }
  .simple-slide-card{
    width: auto !important;
  }
  .simple-slide-content {
    padding: 24px;
  }

  .simple-slide-title {
    font-size: 1.5rem;
    padding-bottom: 14px;
  }

  .simple-slide-title::after {
    width: 50px;
    height: 2.5px;
  }

  .simple-slide-description {
    font-size: 0.95rem;
  }
  .manufacturers .simple-slide-card, .milestones .simple-slide-card {
    width: auto !important;
  }
  .milestones .simple-slides-slider-wrapper .swiper-wrapper{
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .simple-slide-image {
    height: 320px;
  }
  .simple-slide-card{
    width: auto !important;
  }
  .simple-slide-content {
    padding: 22px;
  }

  .simple-slide-title {
    font-size: 1.4rem;
    padding-bottom: 12px;
  }

  .simple-slide-description {
    font-size: 0.9rem;
  }

  .simple-slide-no-image {
    min-height: 280px;
    padding: 35px 25px;
  }
  .manufacturers .simple-slide-card, .milestones .simple-slide-card {
    width: auto !important;
  }
  .milestones .simple-slides-slider-wrapper .swiper-wrapper{
    padding-bottom: 20px;
  }
}

.manufacturers .swiper-wrapper {
    padding-bottom: 0;
    justify-content: space-between;
}

.manufacturers .simple-slide-card, .milestones .simple-slide-card {
  width: 400px;
}

.manufacturers .simple-slides-section, .milestones .simple-slides-section{
  background: none;
  padding: 0;
}

.milestones .simple-slides-slider-wrapper .swiper-wrapper{
  padding-bottom: 0;
}