.pum-overlay.pum-active,
 .pum-overlay.pum-active .popmake.active {
      display: block !important;
 }

.main-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto; /* This centers the container horizontally */
    /* Add any other styles you need */
}

.elementor-accordion .elementor-accordion-item {
    margin-bottom: 20px; /* Adjust the spacing value as needed */
}

    .chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-height: 80vh;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  border-radius: 12px 12px 8px 8px;
  background: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  z-index: 9999;
  transition: box-shadow 0.2s;
  overflow-y: auto;
}
@media (max-width: 500px) {
  .chat-widget {
    width: 98vw;
    right: 1vw;
    bottom: 1vw;
    border-radius: 12px;
    max-height: 98vh;
  }
}
.chat-header {
  background: #2563eb;
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
.chat-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}
.chat-toggle-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  transition: color 0.2s;
}
.chat-body {
  padding: 20px;
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.97rem;
  color: #222;
}
.chat-form input,
.chat-form select,
.chat-form textarea {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  background: #f9fafb;
  transition: border 0.2s;
}
.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus {
  border-color: #2563eb;
  outline: none;
  background: #fff;
}
.chat-form textarea {
  min-height: 60px;
  resize: vertical;
}
.chat-form button[type="submit"] {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-form button[type="submit"]:hover {
  background: #1e40af;
}
.chat-minimized {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  position: fixed;
  bottom: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 9999;
  font-size: 2rem;
  border: none;
  transition: background 0.2s;
}
.chat-minimized:hover {
  background: #1e40af;
}
@media (max-width: 500px) {
  .chat-widget {
    width: 98vw;
    right: 1vw;
    bottom: 1vw;
    border-radius: 12px;
  }
}