/* =========================== Shared variables =========================== */ :root { --card-1: #df1683; --card-2: #65b2e8; --nav: #65b2e8; --navText: #fff; --border: rgb(255 255 255 / 35%); --shadow: 0 10px 26px rgb(0 0 0 / 25%); --title: #fff; --text: rgb(255 255 255 / 92%); --pad: 14px; --gap: 18px; --pink: #df1683; --blue: #65b2e8; --ink: #2c353b; --card-gap: 18px; } /* =========================== Services slider (svc) =========================== */ .svc-shell { position: relative; width: 100%; padding-top: 44px; box-sizing: border-box; } .svc-controls { position: absolute; top: 6px; left: 6px; z-index: 5; display: flex; gap: 8px; } .svc-wrap { width: 100%; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; cursor: grab; user-select: none; touch-action: pan-y; scrollbar-width: thin; will-change: scroll-position; } .svc-wrap.is-dragging { cursor: grabbing; scroll-behavior: auto; touch-action: none; } .svc-wrap.is-dragging .svc-track { scroll-snap-type: none; } .svc-track { display: flex; gap: var(--gap); padding: 6px var(--pad) 18px; padding-right: 0; scroll-snap-type: x mandatory; will-change: transform; } .svc-endspacer { flex: 0 0 var(--pad); } .svc-card { display: flex; flex: 0 0 78%; flex-direction: column; max-width: 220px; aspect-ratio: 1; padding: 18px; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow); scroll-snap-align: start; box-sizing: border-box; contain: layout paint; } .svc-card:nth-child(odd) { background: var(--card-1); } .svc-card:nth-child(even) { background: var(--card-2); } .svc-card h3, .svc-card p { font-family: Montserrat, system-ui, sans-serif; } .svc-card h3 { margin: 0 0 14px; color: var(--title); font-size: 20px; font-weight: 400; line-height: 1.15; text-shadow: 0 0 6px #fff; } .svc-card p { margin: 0; padding-right: 4px; overflow: auto; color: var(--text); font-size: 14px; line-height: 1.6; } .svc-card a { color: #fff; text-decoration: none; } .svc-card a:hover, .svc-card a:focus-visible { text-decoration: underline; } .svc-links a { display: block; margin-bottom: 8px; } .svc-links a:last-child { margin-bottom: 0; } .nav-btn { display: inline-grid; width: 34px; height: 34px; padding: 0; place-items: center; border: 1px solid var(--border); border-radius: 10px; background: var(--nav); color: var(--navText); box-shadow: 0 10px 22px rgb(0 0 0 / 22%); cursor: pointer; will-change: transform, opacity; } .nav-btn .nav-ic { width: 10px; height: 10px; border-right: 3px solid #fff; border-bottom: 3px solid #fff; transform: rotate(135deg); } .nav-right .nav-ic { transform: rotate(-45deg); } .nav-btn.is-disabled { opacity: .35; pointer-events: none; } .svc-wrap::-webkit-scrollbar { height: 8px; } .svc-wrap::-webkit-scrollbar-thumb { background: rgb(255 255 255 / 28%); border-radius: 999px; } /* =========================== Testimonials slider (uhc) =========================== */ .uhc-testimonials { position: relative; width: 100%; box-sizing: border-box; padding-top: 54px; } /* Arrow controls */ .uhc-testimonials__controls { position: absolute; top: 0; left: 0; z-index: 2; display: flex; gap: 8px; } .uhc-testimonials__button { width: 38px; height: 38px; border: 1px solid rgba(101, 178, 232, .45); border-radius: 10px; background: var(--blue); color: #ffffff; box-shadow: 0 7px 18px rgba(0,0,0,.16); cursor: pointer; display: inline-grid; place-items: center; padding: 0; font-size: 22px; line-height: 1; transition: transform .2s ease, opacity .2s ease; will-change: transform, opacity; } .uhc-testimonials__button--prev { background: var(--pink); border-color: rgba(223, 22, 131, .45); } .uhc-testimonials__button:hover, .uhc-testimonials__button:focus-visible { transform: translateY(-2px); } /* Main scroll area */ .uhc-testimonials__viewport { width: 100%; overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth; scroll-snap-type: x mandatory; cursor: grab; user-select: none; -webkit-overflow-scrolling: touch; -ms-overflow-style: none; scrollbar-width: none; will-change: scroll-position; } .uhc-testimonials__viewport::-webkit-scrollbar { display: none; } .uhc-testimonials__viewport.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; } .uhc-testimonials__track { display: flex; align-items: stretch; gap: var(--card-gap); padding: 5px 2px 18px; will-change: transform; } .uhc-testimonial-card { flex: 0 0 calc((100% - (var(--card-gap) * 2)) / 3); min-width: 0; min-height: 260px; box-sizing: border-box; display: flex; flex-direction: column; padding: 22px 20px 18px; border: 3px solid var(--pink); border-radius: 20px; background: #ffffff; box-shadow: 0 8px 24px rgba(26, 42, 55, .08); scroll-snap-align: start; contain: layout paint; } .uhc-testimonial-card:nth-child(even) { border-color: var(--blue); } .uhc-testimonial-card__stars { margin: 0 0 14px; color: #ee821d; font-size: 20px; letter-spacing: 2px; line-height: 1; } .uhc-testimonial-card blockquote { display: -webkit-box; overflow: hidden; margin: 0; color: var(--ink); font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: 400; line-height: 1.46; -webkit-box-orient: vertical; -webkit-line-clamp: 8; } .uhc-testimonial-card__author { margin: auto 0 0; padding-top: 16px; color: var(--ink); font-family: Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; font-size: 13px; line-height: 1.4; } .uhc-testimonial-card__author strong { font-weight: 700; } .uhc-testimonial-card__author span { color: #667178; font-weight: 400; } @media (max-width: 980px) { .uhc-testimonial-card { flex-basis: calc((100% - var(--card-gap)) / 2.4); min-height: 300px; padding: 22px 19px 18px; } } @media (max-width: 640px) { .uhc-testimonials { padding-top: 50px; } .uhc-testimonial-card { flex-basis: 72%; min-height: 290px; padding: 20px 18px 18px; } .uhc-testimonial-card__stars { margin-bottom: 14px; font-size: 19px; } .uhc-testimonial-card blockquote { font-size: 14px; line-height: 1.45; -webkit-line-clamp: 8; } .uhc-testimonial-card__author { padding-top: 16px; font-size: 13px; } }
top of page

Early Signs of Alzheimer’s in NI: What Families Should Know

6 minutes ago
6 min read
Find out how to recognise the early signs of Alzheimer’s, start a conversation and access support in Northern Ireland.
Find out how to recognise the early signs of Alzheimer’s, start a conversation and access support in Northern Ireland.

It is easy to notice changes without knowing what they mean. Someone may ask the same question several times, become unsure on a familiar journey, forget an appointment, or start finding everyday decisions more difficult than they once did.


Changes like these do not necessarily mean Alzheimer’s disease, but during World Alzheimer’s Month, it is helpful to understand some of the early signs and know when it may be worth seeking advice.


For families in Northern Ireland, recognising changes early can make it easier to start a conversation, speak to a GP and explore the right support before concerns begin to feel overwhelming.


What is Alzheimer’s disease?


Alzheimer’s disease is a progressive condition that affects the brain and is the most common cause of dementia. It can gradually affect memory, thinking, communication, judgement and someone’s ability to manage everyday life. The symptoms usually develop slowly and affect each person differently.


The World Health Organization estimates that Alzheimer’s disease contributes to around 60 to 70% of dementia cases worldwide. In 2021, approximately 57 million people were living with dementia globally.


Here in Northern Ireland, dementia is already affecting thousands of families. In May 2026, the Department of Health estimated that at least 25,000 people are currently living with dementia in Northern Ireland, with this projected to rise to around 43,000 by 2040.


What are the early signs of Alzheimer’s?


Memory problems are often the symptom people associate most with Alzheimer’s, but the early signs can be broader than forgetting a name or misplacing something.


According to NHS guidance, early symptoms can include:


  • forgetting recent conversations or events

  • repeatedly asking the same questions

  • misplacing items more often

  • struggling to remember the names of familiar places or objects

  • having difficulty finding the right word

  • finding decisions or planning more difficult

  • becoming less flexible or more hesitant about trying new things

  • changes in mood, including increased anxiety, agitation or periods of confusion.


What matters is often the change from that person’s usual behaviour.


Everyone forgets things occasionally. Someone may walk into a room and forget why, lose their keys or struggle to remember a name. That alone does not mean they have dementia.


Concern becomes more important when memory, thinking or behaviour changes are persistent and begin interfering with daily life.


Memory problems do not always mean dementia


This is an important distinction for worried families. Memory difficulties can have several causes. The NHS lists depression, anxiety, stress, medication, sleep problems, alcohol use, nutritional deficiencies and other medical conditions among possible explanations for memory changes.


Sudden confusion can also be associated with conditions such as infection or delirium. That is why it is better to seek medical advice than to try to diagnose Alzheimer’s at home.


If memory or thinking changes are beginning to affect someone’s everyday life, speaking to their GP is a sensible first step.


Why an early diagnosis can matter


World Alzheimer’s Month 2026 is highlighting why diagnosis matters. Led by Alzheimer’s Disease International, the campaign emphasises how an early diagnosis can help people access treatment, care and support.


For someone living with dementia, getting answers can help them understand what is happening and have a say in what comes next. The NHS highlights the value of a timely diagnosis in helping people and their families explore support, consider treatment options and plan for the future.


An occasional forgotten appointment does not automatically mean dementia. But if you are noticing a pattern of changes in memory or thinking, you do not have to wait until everyday life feels unmanageable. Speaking to a GP can be the first step towards understanding the cause and finding the right support.


How is Alzheimer’s diagnosed?


Diagnosing Alzheimer’s involves bringing together a person’s symptoms, medical history and assessment results to understand what is happening.


The first step is usually a GP appointment. The GP will ask about changes the person or their family have noticed, any medicines they take and how they are managing everyday tasks.


They may arrange blood tests or other checks to look for alternative causes, alongside assessments of memory and thinking. If further investigation is needed, the person may be referred to a specialist or memory clinic. The NHS explains these steps in its guide to Alzheimer’s diagnosis.


If the person feels comfortable, bringing someone who knows them well can help. A trusted friend or family member may be able to describe gradual changes and help them remember what was discussed. This is also recommended in NHS guidance.


Starting the conversation with someone you love


Knowing how to raise concerns about someone’s memory can be difficult. They may put changes down to getting older, feel frightened about an assessment or be unaware of the things you have noticed.


Start gently, with a specific example from everyday life. Keep the focus on how they are feeling and what might help.


You could say: “I’ve noticed it’s been harder to keep track of appointments lately. How have you been finding things? Would you like us to speak to the GP together?”



Give them time to respond and listen to their concerns. You do not need to have all the answers. A calm, patient approach can help them feel heard, supported and involved in what happens next.


What support is available after a dementia diagnosis in Northern Ireland?


A dementia diagnosis can bring questions about what happens next. You and your family do not have to find every answer on your own.


Across Northern Ireland, Dementia Navigators support people living with dementia, their families and carers. They can help explain the diagnosis, suggest practical ways to maintain independence and connect you with local services, community groups and other support.


Alzheimer’s Society’s Dementia Advisers also work throughout Northern Ireland, offering information, advice and practical guidance. Its Dementia Support Line is available on 0333 150 3456 if you need to talk through concerns or ask where to turn.


If everyday activities such as washing, dressing or preparing meals are becoming harder, contact your local Health and Social Care Trust to ask about a needs assessment. This helps identify the care and support that could make daily life more manageable.


How can dementia care at home help?


For many people living with Alzheimer’s, staying at home means continuing familiar routines and remaining close to the people and places they know. The right support can help make this possible while home remains a safe and suitable place to receive care.


Research looking at 40 studies on people’s experiences of dementia care at home highlighted how surroundings and daily routines may need to change as dementia progresses. It also emphasised the importance of ongoing support that adapts to the person’s needs.


At Unique Home Care NI, our Alzheimer’s and dementia care at home is built around the individual: their preferences, routines and the things that matter to them. Support might include help washing and dressing, preparing meals, medication prompts or reassurance during moments of uncertainty.


For someone feeling lonely or less confident, companionship care at home provides regular company and opportunities to stay connected. That could mean a conversation over tea, enjoying a shared interest or having support to get out into the community.


Family carers need time to look after themselves, too. Our respite care at home can give them time to rest, attend appointments or take a break, while their loved one continues to receive support in familiar surroundings.


Familiar care can matter


Seeing a familiar face can make a difference when someone is living with dementia. Regular visits give the person and their carers time to get to know each other and build trust.


That familiarity also helps carers understand someone’s usual routines, preferences and ways of communicating. They may notice when the person is eating less, seems quieter or is finding something harder than usual.


Good dementia care means knowing the person: their choices, their life story and what helps them feel comfortable. As their needs change, support should adapt while protecting their dignity and helping them keep doing the things they can.

If you are exploring local support, find out more about our home care in Belfast, home care in Bangor or home care in Comber.


About Unique Home Care NI


Unique Home Care NI is an RQIA-registered home care provider supporting people and families across Belfast, Ards, County Down and surrounding communities. Established in 2017, our care is built around the individual, with personalised support designed to protect dignity, independence and familiar routines.

 
 
 

Comments


bottom of page