white graphic of the cybeds logo
document.querySelectorAll("nav").forEach(nav=>{ const toggle = nav.querySelector("input[type='checkbox']"); nav.querySelectorAll(".menu a").forEach(a=>{ a.addEventListener("click",()=>{ if(toggle) toggle.checked=false; }); }); });

Community Interest Company

Bedfordshire's Home for Cyber Talent & Community

CyBeds CIC is an independent, not-for-profit organisation breaking down barriers to cyber careers, protecting businesses, and empowering every generation to thrive in the digital world.

OUR STREAMS

Five Ways We Make a Difference

From career starters to senior citizens, from SMEs to students - CyBeds has a stream built for you.

Cybeds — Services Cards
Cyber Pathways
Launch Your Cyber Career

Clear, structured routes into the cyber industry - from apprenticeships to degree-level programmes and technical training.

Cyber Security Apprenticeships (Level 3 & 4)
Degree Apprenticeships with local universities
CompTIA, Microsoft & CREST technical courses
CV support, interview coaching & employer links
Find your pathway
Cyber Green
Secure & Sustainable Device Disposal

Certified secure data wiping of old business devices - protecting your data while reducing e-waste.

NIST 800-88 & Blancco certified data wiping
Certificates of destruction provided
Environmentally responsible recycling
Collection service available for Bedfordshire
Book a collection
Cyber Clinics
Expert Cyber Health for SMEs

Practical, affordable cyber security assessments and consultancy tailored to small and medium-sized businesses.

Cyber Essentials readiness assessments
Risk reviews & remediation roadmaps
Staff awareness training workshops
Incident response planning consultancy
Book a free clinic
Cyber Guardians
Protecting Our Senior Community

Free, friendly workshops for the over-60s - no jargon, no judgment. Helping residents stay safe from online threats.

Face-to-face workshops at community venues
Scam awareness & social media safety
Safe online banking & shopping guidance
One-to-one drop-in sessions available
Find a local workshop

OUR IMPACT

Measuring What Matters

Every number represents a real person, a business protected, or a community made safer.

500+

Members

120+

Careers Launched

80+

SMEs Supported

200+

Seniors Protected

Our Principles
Open Access
No one should be excluded from cyber education because of cost, background or geography.
Community First
Every decision we make starts with "what's best for the people of Bedfordshire?"
Volunteer-Powered
CyBeds is built by passionate professionals giving their time to create real impact.
Reinvested Surplus
All revenue goes back into running and expanding our streams - always.
const principles = document.querySelectorAll('.principle'); principles.forEach((el, i) => { setTimeout(() => el.classList.add('visible'), 150 + i * 85); }); function getClosestCard() { const mid = window.innerHeight * 0.5; let closest = null, minDist = Infinity; principles.forEach(el => { const r = el.getBoundingClientRect(); if (r.bottom < 0 || r.top > window.innerHeight) return; const dist = Math.abs((r.top + r.height / 2) - mid); if (dist < minDist) { minDist = dist; closest = el; } }); return closest; } let hovering = false; function updateActive() { if (hovering) return; const active = getClosestCard(); principles.forEach(el => el.classList.toggle('scroll-active', el === active)); } let ticking = false; window.addEventListener('scroll', () => { if (!ticking) { requestAnimationFrame(() => { updateActive(); ticking = false; }); ticking = true; } }, { passive: true }); principles.forEach(el => { el.addEventListener('mouseenter', () => { hovering = true; principles.forEach(p => p.classList.remove('scroll-active')); }); el.addEventListener('mouseleave', () => { hovering = false; updateActive(); }); }); setTimeout(updateActive, 650);

Community Interest Company

Built for Bedfordshire

CyBeds is a registered Community Interest Company (CIC) - a not-for-profit structure that legally locks our purpose to community benefit. Any surplus we generate is reinvested into our streams, not distributed to shareholders.


Run for Bedfordshire

We exist because Bedfordshire has incredible untapped cyber talent and we're here to unlock it. From young people exploring careers to senior residents who deserve to feel safe online, CyBeds is the connective tissue that brings it all together.

LEADERSHIP

Meet The Director's

The founding team driving CyBeds CIC forward - passionate professionals giving their expertise to build a stronger cyber community in Bedfordshire.

white graphic of the letters & Systwms

Director's Name

CHAIR & CO-FOUNDER

A brief bio describing this director's background, expertise, and passion for building Luton's cyber community. Replace with real details.

white graphic of the letters & Systwms

Director's Name

CHAIR & CO-FOUNDER

A brief bio describing this director's background, expertise, and passion for building Luton's cyber community. Replace with real details.

white graphic of the letters & Systwms

Director's Name

CHAIR & CO-FOUNDER

A brief bio describing this director's background, expertise, and passion for building Luton's cyber community. Replace with real details.

