.elementor-649 .elementor-element.elementor-element-1609092{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-649 .elementor-element.elementor-element-7495f48{padding:20px 20px 20px 20px;text-align:center;}/* Start custom CSS for html, class: .elementor-element-03274df *//* === Button Wrapper === */
.cta-button-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* right-align */
  align-items: center;
  margin: 2px 0;
  padding-right: 40px;
  position: relative;
  z-index: 10; /* keeps button above everything */
  box-sizing: border-box;
}

/* === Button Styling === */
.openModalBtn {
  background: linear-gradient(90deg, #ff4f88 0%, #ff85a7 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0px 10px 25px rgba(255, 79, 136, 0.35);
  animation: vibrate 0.6s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  text-align: center;
  z-index: 11; /* ensures clickability */
  position: relative;
}

/* Hover effect */
.openModalBtn:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 30px rgba(255, 79, 136, 0.45);
}

/* === Horizontal Vibrate Animation === */
@keyframes vibrate {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  100% { transform: translateX(0); }
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
  .cta-button-wrapper {
    justify-content: center;
    padding-right: 0;
  }
  .openModalBtn {
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 45px;
    animation: vibrate 0.8s infinite ease-in-out;
  }
}/* End custom CSS */