.elementor-1794 .elementor-element.elementor-element-8b92a5d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-70px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1794 .elementor-element.elementor-element-4e23354{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-1794 .elementor-element.elementor-element-8b92a5d{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-4e23354 */.marquee {
  width: 100%;
  background-color: #4d40ca;   /* Deep blue background */
  color: #FFFFFF;
  padding: 25px;
  border-left: 10px solid #FF914D;  /* Professional accent bar */
  overflow: hidden;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

/* Smooth slide animation for text */
.marquee h2,
.marquee p {
  margin: 0;
  white-space: nowrap;
  animation: slide-left 12s linear infinite;
}

/* Heading */
.marquee h2 {
  font-size: 26px;
  font-weight: 700;
  color: #FF914D;    /* Highlight title in orange */
  animation-duration: 14s;   /* Moves slightly faster */
}

/* Subtitle */
.marquee p {
  font-size: 16px;
  opacity: 0.9;
}

/* Clean left-to-right scroll */
@keyframes slide-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-87433b7 *//* ===== Form Heading ===== */
.form-heading {
  font-size: 32px;
  font-weight: 700;
  color: #4d40ca;
  margin-bottom: 20px;
}

.contact-form-items p {
  color: #666;
  font-size: 15px;
}

/* ===== Form Container ===== */
.contact-form-items {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===== Input Wrapper ===== */
.form-clt {
  position: relative;
}

/* ===== Inputs & Selects ===== */
.form-clt input,
.form-clt select,
.form-clt textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #e5e5e5;
  font-size: 14px;

  /* FIXED */
  color: #000000;               /* text black */
  background-color: #ffffff;    /* fixed typo */

  transition: all 0.3s ease;
}

/* ===== Placeholder Color ===== */
.form-clt input::placeholder,
.form-clt textarea::placeholder {
  color: #777; /* slightly darker for visibility */
}

/* ===== Focus State ===== */
.form-clt input:focus,
.form-clt select:focus,
.form-clt textarea:focus {
  border-color: #4d40ca;
  box-shadow: 0 0 0 4px rgba(77, 64, 202, 0.15);
  outline: none;

  color: #000000; /* keep text black on focus */
}

/* ===== Select Dropdown Arrow Fix ===== */
.form-clt select {
  cursor: pointer;
  color: #000000;
}

/* ===== Textarea ===== */
.form-clt textarea {
  min-height: 130px;
  resize: vertical;
}

/* ===== Button ===== */
.book-flight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  min-width: 220px;
  height: 80px;

  background: linear-gradient(135deg, #4d40ca, #6a5cff);
  border: none;
  border-radius: 50px;

  color: #ffffff;
  font-size: 18px;
  font-weight: 600;

  cursor: pointer;
  box-shadow: 0 14px 30px rgba(77, 64, 202, 0.4);
  transition: all 0.35s ease;
}

/* Text */
.book-flight-btn .btn-text {
  white-space: nowrap;
}

/* Circle Icon */
.book-flight-btn .btn-icon {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #4d40ca;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 700;
  transition: all 0.35s ease;
}

/* Hover Effects */
.book-flight-btn:hover {
  background: linear-gradient(135deg, #ff7b2e, #FF914D);
  box-shadow: 0 18px 35px rgba(255, 145, 77, 0.45);
  transform: translateY(-3px);
}

.book-flight-btn:hover .btn-icon {
  background: #4d40ca;
  color: #ffffff;
  transform: translateX(6px);
}

/* Active Click */
.book-flight-btn:active {
  transform: scale(0.97);
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .book-flight-btn {
    min-width: 190px;
    height: 58px;
    font-size: 16px;
  }

  .book-flight-btn .btn-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}/* End custom CSS */