Community

Free / forever
  • Events access
  • Community forum
  • Newsletter & resources
  • Job board access
Get Started

MEMBERS CLUB

Become a CyBeds Member

Join our growing community of cyber professionals, career starters, and supporters across Bedfordshire.

UPCOMING EVENTS

Join Us In Person

All events are free or low-cost. Bedfordshire-based unless stated otherwise.

Cybeds CIC — Upcoming Events
Cyber Pathways
SAT 22 MAR 2025 · 10:00AM

Cyber Career Open Day

Discover apprenticeship and training routes into cyber security. Employers and training providers in attendance.

Cyber Clinic
WED 26 MAR 2025 · 9:00AM

Free SME Cyber Health Check Drop-In

Book a 30-minute free consultation with a CyBeds expert. Identify your top risks and leave with a clear action plan.

Cyber Guardians
FRI 28 MAR 2025 · 2:00PM

Staying Safe Online - Bedfordshire Central Library

A friendly workshop for over-60s covering online scams, password safety and safe social media use.

GET INVOLVED

Volunteer with CyBeds

Whether you have 2 hours a month or 2 days a week, your expertise makes a real difference. All backgrounds welcome.

Mentor
Guide career starters through the Cyber Pathways Stream
Event Host
Help organise and run Cyber Social networking events
Workshop Facilitator
Deliver friendly digital safety sessions for seniors
Cyber Assessor
Support SME Cyber Clinics with expert security reviews
Comms & Marketing
Help spread the word about CyBeds across Bedfordshire
Board Member
Shape the strategic direction of CyBeds as a CIC
(function () { const chips = document.querySelectorAll('.role-chip'); if (!chips.length) return; chips.forEach((el, i) => { setTimeout(() => el.classList.add('visible'), 150 + i * 85); }); function getClosestCard() { const mid = window.innerHeight * 0.5; let closest = null, minDist = Infinity; chips.forEach(el => { const r = el.getBoundingClientRect(); if (r.bottom < 0 || r.top > window.innerHeight) return; const dist = Math.abs((r.top + r.height / 2) - mid); if (dist < minDist) { minDist = dist; closest = el; } }); return closest; } let hovering = false; function updateActive() { if (hovering) return; const active = getClosestCard(); chips.forEach(el => el.classList.toggle('scroll-active', el === active)); } let ticking = false; window.addEventListener('scroll', () => { if (!ticking) { requestAnimationFrame(() => { updateActive(); ticking = false; }); ticking = true; } }, { passive: true }); chips.forEach(el => { el.addEventListener('mouseenter', () => { hovering = true; chips.forEach(p => p.classList.remove('scroll-active')); }); el.addEventListener('mouseleave', () => { hovering = false; updateActive(); }); }); setTimeout(updateActive, 650); })();

MEMBERS PORTAL

Your CyBed's Account

KNOW MORE

Frequently Asked

As a Community Interest Company, transparency matters to us - so here are the answers to our most common questions.

Is CyBeds genuinely free to join?

Yes - core community membership is completely free.

CyBeds was established as a Community Interest Company to widen access to cyber opportunities across Bedfordshire. As a free member you can:

  • Attend community events
  • Access the member forum
  • Engage with the wider network

Optional professional upgrades, external certifications, or specialist services may involve fees but joining the community itself does not.

I'm new to cyber security - is this still relevant to me?

Absolutely - CyBeds was built to remove barriers to entry.

Whether you are a student, career changer, or exploring options for the first time, we provide:

  • Structured career pathways with clear next steps
  • Mentorship matching with experienced professionals
  • Employer engagement to bridge the gap into work

You won't just find inspiration here, you'll find a defined route forward.

I'm already an experienced professional - what value would I gain?

CyBeds is not limited to entry-level support. Experienced professionals benefit from:

  • High-quality local networking with peers and decision-makers
  • Speaking and thought leadership opportunities
  • Mentorship influence over the next generation
  • Access to a local talent pipeline
  • SME advisory and collaboration opportunities

It's a platform to expand your influence, strengthen the regional cyber ecosystem, and contribute to measurable community impact.

How is CyBeds different from other networking or training groups?

Most groups offer either networking or training. CyBeds integrates both - alongside career progression, business protection, and digital inclusion - into one coordinated local ecosystem.

We connect:

  • Individuals to cyber careers
  • Businesses to practical security support
  • Seniors to digital safety education
  • Professionals to meaningful volunteer leadership

The structure is deliberate. The impact is measurable. The mission is local.

What level of involvement is expected from members?

Engagement is entirely flexible - there are no attendance quotas or hidden obligations.

Members can choose to:

  • Drop in for occasional events
  • Participate in mentorship as a mentor or mentee
  • Access member resources at their own pace
  • Volunteer expertise through one of our roles
  • Become a corporate partner

