NHA Home Services Inc - Adult Family Home Program

NHA Home Services Inc

Adult Family Home Program

Compassionate Care in a Home-Like Environment

At NHA Home Services Inc, our Adult Family Home Program provides personalized care, fostering independence, safety, and dignity for adults who need assistance with daily living activities.

Contact Us Today

Our Mission

We are dedicated to creating a supportive, home-like community where residents thrive. Our program emphasizes personalized care, promoting well-being, and ensuring comfort for every individual.

Contact Information

Organization: NHA Home Services Inc

Phone: (612) 205-2450

Email: hamida@nhahomeservices.com

Website: nhahomeservices.com

© 2025 NHA Home Services Inc. All rights reserved.

Welcome to NHA HOME SERVICES

At NHA Home Services, we provide top-quality care for seniors in a home-like environment. Our team is dedicated to ensuring the well-being and comfort of our residents.

Adult Family Home in Wisconsin

At NHA Home Services, we take pride in offering compassionate and top-quality care for seniors in a warm, home-like environment. Located in Wisconsin, our adult family home is designed to provide the comfort, safety, and personalized attention your loved ones deserve. Our dedicated team works tirelessly to ensure the well-being and happiness of all residents, fostering a sense of community and belonging. Whether it’s assistance with daily activities, companionship, or specialized care, we are here to support seniors in leading fulfilling, dignified lives. Discover the peace of mind that comes with choosing NHA Home Services for your family’s care needs.

Services

Personalized Care Plans

Personalized care plans tailored to individual needs. Promoting independence and well-being.

24/7 Supervision

24/7 supervision for round-the-clock support and assistance. Ensuring safety and security for residents.

Medication Management

Medication management for peace of mind. Professional administration of medications on schedule.

Frequently Asked Questions

“NHA Home Services has been a blessing for our family. The staff is caring and attentive, and my loved one is thriving in their care.”

John Doe

