/* ========== Slider Base Layout ========== */
.paint-slider {
  position: relative;
  overflow: hidden;
  display: flex;
  background: #f7f9fc;
  min-height: 500px;
}

.slides-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  width: 80%;
}

/* ========== Each Slide ========== */
.slide-item {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  box-sizing: border-box;
}

/* Left Text Content */
.slide-content {
  max-width: 50%;
}

.slide-title {
  font-size: 48px;
  font-weight: 700;
  color: #1257e0;
  margin-bottom: 20px;
}

.slide-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

/* ========== Explore Button ========== */
.slide-btn {
  display: inline-block;
  background-color: #1257e0;
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slide-btn:hover {
  background-color: #0d47c9;
  transform: translateY(-2px);
}

/* ========== Image ========== */
.slide-image img {
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ========== Right Blue Sidebar ========== */
.paint-slider::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: #1257e0;
  z-index: 1;
}

/* Sidebar Titles (optional for dynamic text list) */
.paint-slider .right-menu {
  position: absolute;
  right: 0;
  top: 20%;
  width: 20%;
  color: #fff;
  padding-left: 40px;
  z-index: 2;
}

.right-menu h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.right-menu h3:hover {
  text-decoration: underline;
}

/* ========== Navigation & Counter ========== */
.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50px;
  z-index: 3;
}

.slider-nav span {
  margin: 0 10px;
  cursor: pointer;
  font-size: 28px;
  color: #1257e0;
  font-weight: 700;
}

.slide-count {
  position: absolute;
  bottom: 40px;
  right: 60px; /* moved from left to right */
  font-size: 22px;
  font-weight: 700;
  color: #1257e0;
  z-index: 3;
}
