/* .why-choose-journey {
  padding: 90px 20px;
  background: #ffffff;
}

.why-choose-journey h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 10px;
}

.why-choose-journey .subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
  font-size: 18px;
  color: #666;
}

.journey-line {
  max-width: 900px;
  margin: auto;
  position: relative;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #ff6a10, #0b1c2d);
}

.journey-item {
  display: flex;
  gap: 30px;
  margin-bottom: 55px;
  position: relative;
}

.journey-icon {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border: 2px solid #ff6a10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 2;
  transition: transform 0.4s ease, background 0.4s ease;
}

.journey-content h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.journey-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.journey-item:hover .journey-icon {
  background: #ff6a10;
  transform: scale(1.1);
}

.journey-item:hover h4 {
  color: #ff6a10;
} */

.why-travelers {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f8fb, #ffffff);
}

.why-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

.why-image:hover img {
  transform: scale(1);
}

/* Flight Path Animation */
.flight-path {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.15), transparent 60%);
  animation: moveSky 8s ease-in-out infinite;
}

@keyframes moveSky {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.why-content h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.why-content .lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 35px;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-points li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.why-points li span {
  font-size: 24px;
}

.why-points li:hover {
  transform: translateX(8px);
  color: #ff6a10;
}

@media (max-width: 440px) {
  .why-wrap {
      grid-template-columns: 1fr;
      margin: 20px;
      gap: 20px;
  }

  .why-content h2 {
      font-size: 24px;
  }

  .why-travelers {
      padding:40px 0;
  }
  
}