.elementor-2527 .elementor-element.elementor-element-75eaafc8{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-282c4c30 *//* ===== Transport Mela Bubbly Ask Form ===== */
.ap-form {
  background: #f9faff;              /* light bluish background */
  border-radius: 20px;              /* big rounded edges = bubbly */
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

/* Labels */
.ap-form label {
  font-weight: 600;
  color: #263779;                   /* brand blue */
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

/* Inputs & Textareas */
.ap-form input[type="text"],
.ap-form input[type="email"],
.ap-form input[type="password"],
.ap-form select,
.ap-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e3e6f3;
  border-radius: 12px;              /* rounded = bubbly */
  background: #ffffff;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
  margin-bottom: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Focus effect */
.ap-form input:focus,
.ap-form select:focus,
.ap-form textarea:focus {
  border-color: #263779;             /* blue border on focus */
  box-shadow: 0 0 6px rgba(38, 55, 121, 0.3);
  outline: none;
}

/* Buttons */
.ap-btn,
.ap-form button,
.ap-form input[type="submit"],
.ap-form .ap-btn-primary {
  all: unset;
  display: block;
  width: 100%;                      /* mobile friendly full width */
  background-color: #263779;
  color: #ffffff !important;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

/* Hover */
.ap-btn:hover,
.ap-form button:hover,
.ap-form input[type="submit"]:hover,
.ap-form .ap-btn-primary:hover {
  background-color: #263779;
  color: #ffffff !important;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(38, 55, 121, 0.35);
}

/* Active (pressed) */
.ap-btn:active,
.ap-form button:active,
.ap-form input[type="submit"]:active,
.ap-form .ap-btn-primary:active {
  background-color: #263779;
  color: #ffffff !important;
  transform: scale(0.98/* End custom CSS */