.text-dark:hover{
color:black !important;
cursor:pointer;
}
    .error-text {
  color: red;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

    .call-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: 10px;
      border: none;
      background: linear-gradient(135deg, #961f67, #ec45a9);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      box-shadow: 0 6px 18px rgba(0, 86, 179, 0.2);
    }

    .call-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    }

    .lead-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
    }

    .lead-popup-overlay.active {
      display: flex;
    }

    .lead-popup {
      width: 100%;
      max-width: 460px;
      background: #ffffff;
      border-radius: 20px;
      overflow: hidden;
      animation: popupFade 0.35s ease;
      position: relative;
    }

    @keyframes popupFade {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .popup-top {
      background: linear-gradient(135deg,  #961f67, #ec45a9);
      padding: 30px 25px;
      color: #fff;
      text-align: center;
    }

    .popup-top h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .popup-top p {
      font-size: 15px;
      line-height: 1.6;
      opacity: 0.95;
    }

    .popup-body {
      padding: 30px 25px;
    }

    .form-group {
      margin-bottom: 22px;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      color: #222;
      font-size: 15px;
      font-weight: 600;
    }

    .phone-wrapper {
      display: flex;
      align-items: center;
      border: 1px solid #d9e2ef;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      transition: 0.3s ease;
    }

    .phone-wrapper:focus-within {
      border-color: #008cff;
      box-shadow: 0 0 0 3px rgba(0, 140, 255, 0.15);
    }

    .country-code {
      padding: 14px 16px;
      background: #f3f7fc;
      color: #333;
      font-size: 15px;
      font-weight: 600;
      border-right: 1px solid #d9e2ef;
    }

    .phone-wrapper input {
      width: 100%;
      border: none;
      outline: none;
      padding: 14px 16px;
      font-size: 15px;
      color: #222;
    }

    .info-text {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.6;
      margin-top: 12px;
    }

    .submit-btn {
      width: 100%;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg,  #961f67, #ec45a9);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 15px;
      cursor: pointer;
      transition: 0.3s ease;
      margin-top: 5px;
    }

    .submit-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 18px rgba(0, 86, 179, 0.25);
    }

    .close-popup {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      backdrop-filter: blur(5px);
    }

    .success-message {
      display: none;
      text-align: center;
      padding: 20px 10px 5px;
      color: #0f9d58;
      font-size: 15px;
      font-weight: 600;
    }

    @media (max-width: 576px) {

      .popup-top h2 {
        font-size: 24px;
      }

      .popup-body {
        padding: 24px 20px;
      }
    }
  .popup-top h2 {
      color: #fff;
    }


    .call-btn,
.openLeadPopup {
  position: fixed;
  right: 20px;
  bottom: 95px;
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 18px;
  border: none;
  border-radius: 50px;

  background: linear-gradient(135deg, #961f67, #ec45a9);
  color: #fff;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
  box-shadow: 0 8px 24px rgba(150, 31, 103, 0.35);

  transition: all 0.3s ease;
  animation: pulseCallBtn 2s infinite;
}

/* Hover Effect */
.call-btn:hover,
.openLeadPopup:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(150, 31, 103, 0.45);
}

/* Small icon look */
.call-btn::before,
.openLeadPopup::before {
  content: "📞";
  font-size: 16px;
}

/* Pulse Animation */
@keyframes pulseCallBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 69, 169, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(236, 69, 169, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(236, 69, 169, 0);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .call-btn,
  .openLeadPopup {
    right: 15px;
    bottom: 18px;
    padding: 11px 16px;
    font-size: 14px;
    bottom: 120px;
  }
}
