.success-section {
  padding: 100px 20px 80px;
  background: #f2f2f2;
  overflow: hidden;
}

.success-wrapper {
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.success-heading {
  position: absolute;
  width: 50%;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 2;
}

.success-title {
  font-size: 42px;
  font-weight: 800;
}

.plane {
  width: 160px;
  margin-top: -40px;
  animation: floatPlane 4s ease-in-out infinite;
}

@keyframes floatPlane {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.success-slider {
  position: relative;
  padding-top: 120px;
}

.story-viewport {
  overflow: hidden;
  width: 100%;
}

.story-track {
  position: relative;
}

.story-item {
  display: none;
}

.story-item.active {
  display: block;
  animation: fadeStory .3s ease;
}

@keyframes fadeStory {
  from { opacity: 0; transform: translateX(35px); }
  to   { opacity: 1; transform: translateX(0); }
}

.story-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.story-image {
  width: 50%;
}

.story-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.story-content {
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 55%;
  background: #ffd166;
  padding: 45px 40px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 18px 40px rgba(246,129,33,0.45);
}

.story-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.story-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.story-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.story-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.story-arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  font-size: 22px;
  cursor: pointer;
  transition: .3s ease;
  z-index: 5;
}

.story-arrow.prev { left: -55px; }
.story-arrow.next { right: -55px; }

.story-arrow:hover {
  background: #ffd166;
  color: #000;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .success-heading {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }

  .success-slider {
    padding-top: 20px;
  }

  .story-box {
    flex-direction: column;
  }

  .story-image {
    width: 100%;
  }

  .story-image img {
    height: 300px;
  }

  .story-content {
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: -90px;
  }

  .story-arrow.prev {
    margin-left: 40px;
  }

  .story-arrow.next {
    margin-right: 40px;
  }
}