/* --- Base Styles --- */ :root { --primary-color: #3f51b5; /* A strong blue */ --secondary-color: #ff9800; /* An accent orange */ --text-dark: #333; --text-light: #666; --bg-light: #f8f9fa; --bg-white: #fff; --border-light: #e0e0e0; --font-family: 'Poppins', sans-serif; } body { font-family: var(--font-family); line-height: 1.6; color: var(--text-dark); margin: 0; background-color: var(--bg-light); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } h1, h2, h3 { color: var(--primary-color); font-weight: 700; } a { color: var(--primary-color); text-decoration: none; } a:hover { text-decoration: underline; } .btn { padding: 12px 25px; border: none; border-radius: 5px; font-weight: 600; cursor: pointer; transition: background-color 0.3s ease; display: inline-block; text-align: center; } .primary-btn { background-color: var(--primary-color); color: var(--bg-white); } .primary-btn:hover { background-color: #303f9f; } .secondary-btn { background-color: var(--secondary-color); color: var(--bg-white); } .secondary-btn:hover { background-color: #fb8c00; } .tertiary-btn { background-color: var(--bg-white); color: var(--primary-color); border: 1px solid var(--primary-color); } .tertiary-btn:hover { background-color: var(--primary-color); color: var(--bg-white); } /* --- Navbar --- */ .navbar { background-color: var(--bg-white); padding: 15px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.05); } .navbar .container { display: flex; justify-content: space-between; align-items: center; } .navbar .logo { display: flex; align-items: center; font-weight: 700; font-size: 20px; color: var(--primary-color); } .navbar .logo img { height: 40px; /* Adjust logo size */ margin-right: 10px; } .navbar .nav-links a { margin-left: 25px; color: var(--text-dark); font-weight: 500; } .navbar .nav-links a:hover { color: var(--primary-color); text-decoration: none; } .navbar .phone-button { background-color: var(--primary-color); color: var(--bg-white); padding: 8px 15px; border-radius: 5px; font-weight: 600; } .navbar .phone-button:hover { background-color: #303f9f; text-decoration: none; } /* --- Hero Section --- */ .hero-section { background-color: var(--bg-white); padding: 80px 0; position: relative; overflow: hidden; } .hero-section .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; /* Allows stacking on smaller screens */ } .hero-content { flex: 1; min-width: 300px; } .hero-content h1 { font-size: 3.5em; /* Adjust as needed */ margin-bottom: 20px; line-height: 1.1; } .hero-content p { font-size: 1.1em; color: var(--text-light); margin-bottom: 30px; } .cta-group { display: flex; gap: 15px; margin-bottom: 20px; flex-wrap: wrap; } .hero-image { flex: 1; min-width: 400px; /* Ensure image isn't too small */ text-align: right; } .hero-image img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } /* --- Services Overview --- */ .services-overview { padding: 80px 0; text-align: center; background-color: var(--bg-light); } .services-overview h2 { font-size: 2.5em; margin-bottom: 50px; } .service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; } .service-cards .card { background-color: var(--bg-white); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); padding: 30px; text-align: left; transition: transform 0.3s ease; } .service-cards .card:hover { transform: translateY(-5px); } .service-cards .card img { width: 100%; /* Adjust image size */ height: 200px; /* Fixed height for consistency */ object-fit: cover; /* Cover the area, crop if needed */ border-radius: 5px; margin-bottom: 20px; } .service-cards .card h3 { font-size: 1.5em; margin-bottom: 15px; } .service-cards .card ul { list-style: none; padding: 0; margin: 0; color: var(--text-light); } .service-cards .card ul li { margin-bottom: 8px; position: relative; padding-left: 20px; } .service-cards .card ul li::before { content: '✔️'; /* Checkmark icon */ position: absolute; left: 0; color: var(--primary-color); } .services-overview .tertiary-btn { margin-top: 30px; } /* --- Why Choose Us Section --- */ .why-choose-us { padding: 80px 0; text-align: center; background-color: var(--bg-white); } .why-choose-us h2 { font-size: 2.5em; margin-bottom: 30px; } .why-choose-us .intro-text { max-width: 800px; margin: 0 auto 60px auto; font-size: 1.1em; color: var(--text-light); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; } .feature-item { text-align: center; } .feature-item img { height: 70px; margin-bottom: 20px; } .feature-item h3 { font-size: 1.4em; margin-bottom: 10px; } .feature-item p { color: var(--text-light); } /* --- Footer --- */ .footer { background-color: var(--primary-color); color: var(--bg-white); padding: 60px 0 20px 0; } .footer .footer-cta { text-align: center; margin-bottom: 50px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.2); } .footer .footer-cta h3 { color: var(--bg-white); font-size: 2em; margin-bottom: 25px; } .footer .footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; text-align: center; /* Default for small screens */ gap: 20px; } .footer-logo { display: flex; align-items: center; font-weight: 700; font-size: 20px; color: var(--bg-white); margin-bottom: 15px; flex-basis: 100%; /* Full width on small screens */ justify-content: center; } .footer-logo img { height: 40px; margin-right: 10px; filter: brightness(0) invert(1); /* Makes logo white if it's black */ } .footer-info, .footer-links { flex-basis: calc(50% - 20px); /* Two columns on larger screens */ margin-bottom: 15px; } .footer-info p, .footer-links a { color: rgba(255,255,255,0.7); margin-bottom: 8px; } .footer-info a { color: rgba(255,255,255,0.7); } .footer-info a:hover { color: var(--bg-white); text-decoration: underline; } .footer-links a { margin: 0 10px; } .footer-links a:hover { color: var(--bg-white); text-decoration: underline; } .copyright { flex-basis: 100%; margin-top: 20px; font-size: 0.9em; color: rgba(255,255,255,0.5); } /* --- Responsive Adjustments --- */ @media (max-width: 992px) { .hero-section .container { flex-direction: column; text-align: center; } .hero-content, .hero-image { min-width: unset; width: 100%; } .hero-content h1 { font-size: 2.8em; } .hero-image { order: -1; /* Place image above content on mobile */ margin-bottom: 30px; } .navbar .nav-links { display: none; /* Hide nav links on smaller screens, use a hamburger menu in production */ } .navbar .container { justify-content: center; /* Center items if nav links are hidden */ } .navbar .phone-button { margin-left: 20px; } .footer .footer-bottom { flex-direction: column; align-items: center; } .footer-info, .footer-links { flex-basis: 100%; text-align: center; } .footer-links a { display: block; margin: 5px 0; } } @media (max-width: 576px) { .hero-content h1 { font-size: 2.2em; } .cta-group { flex-direction: column; } .btn { width: 100%; } .service-cards .card { padding: 20px; } .footer .footer-logo, .footer .footer-info, .footer .footer-links { text-align: center; } }

Contact us

Feel free to reach out to us with any questions or to schedule a visit to our Adult Family Home in Saint Paul, Minnesota. We are here to help and support you and your loved ones.

About us

NHA Home Services is a leading provider of elderly care in Saint Paul, Minnesota. Our mission is to empower seniors to live their best life by providing personalized care and support in a home-like environment. With a team of dedicated and compassionate staff, we strive to create a warm and welcoming atmosphere for our residents.