.help-trigger{
     cursor: pointer;
  color: red;
  font-weight: 500;
}
.help-dropdown-wrapper {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.help-trigger {
  cursor: pointer;
  color: #fff;
  font-weight: 500;
}

.help-popup {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  text-align: center;
}

.help-dropdown-wrapper:hover .help-popup {
  display: block;
}

/* Styling inner content */
.help-title {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.help-phone {
  font-size: 22px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.phone-icon {
  color: #3ba9f4;
  font-size: 20px;
}

.chat-line {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.help-links {
  font-size: 14px;
  color: #2566e8;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.help-links a {
  color: #2566e8;
  text-decoration: none;
}

.help-links .dot {
  color: #aaa;
}
 
 .help-popup {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.help-dropdown-wrapper:hover .help-popup {
  display: block;
  opacity: 1;
  pointer-events: auto;
}