*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
}

html {
  line-height: 1.6;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
textarea,
button,
select,
a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.background-image {
  background-image: url("/assets/images/airlinereservationdesk.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.cutstom-container {
  max-width: 50rem;
  z-index: 1;
  padding: 20px;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-10deg);
  }
  40% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(-10deg);
  }
  80% {
    transform: rotate(10deg);
  }
}

.ringing {
  animation: ring 0.8s linear infinite;
}
.m-width {
  max-width: 40rem;
  height: auto;
}

.ringing:hover {
  animation-play-state: paused;
}
.sticky-button {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}

/* Tailwind CSS custom utility for transition */
.transition-height {
  transition: height 300ms ease-out;
}

/* Mobile menu styles */
#mobile-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

/* Menu open state */
#mobile-menu.open {
  height: auto;
  padding: 1rem;
}

.contact-info {
  color: white;
}

.contact-info h2 {
  font-size: 1.75rem;
  font-weight: 600;
}

.contact-info a {
  display: inline-block;
  margin-top: 10px;
  color: white;
  font-size: 1.25rem;
}

.form-section {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-section input[type="text"], .form-section input[type="email"], .form-section input[type="tel"], .form-section input[type="date"] {
  border-bottom: 2px solid #6B21A8;
}

.form-section input:focus {
  outline: none;
  border-bottom: 2px solid #9333EA;
}

.hero-section {
  background-image: url('your-background-image.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.highlight {
  color: #6B21A8;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
}

.section-content {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 181, 181, 0.6); /* Initial state (no pulse) */
  }
  50% {
    box-shadow: 0 0 0 20px rgba(40, 40, 41, 0.3); /* Expand the shadow */
  }
  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0); /* Reset shadow */
  }
}

/* Floating Pulse Button */
.floating-pulse {
  position: relative;
  display: inline-flex;
  /* align-items: center;
  justify-content: center; */
  color: white;
  font-size: 14px;
  animation: pulse 1s infinite ease-in-out; 
  overflow: hidden; 
}


