.openLeadPopup: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% !important;
      padding: 0 !important;
      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) {
      body {
        padding: 30px 20px;
      }

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

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