You engage at a level that aligns with your goals and availability - nothing more.

document.querySelectorAll('.faq-question').forEach(item => { item.addEventListener('click', () => { item.parentElement.classList.toggle('active'); }); });

It's FREE to Join

Ready To Become a CyBeds Member?

white graphic of the letters & Systwms

Empowering Bedfordshire's cyber community - one person, one business, one workshop at a time.

Stay updated

Get news, events and opportunities straight to your inbox.

Designed by Inova Global

© 2026 CyBeds. All Rights Reserved

white graphic of the cybeds logo
document.querySelectorAll("nav").forEach(nav=>{ const toggle = nav.querySelector("input[type='checkbox']"); nav.querySelectorAll(".menu a").forEach(a=>{ a.addEventListener("click",()=>{ if(toggle) toggle.checked=false; }); }); });

Privacy Policy - CyBeds CIC

Effective Date: 12/03/2026
Website: https://www.cybeds.org.uk/
CyBeds CIC Ltd (“we”, “our”, “us”) is committed to protecting and respecting your privacy. This Privacy Policy explains how we collect, use, and store personal data when you interact with our website and services, in compliance with the UK GDPR.

1. Data ControllerThe data controller responsible for your personal information is:CyBeds CIC Limited
Bedfordshire
Email: [email protected]

2. Data We CollectWe collect the following personal data:- Contact form submissions: Name & EmailNo other personal information is collected via our website.

3. How We Use Your DataWe use your data to:- Record and manage communication with potential clients and leadsWe will not use your personal data for other purposes without your consent.

4. Legal Basis for ProcessingWe process personal data based on:Contractual necessity – to respond to enquiries and communicate about our servicesLegitimate interests – to manage lead generation and client communication

5. Marketing CommunicationsCurrently, we do not send marketing emails or newsletters.

6. Data Sharing & Third PartiesWe do not share your personal data with external partners or third-party service providers.

7. Data RetentionWe retain contact form and chatbot submissions only as long as necessary to respond to enquiries or manage leads. Offline invoices containing payment details are stored securely in our offices.

8. Data SecurityWe take appropriate measures to protect your data, including:- SSL encryption for our website- Limited access to stored data- Secure handling of offline invoices and payment information

8. Data SecurityWe take appropriate measures to protect your data, including:- SSL encryption for our website- Limited access to stored data- Secure handling of offline invoices and payment information

9. User RightsYou have the right to:- Access your personal data- Request correction or deletion- Withdraw consent where applicableTo exercise your rights, contact us via the website or call our office.

10. Cookies & TrackingWe do not use cookies on our website.

11. Policy MaintenanceThis Privacy Policy is reviewed at least once a year by our Compliance Officer and updated whenever meaningful changes occur.

white graphic of the letters & Systwms

Empowering Bedfordshire's cyber community - one person, one business, one workshop at a time.

Stay updated

Get news, events and opportunities straight to your inbox.

Designed by Inova Global

© 2026 CyBeds. All Rights Reserved

white graphic of the cybeds logo
document.querySelectorAll("nav").forEach(nav=>{ const toggle = nav.querySelector("input[type='checkbox']"); nav.querySelectorAll(".menu a").forEach(a=>{ a.addEventListener("click",()=>{ if(toggle) toggle.checked=false; }); }); });

Terms of Service -
CyBeds CIC

Effective Date: 12/03/2026
Website: https://www.cybeds.org.uk/
By using this website, you agree to the following Terms of Service.

1. Acceptance of TermsBy accessing or using https://www.cybeds.org.uk/
, you agree to comply with these Terms. If you do not agree, please do not use the website.

2. Use of the WebsiteYou may only use this website for lawful purposes. You agree not to:- Interfere with or disrupt the website or servers- Attempt to gain unauthorised access- Transmit harmful or illegal content

3. Intellectual PropertyAll content on this website, including text, images, logos, and code, is the property of CyBeds CIC Limited. You may not copy, reproduce, or distribute it without written permission.

4. Disclaimers & Limitation of Liability- The content is provided for informational purposes only.- We make no guarantees regarding accuracy or completeness.- CyBeds CIC Limited will not be liable for any loss or damage arising from the use of this website

5. Governing LawThese Terms are governed by the laws of England and Wales, and disputes are subject to the exclusive jurisdiction of English courts.

6. Changes to TermsWe may update these Terms from time to time. Updates will be posted on this page, and continued use constitutes acceptance.

7. ContactQuestions about these Terms?
Contact us at: [email protected]

white graphic of the letters & Systwms

Empowering Bedfordshire's cyber community - one person, one business, one workshop at a time.

Stay updated

Get news, events and opportunities straight to your inbox.

Designed by Inova Global

© 2026 CyBeds. All Rights Reserved