* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.loader-wrapper-cover {
  height: 100vh;
  background: linear-gradient(135deg, #004e92, #000428);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
}

.loader-wrapper {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  font-size: 2.2rem;
  font-weight: 600;
  color:#ffdd00;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.loader-animation {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
}

.sun {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd700, #ff8c00);
  animation: pulse 2s infinite ease-in-out;
}

.plane {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 85px;
  transform: translate(-50%, -50%);
  animation: fly 4.5s infinite ease-in-out;
}

@keyframes fly {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  50% { transform: translate(-50%, -70%) rotate(-10deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.9; }
}

.loading-text {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.loading-text .dotss{
  width: 20px;
  display: inline-block;
}
.travellerImg img{ width: 51px;}

.dotss::after {
  content: '';
  animation: dotss 1.5s steps(3, end) infinite;
}

@keyframes dotss {
  0% { content: ''; }
  33% { content: '.'; }
  66% { content: '..'; }
  100% { content: '...'; }
}
.greatDeals{ display: flex; align-items: center; justify-content: center;}
.tagline {
  font-size: 1rem;
  color: #ccc;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tagline  img{ width: 30px;}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}