/* Slider Wrapper */
.ce-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* Each Slide */
.ce-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 60px;
  color: #fff;
  position: relative;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

/* Large faint background text */
.ce-slide::before {
  /* content: "WP EXPERTS"; */
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 100px;
  font-weight: 900;
  letter-spacing: 5px;
  opacity: 0.08;
  color: #fff;
  z-index: 0;
}

/* Inner Content Container */
.ce-slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Content */
.ce-slide-left {
  flex: 1;
  color: #fff;
}

.ce-slide-left h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.ce-slide-left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #fff;
}

.ce-slide-left .ce-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none !important;
}

.ce-slide-left .ce-btn:hover {
  background: #222;
  color: #fff;
}

/* Right Side Image */
.ce-slide-right {
  flex: 1;
  text-align: right;
}

.ce-slide-right img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  /* background: #fff; */
  color: #000;
  /* border-radius: 50%;
  width: 40px;
  height: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: 0.3s; */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ff4d4f;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.6);
  opacity: 1;
  width: 30px;
  height: 4px;
  border-radius: 4px;
}

.swiper-pagination-bullet-active {
  background: #fff;
}
