.elementor-5406 .elementor-element.elementor-element-274a023{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}#elementor-popup-modal-5406{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-5406 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-5406 .dialog-close-button{display:flex;}#elementor-popup-modal-5406 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-76857bd */<style>
/* Popup Overlay */
.roi-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none; /* hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow-y: auto;
}

/* Popup Content with Animation */
.roi-popup-content {
  background: #fff;
  border-radius: 12px;
  max-width: 750px;
  width: 95%;
  padding: 15px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transform: translateY(-50px);
  opacity: 0;
  animation: slideIn 0.5s forwards;
}

/* Slide-in animation */
@keyframes slideIn {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Close Button */
.roi-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #d4af37;
  transition: transform 0.2s;
}

.roi-close:hover {
  transform: rotate(90deg);
}

/* Title in Orange */
.roi-title {
  color: #d4af37; /* orange */
  text-align: center;
}

/* Maintain previous card styles */
.roi-card {
  flex: 1 1 300px;
  min-width: 260px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  margin: 5px;
}

/* Container flex layout */
.roi-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .roi-container {
    flex-direction: column;
    gap: 8px;
  }
}
</style>

<script>
// Show popup with animation
function showRoiPopup() {
  const popup = document.getElementById("roiPopup");
  popup.style.display = "flex";
}

// Close popup
document.getElementById("closePopup").addEventListener("click", function() {
  const popup = document.getElementById("roiPopup");
  popup.style.display = "none";
});/* End custom CSS */