public void WinPanelPopUpOpen()
    {
        soundController.WinSound();
        if (UtilityManeger.currentStep > UtilityManeger.highestStep)
        {
            UtilityManeger.highestStep = UtilityManeger.currentStep;
            UtilityManeger.SaveHighestScore();
        }

        if (UtilityManeger.isEnglish)
        {
            totalStepText.text   = "Total Step : " + UtilityManeger.currentStep;
            highestStepText.text = "Top Step : " + UtilityManeger.highestStep;
        }
        else
        {
            totalStepText.text   = "মোট ধাপ : " + WordCoverterIntegerToString(UtilityManeger.currentStep);
            highestStepText.text = "সর্বাধিক ধাপ : " + WordCoverterIntegerToString(UtilityManeger.highestStep);
        }
        winPanelPopup.SetActive(true);
    }