.wp-slider-pro-container {
  width: 100%;
  max-width: 1900px;
  height: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wp-slider-pro-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.wp-slider-pro-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.wp-slider-pro-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wp-slider-pro-slide.active {
  opacity: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

/* Removed background box from slide content - text now floats directly over image */
.slide-content {
  position: relative;
  z-index: 2;
  padding: 60px;
  max-width: 600px;
  color: white;
}

.slide-content.text-left {
  text-align: left;
  margin-left: 0;
}

.slide-content.text-center {
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}

.slide-content.text-right {
  text-align: right;
  margin-left: auto;
  margin-right: 60px;
}

/* Removed text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) */
.slide-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

/* Removed text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) */
.slide-content p {
  font-size: 18px;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.slide-button {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Made arrow circles transparent with hover effect at 10% opacity */
.wp-slider-pro-prev,
.wp-slider-pro-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: transparent;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  padding: 0;
}

.wp-slider-pro-prev:hover,
.wp-slider-pro-next:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.wp-slider-pro-prev {
  left: 20px;
}

.wp-slider-pro-next {
  right: 20px;
}

.wp-slider-pro-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .wp-slider-pro-container {
    height: 400px;
  }

  .slide-content {
    padding: 40px;
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 36px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .slide-content.text-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .slide-content.text-right {
    margin-left: auto;
    margin-right: 40px;
  }
}

/* Added mobile text position classes for center-top, center-bottom, left-top, left-bottom, right-top, right-bottom */
@media (max-width: 768px) {
  .wp-slider-pro-container {
    height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .wp-slider-pro-wrapper,
  .wp-slider-pro-slides,
  .wp-slider-pro-slide {
    height: 100%;
    min-height: 100%;
  }

  .wp-slider-pro-prev,
  .wp-slider-pro-next {
    width: 40px;
    height: 40px;
  }

  .wp-slider-pro-prev {
    left: 10px;
  }

  .wp-slider-pro-next {
    right: 10px;
  }

  .slide-content {
    padding: 20px;
    max-width: 90%;
    /* removed background: rgba(0, 0, 0, 0.3) to match desktop - text now floats directly over image */
    position: absolute;
  }

  .slide-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .slide-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .slide-button {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Mobile center-top positioning */
  .slide-content.mobile-center-top {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  /* Mobile center-bottom positioning */
  .slide-content.mobile-center-bottom {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  /* Mobile left-top positioning */
  .slide-content.mobile-left-top {
    top: 20px;
    left: 20px;
    text-align: left;
  }

  /* Mobile left-bottom positioning */
  .slide-content.mobile-left-bottom {
    bottom: 20px;
    left: 20px;
    text-align: left;
  }

  /* Mobile right-top positioning */
  .slide-content.mobile-right-top {
    top: 20px;
    right: 20px;
    text-align: right;
  }

  /* Mobile right-bottom positioning */
  .slide-content.mobile-right-bottom {
    bottom: 20px;
    right: 20px;
    text-align: right;
  }

  /* Desktop fallback positions for mobile view */
  .slide-content.text-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .slide-content.text-right {
    margin-left: auto;
    margin-right: 20px;
  }
}

@media (max-width: 480px) {
  .wp-slider-pro-container {
    height: 100vh;
    min-height: 100vh;
  }

  .slide-content {
    padding: 15px;
    max-width: 95%;
  }

  .slide-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .slide-content p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .wp-slider-pro-indicators {
    bottom: 10px;
    gap: 5px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }

  .indicator.active {
    width: 20px;
  }

  .slide-content.text-center {
    left: 50%;
    transform: translateX(-50%);
  }

  .slide-content.text-right {
    margin-left: auto;
    margin-right: 15px;
  }
}
