* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  overflow-x: hidden;
  background: linear-gradient(to bottom right, #00b4db, #0083b0);
  color: white;
}

header {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.navbar {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  left: 0;
  bottom: -4px;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero-content {
  z-index: 5;
  animation: fadeIn 2s ease;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #e0f7ff;
}

.suitcase {
  position: absolute;
  width: 150px;
  animation: floatSuitcase 18s linear infinite;
  z-index: 2;
}

.suitcase:nth-of-type(1) {
  top: 30%;
  left: -150px;
  animation-delay: 0s;
}

.suitcase:nth-of-type(2) {
  top: 60%;
  left: -250px;
  animation-delay: 4s;
}

.suitcase:nth-of-type(3) {
  top: 45%;
  left: -200px;
  animation-delay: 8s;
}

@keyframes floatSuitcase {
  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateX(120vw) rotate(10deg);
    opacity: 0;
  }
}

.plane {
  position: absolute;
  width: 350px;
  top: 15%;
  left: -150px;
  z-index: 3;
  animation: flyPlane 25s linear infinite;
}

@keyframes flyPlane {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }

  100% {
    transform: translateX(140vw) translateY(-30px) rotate(5deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Navigation Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: white;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 1rem;
    border-radius: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .plane {
    width: 150px;
    top: 10%;
  }

  .suitcase {
    width: 60px;
  }
}

.six-steps-section {
  background: #f7fbff;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.steps-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #003f7f;
  margin-bottom: 60px;
}

.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.step-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  opacity: 0;
  animation: bloomIn 0.7s ease forwards;
  animation-delay: calc(var(--i) * 0.3s);
  transition: transform 0.3s;
}

.step-box:hover {
  transform: scale(0.92);
}

.step-icon {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 20px;
}

.step-circle {
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-box p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  padding: 0 5px;
}

@keyframes bloomIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .step-box {
    padding: 25px 15px;
  }

  .step-icon {
    font-size: 30px;
  }

  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

.step-spotlight-section {
  background: #f4f9ff;
  padding: 80px 20px;
  text-align: center;
}

.steps-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003f7f;
  margin-bottom: 50px;
}

.spotlight-box {
  position: relative;
  max-width: 600px;
  margin: auto;
  min-height: 340px;
}

.step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease-in-out;
}

.step.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.step .overlay {
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.step-content {
  position: relative;
  z-index: 2;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

.step-circle {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #007bff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.step-icon {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 15px;
}

.step-content p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
}

/* Progress Bar */
.progress-bar-wrapper {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 10px;
  margin-top: 40px;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #007bff;
  transition: width 0.4s ease-in-out;
}

.book-now-btn {
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.book-now-btn:hover {
  background-color: #0056b3;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.3s ease;
  position: relative;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #333;
}

.modal-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.proceed-btn {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.proceed-btn:hover {
  background-color: #218838;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}