.nvl-hero-slider-wrapper {
  margin-bottom: 3rem;
  direction: ltr;
}

.nvl-hero-slider {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  background: #000;
}

.nvl-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.swiper-slide-active .nvl-slide-bg {
  transform: scale(1.1);
}

.nvl-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  z-index: 1;
}

.nvl-slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
  color: #fff;
  text-align: right;
  padding: 2rem;
  direction: rtl;
}

.nvl-slide-badge {
  display: inline-block;
  background: var(--nvl-primary-color);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.nvl-slide-title {
  font-size: 3rem;
  font-weight: 900;
  margin: 0 0 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.nvl-slide-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nvl-slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.nvl-slide-btn:hover {
  background: var(--nvl-primary-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--nvl-primary-color);
  width: 30px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .nvl-hero-slider {
    height: 400px;
  }

  .nvl-slide-content {
    width: 100%;
    left: 0;
    padding: 1.5rem;
    bottom: 0;
    top: auto;
    transform: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  }

  .nvl-slide-title {
    font-size: 1.8rem;
  }

  .nvl-slide-excerpt {
    display: none;
  }

  .nvl-slide-overlay {
    background: transparent;
  }
}
