.banner-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.banner-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.banner-hero-content {
  position: relative;
  text-align: center;
  max-width: 90%;
}

.banner-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1.3;
  color: var(--soft-ivory);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .banner-hero {
    height: 60vh;
  }

  .banner-hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .banner-hero {
    height: 35vh;
  }

  .banner-hero-content h1 {
    font-size: 1.6rem;
  }
}




.journy-time-line-wrapper .kmo-section-title{
padding: 20px 0 0;
margin-bottom: 0;
}

.description {
 padding: 1.6rem 0;
 font-size: 1.6rem;
 line-height: 1.7;
 margin: auto;
 text-align: center;
 color: #333333;
  max-width: 70%;
  width: 100%;
}
    /* Journey Timeline Section */
.journey-timeline-section {
  /* padding: 100px 0; */
  background: var(--soft-ivory);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.timeline {
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 5px 25px 5px rgba(0,0,0,0.2);
}

.timeline .swiper-container {
  height: 100vh;
  width: 100%;
  position: relative;
}

.timeline .swiper-wrapper {
  transition: 2s cubic-bezier(.68,-0.4,.27,1.34) .2s;
}

.timeline .swiper-slide {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  background-color: rgba(139, 107, 97, 0.7);
  box-shadow: -230px 0 150px 60vw rgba(139, 107, 97, 0.7);
  border-radius: 100%;
}

.timeline .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 70%;
  right: 50%;
  top: 13%;
  transform: translate(50%, 0);
  font-size: 12px;
  z-index: 2;
}

.timeline .timeline-year {
  display: block;
  font-style: italic;
  font-size: 50px;
  margin-bottom: 30px;
  transform: translate3d(20px, 0, 0);
  color: var(--white);
  font-weight: 300;
  opacity: 0;
  transition: .2s ease .4s;
}

.timeline .timeline-title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 40px;
  margin: 0 0 30px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: .2s ease .5s;
}

.timeline .timeline-text {
  font-family: "Syne", sans-serif;
  line-height: 1.5;
  font-size: 20px;
  opacity: 0;
  transform: translate3d(20px, 0, 0);
  transition: .2s ease .6s;
}

.timeline .swiper-slide-active .timeline-year,
.timeline .swiper-slide-active .timeline-title,
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  transform: translate3d(0,0,0);
}

.timeline .swiper-pagination {
  right: 15%!important;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}

.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.164);
}

.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: var(--white);
  margin: 15px 0!important;
  position: relative;
}

.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.5px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--white);
  transform: scale(0);
  transition: .2s;
}

.timeline .swiper-pagination-bullet-active::before {
  transform: scale(1);
}

.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: .2s;
  color: var(--white) !important;
}

/* Prev/next arrows */
.timeline .swiper-button-prev {
  left: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.timeline .swiper-button-next {
  right: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

/* Mouse wheel scroll */
.mouse-wheel-hint {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: var(--white);
  font-family: "Syne", sans-serif;
  font-size: 14px;
  display: none;
}

.mouse-wheel-hint span {
  display: block;
  margin-bottom: 10px;
}

.mouse-wheel-hint .arrow {
  font-size: 24px;
  animation: bounce 2s infinite;
}

/* Last slide indicator */
.last-slide-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  border-radius: 25px;
  font-family: "Syne", sans-serif;
  font-size: 14px;
  color: var(--deep-rose);
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  max-width: 80%;
  display: none;
}

.swiper-slide:last-child .last-slide-indicator {
  opacity: 1;
  display: block;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Progress indicator */
.timeline-progress {
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(139, 107, 97, 0.1);
  z-index: 1;
  display: none;
}

.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--rose-gold), var(--deep-rose));
  transition: height 0.5s ease;
}

@media screen and (min-width: 768px) {
  .timeline-progress {
    display: block;
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-10px);}
  60% {transform: translateY(-5px);}
}

/* Mobile responsive */
@media screen and (min-width: 768px) {
  .timeline .swiper-pagination { display: flex; }
  .mouse-wheel-hint { display: block; }

  .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 50vw rgba(139, 107, 97, 0.7);
  }

  .timeline .swiper-slide-content {
    right: 30%;
    top: 50%;
    transform: translateY(-50%);
    width: 510px;
    font-size: 11px;
    text-align: right;
  }

  .timeline .swiper-button-prev {
    top: 15%;
    left: auto;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }

  .timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    right: 15%;
    transform: rotate(90deg) translate(0, 10px);
  }
}

@media screen and (min-width: 1024px) {
  .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    width: 240px;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(139, 107, 97, 0.7);
  }

  .timeline .swiper-slide-content { right: 25%; }
}