.no-scroll {
    overflow: hidden;
  }

  .needHelpModal {
    display: none; 
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 36, 45, 0.6);
    justify-content: flex-end;
    align-items: center;
    backdrop-filter: blur(1px);
    
  }
  
  .needHelpContent {
    background-color: #fff;
    padding: 20px 16px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    max-width:360px;
    height: 385px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
   
  }
  .helpWrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .needHelpCloseBtnContent{
    /* display: flex;
    justify-content: end;
    width: 100%; */
    width: 28px;
    height: 28px;
  }
  .needHelpCloseBtn{
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
  }
  .needHelpContainerImg{
    margin-top: 10px;
    width: 67px;
    height: 67px;
  }
  .needHelpPopupImg{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .needHelpPopupTitle{
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: #141517;
    text-align: left;
    margin-bottom: 6px;
  }
  .needHelpPopupDescription{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #4D4D4D;
    border-bottom: 1px solid #DEE2E6;
    padding-bottom: 26px;
    margin-bottom: 24px;
  }

  .needHelpPopupCallContent{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
  }
  .needHelpPopupCallContent img{
    width: 42px;
    height: 42px;
  }
  .callLabel{
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    color: #4D4D4D;
    padding-bottom: 4px;
  }
  .callNumber{
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    color: #141517;
  }

  .needHelpPopupEmailContent{
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .needHelpPopupEmailContent img{
    width: 42px;
    height: 42px;
  }
  .emailLabel{
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    color: #4D4D4D;
    padding-bottom: 4px;
  }
  .needHelpEmailID{
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    text-align: left;
    color: #141517;
  }

  @media screen and (max-width:768px) {
        .needHelpContent {
            top: auto;
            bottom: 0;
            transform: translateX(-50%);
            max-width: 100%;
            border-radius: 12px 12px 0 0;
            padding: 20px 16px 30px;
        }

  }