.vv-hero-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-height: 500px;
}

/* SLIDE BASE */
.vv-slide {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ACTIVE */
.vv-slide.active {
  display: flex;
}

/* SLIDE ANIMATION STATES */
.vv-slide.enter-right {
  display: flex;
  animation: enterFromRight 0.7s ease forwards;
}

.vv-slide.exit-left {
  animation: exitToLeft 0.7s ease forwards;
}

.vv-slide.enter-left {
  display: flex;
  animation: enterFromLeft 0.7s ease forwards;
}

.vv-slide.exit-right {
  animation: exitToRight 0.7s ease forwards;
}

/* KEYFRAMES */
@keyframes enterFromRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes exitToLeft {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(-100%);opacity: 0; }
}

@keyframes enterFromLeft {
  from { transform: translateX(-100%);opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

@keyframes exitToRight {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}

/* ===== REST OF YOUR UI (UNCHANGED) ===== */

.vv-bg-text {
  position: absolute;
  left: 56%;
  top: 31%;
  transform: translate(-50%, -50%);
  font-size: 280px;
  font-weight: 900;
  letter-spacing: 14px;
  color: #000;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

.vv-left {
  width: 50%;
  z-index: 3;
}

.vv-left h2 {
  font-size: 55px;
  font-family: 'dashicons';
  line-height: 1.1;
  font-weight: 800;
  color: #0b1242;
}

.vv-left .red { color: #b3001b; }

.vv-left p {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  max-width: 530px;
  font-weight: 400;
}

.vv-btn {
  margin-top: 26px;
  display: inline-block;
  background: #b3001b;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
}

.vv-right {
  width: 50%;
  z-index: 4;
  margin-top: 75px;
  margin-right: 130px !important;
}

.vv-right img {
  max-width: 100%;
  transform: translateX(30px);
}

.vv-pagination {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vv-dot {
  width: 8px;
  height: 8px;
  background: #dcdcdc;
  border-radius: 50%;
}

.vv-dot.active {
  background: #b3001b;
}

.vv-arrows {
  position: absolute;
  right: 40px;
  bottom: 10px;
  display: flex;
  gap: 14px;
}

.vv-prev,
.vv-next {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}
