* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f7fb;
  overflow-x: hidden; /* X-axis scroll band */
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  padding: 10px 40px;
}

/* HEADER */
/* .header {
  background: white;
  padding: 0px 0;
  width: 100%;
} */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Responsive ke liye */
}

.logo {
  color: #2a6df4;
  font-size: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap; /* Mobile mein wrap ho jayenge */
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 104px 0;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 60% 35%; /* 60-35 ratio */
  align-items: start;
  gap: 5%; /* Gap percentage mein for responsiveness */
  width: 100%;
  height: 100%;
}

/* TEXT */
.hero-text {
  width: 100%;
  position: relative;
  padding: 20px;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a; /* Simple black color */
}

/* Simple gradient for animated words */
.animated-words {
  display: inline-block;
  position: relative;
  height: 1.2em;
  min-width: 205px;
  vertical-align: bottom;
  overflow: hidden;
  margin-left: 10px;
}

.word-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: slideWords 10s ease-in-out infinite;
}

.word-item {
  display: flex;
  align-items: center;
  height: 1.2em;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #dda15e; /* Simple blue color */
  white-space: nowrap;
  font-family: "Dancing Script", cursive;
}

@keyframes slideWords {
  0%,
  15% {
    transform: translateY(0);
  } /* Beautiful */
  20%,
  35% {
    transform: translateY(-1.2em);
  } /* Amazing */
  40%,
  55% {
    transform: translateY(-2.4em);
  } /* Perfect */
  60%,
  75% {
    transform: translateY(-3.6em);
  } /* Stunning */
  80%,
  95% {
    transform: translateY(-4.8em);
  } /* Awesome */
  100% {
    transform: translateY(-6em);
  } /* Beautiful again */
}

.hero-text p {
  margin: 25px 0;
  color: #555;
  font-size: clamp(20px, 2vw, 17px);
  line-height: 1.6;
  font-family: "Dancing Script", cursive;

  /* Simple white card */
  /* background: white; */
  padding: 5px 10px;
  /* border-radius: 15px; */
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
}

/* Simple hover effect on paragraph */
.hero-text p:hover {
  /* box-shadow: 0 8px 25px rgba(42, 109, 244, 0.1); */
  transition: all 0.3s ease;
}

/* Decorative elements - simple */
.hero-text h1::before {
  content: "✈️";
  position: absolute;
  left: -40px;
  top: 0;
  font-size: 30px;
  opacity: 0.3;
}

.hero-text h1::after {
  content: "🌍";
  position: absolute;
  right: -40px;
  bottom: 0;
  font-size: 30px;
  opacity: 0.3;
}

/* SEARCH BOX */
.search-box {
  display: flex;
  gap: 15px;
  background: white;
  padding: 12px 12px 12px 25px;
  position: absolute;
  top: 115%;
  left: 15%;
  transform: translateX(-50%);
  width: 160%;

  /* Attractive styling */
  border-radius: 60px; /* More rounded */
  margin-top: 20px;

  /* Shadow effects */
  box-shadow:
    0 20px 35px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(236, 181, 50, 0.2);

  /* Border effect */
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);

  /* Animation */
  transition: all 0.3s ease;
}

.search-box:hover {
  box-shadow: 0 25px 40px rgba(243, 170, 60, 0.25);
  /* transform: translateX(-50%) translateY(-5px); */
}

.search-box input {
  padding: 15px 20px;
  border: 2px solid #f7f2ee;
  border-radius: 50px;
  min-width: 180px;
  flex: 1;

  /* Typography */
  font-size: 15px;
  font-weight: 500;
  color: #333;

  /* Background and effects */
  background: #f8faff;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #dda15e;
  background: white;
  box-shadow:
    0 0 0 4px rgba(229, 142, 29, 0.15),
    /* Top, Bottom, Left, Right sab equal */ 0 0 0 8px rgba(234, 143, 39, 0.05);
}

.search-box input::placeholder {
  color: #aaa;
  font-weight: 400;
}

/* Special styling for date input */
.search-box input[type="date"] {
  color: #555;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
}

.search-box input[type="number"]::-webkit-inner-spin-button,
.search-box input[type="number"]::-webkit-outer-spin-button {
  opacity: 0.5;
  height: 20px;
}

.search-box button {
  background: linear-gradient(135deg, #dda15e, #c57e2c);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  cursor: pointer;

  /* Typography */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  /* Effects */
  box-shadow: 0 10px 20px rgba(244, 160, 42, 0.3);
  transition: all 0.3s ease;

  /* Hover effect */
  position: relative;
  overflow: hidden;
}

.search-box button:hover {
  background: linear-gradient(135deg, #d08c3f, #b86d17);
  box-shadow: 0 15px 25px rgba(250, 173, 79, 0.4);
  transform: scale(1.05);
}

.search-box button:active {
  transform: scale(0.95);
}

/* Add icon to button (optional) */
.search-box button::after {
  margin-left: 8px;
  font-size: 14px;
  opacity: 0.9;
}
/* IMAGES GRID - FIXED HEIGHTS */
.hero-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 15px;
  width: 100%;
  position: relative;
}

/* FIXED HEIGHTS FOR EACH GRID POSITION */
.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

/* Fixed heights for each position (keeps grid stable) */
.hero-images img:nth-child(1) {
  grid-row: span 2;
  height: 380px;

  border-top-left-radius: 60px;
}

.hero-images img:nth-child(2) {
  grid-row: span 1;
 height: 180px;
}

.hero-images img:nth-child(3) {
  grid-row: span 2;
  height: 380px;
  border-bottom-right-radius: 60px;
  border-top-right-radius: 60px;
}

.hero-images img:nth-child(4) {
  grid-row: span 1;
 height: 180px;
}

.hero-images img:nth-child(5) {
  grid-row: span 2;
  height: 280px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.hero-images img:nth-child(6) {
  grid-row: span 1;
   height: 200px;
  border-bottom-right-radius: 60px;
}

/* Fade animations */
.fade-out-all img {
  opacity: 0;
}

.fade-in-all img {
  opacity: 1;
}

.hero-images img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

