Services

Jainny Home Care Solution LLC offers a wide range of non-medical home care services, including:

Personal Care

  • Grooming: Bathing, shaving, hair care, skin care, mouth care, nail care
  • Dressing assistance
  • Ambulation and transfer support
  • Kitchen & Meal Support

  • Meal preparation and feeding
  • Dishwashing and cleaning appliances
  • Trash disposal
  • Housekeeping & Laundry

  • Changing bed linens
  • Dusting and vacuuming (bedroom and bathroom)
  • Wet/dry mopping of bedroom and bathroom
  • Laundry assistance

    Medication Assistance

  • Wounds of ill people may be slow to heal, resistant to standard therapies, and prone to infection.Locating, opening, and retrieving medication containers
  • Assisting the consumer to take medications under their direction
  • Companionship & Socialization

  • Providing companionship
  • Conversation, emotional support
  • Social interaction activities
  • Transportation & Shopping

  • Grocery shopping
  • Transportation as per service plan
  • Assistance in arranging travel for appointments
  • Emergency and General Support

  • Administering emergency first aid
  • General household support
  • Payer Sources Accepted

  • Private Pay
  • Private Insurance
  • .short-survey { background: white; border-radius: 12px; padding: 25px; max-width: 500px; margin: 30px auto; box-shadow: 0 8px 20px rgba(0,0,0,0.1); } .short-survey h3 { text-align: center; color: #333; margin-bottom: 20px; font-size: 22px; } .survey-q { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #eee; } .survey-q:last-of-type { border-bottom: none; } .survey-q label { display: block; font-weight: 600; color: #333; margin-bottom: 10px; font-size: 15px; } .stars { display: flex; gap: 8px; justify-content: center; } .star { font-size: 32px; color: #ddd; cursor: pointer; transition: 0.2s; } .star:hover, .star.active { color: #ffd700; transform: scale(1.1); } .survey-btn { width: 100%; padding: 12px; background: #0073aa; color: white; border: none; border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; margin-top: 15px; } .survey-btn:hover { background: #005177; } .thanks { display: none; text-align: center; padding: 30px; } .thanks.show { display: block; } .thanks h3 { color: #0073aa; font-size: 24px; } @media (max-width: 600px) { .short-survey { padding: 20px; } .star { font-size: 28px; } }

    Rate Your Experience

    Thank You! ✓

    Your feedback helps us improve.

    const data = {overall: 0, ease: 0, recommend: 0}; document.querySelectorAll('.stars').forEach(group => { const stars = group.querySelectorAll('.star'); const q = group.dataset.q; stars.forEach(star => { star.onclick = () => { const v = parseInt(star.dataset.v); data[q] = v; stars.forEach((s, i) => { s.classList.toggle('active', i < v); }); }; }); }); function submitSurvey() { if (data.overall === 0) { alert('Please rate at least Overall Satisfaction'); return; } fetch('/wp-admin/admin-ajax.php', { method: 'POST', headers: {'Content-Type': 'application/x-www-form-urlencoded'}, body: 'action=save_survey&data=' + JSON.stringify(data) }); document.getElementById('surveyForm').style.display = 'none'; document.getElementById('thanks').classList.add('show'); }