.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 5vw; */
    padding: 10px 10px 10px 10px;
    text-align: center;
    background: linear-gradient(to right, #000428, #004e92);
    color: white;
    text-align: center;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    animation: colorChange 3s infinite alternate;
}

@keyframes colorChange {
    0% {
        color: #ff416c;
    }

    100% {
        color: #ffcc00;
    }
}

.btn-launch {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    font-size: 1.2rem;
    padding: 12px 25px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-launch:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 75, 43, 0.7);
}

.images-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.images-container img {
    width: 40vw;
    max-width: 250px;
    height: auto;
    transition: transform 0.5s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.images-container img:hover {
    transform: scale(1.1);
}

.why-choose {
    margin-top: 30px;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 1);
    }
}

.countdown {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: bold;
    margin-top: 15px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

/* .modal-content {
    background: linear-gradient(to right, #000428, #004e92);
    color: white;
} */


/* Pre book Now offer  */
.popup-advert {
  position: absolute;
  left: 20px;
  top: 155px;
  background: linear-gradient(135deg, #005eff, #00aaff);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 1.8rem;
  max-width: 340px;
  z-index: 1000;
  animation: floaty 4s ease-in-out infinite, pulseBorder 3s infinite;
  user-select: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.popup-advert-mobile {
  position: absolute;
  /* left: 20px;
  top: 155px; */
  background: linear-gradient(135deg, #005eff, #00aaff);
  color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 1.8rem;
  max-width: 340px;
  z-index: 1000;
  animation: floaty 4s ease-in-out infinite, pulseBorder 3s infinite;
  user-select: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.services-section-mobile-hidden {
  display: none;
}

.popup-advert-for-Laptop{
  display: block;
}

/* On mobile screen: show the section */
@media (max-width: 768px) {
  .services-section-mobile-hidden {
      display: block;
  }
  .popup-advert-for-Laptop{
    display: none;
  }
}


.popup-advert h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.highlight-text {
  color: #ffff00;
  text-shadow: 0 0 10px rgba(255, 255, 0, 0.7);
  font-weight: bold;
}

.price-btn {
  display: inline-block;
  background: #fff;
  color: #005eff;
  font-weight: 600;
  padding: 10px 25px;
  font-size: 1.2rem;
  border-radius: 30px;
  margin: 1rem 0;
  transition: 0.3s ease;
  animation: glowPulse 2s infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.price-btn:hover {
  background-color: #ffee00;
  color: #000;
  transform: scale(1.05);
}

.benefit {
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.benefit i {
  color: #00ff88;
  margin-right: 8px;
  font-size: 1.1rem;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulseBorder {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 15px 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.popup-advert .btn-book {
  background: #ffdd00;
  color: #000;
  border: none;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 30px;
  display: block;
  width: 100%;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.popup-advert .btn-book:hover {
  background: #fff200;
  transform: scale(1.03);
}

.btn-book:active {
  transform: scale(0.98);
}

.btn-book:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  animation: none;
}

.terms-collapse ul {
  color: black;
  padding-left: 20px;
  margin-bottom: 0;
  font-size: 0.85rem;
}

.terms-collapse .card {
  border-radius: 10px !important;
}

.form-check-input:checked {
  background-color: #00aaff;
  border-color: #00aaff;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 170, 255, 0.25);
}

.terms-link {
  cursor: pointer;
  transition: all 0.2s;
}

.terms-link:hover {
  text-decoration: underline !important;
  color: #ffdd00 !important;
}

.validation-message {
  color: #ffcccc;
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

.progress-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  margin: 10px 0;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #00ff88, #00aaff);
  border-radius: 10px;
  animation: progressPulse 2s infinite;
}

.limited-offer {
  font-size: 0.8rem;
  margin-top: 5px;
  color: #ffff00;
}

@keyframes progressPulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .popup-advert {
    left: 10px !important;
    right: 10px !important;
    top: auto !important;
    bottom: 15px !important;
    max-width: calc(100% - 20px);
  }
}

.rocket-icon {
  animation: rocketFloat 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes rocketFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-5px) rotate(5deg);
  }

  75% {
    transform: translateY(5px) rotate(-5deg);
  }
}

.confirmation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 90, 255, 0.9);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 10;
}

.confirmation-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.confirmation-overlay i {
  font-size: 3rem;
  color: #00ff88;
  margin-bottom: 15px;
  animation: bounceIn 0.5s;
}

.confirmation-overlay h5 {
  color: white;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.confirmation-overlay p {
  color: #eeeeee;
  text-align: center;
  font-size: 0.9rem;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  60% {
    transform: scale(1.05);
    opacity: 1;
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}