.elementor-19650 .elementor-element.elementor-element-7fe4d51{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8f72e66 *//* OVERLAY */
.pro-popupX {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* BOX */
.pro-boxX {
  width: 90%;
  max-width: 520px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  animation: popUpX 0.5s ease;
}

/* ANIMATION */
@keyframes popUpX {
  from { transform: translateY(30px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

/* CLOSE */
.pro-closeX {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
}

/* TITLE */
.pro-titleX {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg,#3b82f6,#06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.pro-subX {
  color: #64748b;
  min-height: 24px;
  margin-bottom: 20px;
}

/* GRID */
.pro-gridX {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.pro-gridX div {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.pro-gridX div:hover {
  background: #e0f2fe;
  transform: translateY(-3px);
}

/* BUTTON */
.pro-btnX {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg,#3b82f6,#2563eb);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.pro-btnX:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(59,130,246,0.3);
}

/* MOBILE */
@media (max-width: 500px) {
  .pro-gridX {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */