<!DOCTYPE html> <!-- This exemplar version of the mental‑health resource page implements additional best practices suggested during review. Highlights include: * Passing the click event (or element reference) into the setTheme function to avoid relying on a global event object. * Adding aria labels to decorative icons where appropriate and hiding decorative SVGs from assistive technology using aria-hidden. * Introducing intermediate heading levels (h3) within sections to improve document hierarchy for screen readers when content grows longer. * Providing explanatory comments throughout to help maintainability. See the separate notes file for further explanation. --> <html lang="en"> <head> <meta charset="utf-8"/> <meta content="IE=edge" http-equiv="X-UA-Compatible"/> <meta content="width=device-width, initial-scale=1.0" name="viewport"/> <title> Free Mental Health Info &amp; Support | Global Crisis Help &amp; Self‑Care Tools </title> <meta content="Find free mental health info, crisis hotlines, support groups, and self‑help tools. Accessible global directory organized by needs – from crisis support to personal growth." name="description"/> <meta content="free mental health info, crisis hotline, mental health support, therapy info, self-help tools" name="keywords"/> <meta content="Free Mental Health Info" name="author"/> <meta content="Free Mental Health Info - Global Support Directory" property="og:title"/> <meta content="Comprehensive directory of free mental health info, crisis support, and self-help tools available worldwide." property="og:description"/> <meta content="website" property="og:type"/> <meta "="" content=" &lt;a href=" freementalhealth.info="" https:="" rel="nofollow noopener" target="_blank"/>https://freementalhealth.info/" property="og:url"/&gt; <link href="https://freementalhealth.info/" rel="canonical"/> <!-- Schema.org markup for better SEO --> <script type="application/ld+json"> { "@context": " <a href="https://schema.org" target="_blank" rel="nofollow noopener">https://schema.org</a>", "@type": "MedicalWebPage", "name": "Free Mental Health Info", "description": "Global directory of free mental health info and crisis support", "url": " <a href="https://freementalhealth.info/" target="_blank" rel="nofollow noopener">https://freementalhealth.info/</a>", "lastReviewed": "2025-08-23", "specialty": "Mental Health" } </script> <style> /* CSS Custom Properties for theming */ :root { --primary-blue: #0277bd; --primary-green: #00897b; --calm-blue: #e1f5fe; --calm-green: #e0f2f1; --text-dark: #212121; --text-light: #616161; --bg-white: #ffffff; --bg-light: #fafafa; --accent: #00acc1; --border-light: #e0e0e0; --shadow: 0 2px 4px rgba(0,0,0,0.1); --transition: all 0.3s ease; --focus-outline: 3px solid #4fc3f7; --spacing-sm: 0.5rem; --spacing-md: 1rem; --spacing-lg: 2rem; --spacing-xl: 3rem; } /* Dark theme */ [data-theme="dark"] { --primary-blue: #01579b; --primary-green: #004d40; --calm-blue: #263238; --calm-green: #1a237e; --text-dark: #eceff1; --text-light: #b0bec5; --bg-white: #121212; --bg-light: #1e1e1e; --accent: #00bcd4; --border-light: #37474f; --focus-outline: 3px solid #64b5f6; } /* High contrast theme */ [data-theme="high-contrast"] { --text-dark: #000000; --text-light: #000000; --bg-white: #ffffff; --bg-light: #ffffff; --border-light: #000000; --focus-outline: 4px solid #000000; } /* Base reset and typography */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; font-size: 100%; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; font-size: 1rem; line-height: 1.8; color: var(--text-dark); background: linear-gradient(135deg, var(--calm-blue) 0%, var(--calm-green) 100%); min-height: 100vh; transition: var(--transition); } /* Skip link for accessibility */ .skip-link { position: absolute; top: -100px; left: 0; background: var(--primary-blue); color: white; padding: var(--spacing-sm) var(--spacing-md); text-decoration: none; border-radius: 0 0 8px 0; z-index: 1000; font-weight: 600; } .skip-link:focus { top: 0; outline: var(--focus-outline); outline-offset: 2px; } /* Container for consistent spacing */ .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--spacing-md); } /* Header styles */ header { background: var(--bg-white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 100; transition: var(--transition); } .header-content { display: flex; justify-content: space-between; align-items: center; padding: var(--spacing-md) 0; flex-wrap: wrap; gap: var(--spacing-md); } h1 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--primary-blue); font-weight: 700; display: flex; align-items: center; gap: var(--spacing-sm); } .logo-icon { /* Make the sun‑and‑cloud icon larger for better visibility */ width: 50px; height: 50px; font-size: 50px; fill: var(--primary-green); } /* Theme switcher */ .theme-controls { display: flex; gap: var(--spacing-sm); align-items: center; } .theme-btn { padding: 0.5rem 1rem; background: var(--calm-blue); border: 2px solid transparent; border-radius: 8px; cursor: pointer; font-size: 0.9rem; transition: var(--transition); color: var(--text-dark); } .theme-btn:hover, .theme-btn:focus { border-color: var(--primary-blue); transform: translateY(-2px); box-shadow: var(--shadow); } .theme-btn:focus { outline: var(--focus-outline); outline-offset: 2px; } .theme-btn[aria-pressed="true"] { background: var(--primary-blue); color: white; } /* Navigation styles */ nav { background: var(--bg-light); padding: var(--spacing-sm) 0; border-top: 1px solid var(--border-light); } nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: var(--spacing-md); justify-content: center; } nav a { color: var(--text-dark); text-decoration: none; padding: 0.5rem 1rem; border-radius: 8px; transition: var(--transition); display: inline-block; font-weight: 500; } nav a:hover, nav a:focus { background: var(--calm-blue); transform: translateY(-2px); box-shadow: var(--shadow); } nav a:focus { outline: var(--focus-outline); outline-offset: 2px; } /* Main content area */ main { padding: var(--spacing-lg) 0; background: var(--bg-white); min-height: calc(100vh - 200px); } /* Crisis banner */ .crisis-banner { background: linear-gradient(135deg, #ff6b6b, #ff8787); color: white; padding: var(--spacing-md); border-radius: 12px; margin-bottom: var(--spacing-lg); text-align: center; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.95; } } .crisis-banner h2 { font-size: 1.2rem; margin-bottom: var(--spacing-sm); } .crisis-number { font-size: 2rem; font-weight: bold; display: block; margin: var(--spacing-sm) 0; } /* Section styles */ section { margin-bottom: var(--spacing-xl); padding: var(--spacing-lg); background: var(--bg-white); border-radius: 12px; box-shadow: var(--shadow); transition: var(--transition); } section:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.15); } section h2 { color: var(--primary-green); font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: var(--spacing-md); padding-bottom: var(--spacing-sm); border-bottom: 3px solid var(--calm-green); display: flex; align-items: center; gap: var(--spacing-sm); } /* Intermediate heading level for sub‑sections */ section h3 { font-size: 1.1rem; margin-top: var(--spacing-md); margin-bottom: var(--spacing-sm); color: var(--primary-blue); } .section-icon { width: 28px; height: 28px; fill: var(--primary-green); } /* Resource lists */ .resource-list { list-style: none; margin-top: var(--spacing-md); } .resource-list li { padding: var(--spacing-md); background: var(--bg-light); border-radius: 8px; margin-bottom: var(--spacing-sm); transition: var(--transition); border-left: 4px solid var(--primary-blue); } .resource-list li:hover { transform: translateX(4px); background: var(--calm-blue); } .resource-link { color: var(--primary-blue); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: var(--spacing-sm); } .resource-link:hover, .resource-link:focus { text-decoration: underline; } .resource-link:focus { outline: var(--focus-outline); outline-offset: 2px; } .resource-description { color: var(--text-light); margin-top: 0.25rem; font-size: 0.95rem; } /* Regional accordions */ .region-accordion { margin-top: var(--spacing-md); } details { background: var(--bg-light); border-radius: 8px; margin-bottom: var(--spacing-sm); border: 1px solid var(--border-light); transition: var(--transition); } details[open] { box-shadow: var(--shadow); } summary { padding: var(--spacing-md); cursor: pointer; font-weight: 600; color: var(--primary-blue); list-style: none; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); } summary::-webkit-details-marker { display: none; } summary::after { content: '+'; font-size: 1.5rem; transition: transform 0.3s ease; } details[open] summary::after { transform: rotate(45deg); } summary:hover { background: var(--calm-blue); } summary:focus { outline: var(--focus-outline); outline-offset: -3px; } details .content { padding: 0 var(--spacing-md) var(--spacing-md); } /* Footer */ footer { background: var(--primary-green); color: white; padding: var(--spacing-lg) 0; text-align: center; margin-top: var(--spacing-xl); } footer a { color: var(--calm-blue); text-decoration: none; font-weight: 600; } footer a:hover, footer a:focus { text-decoration: underline; } footer a:focus { outline: var(--focus-outline); outline-offset: 2px; } .footer-meta { font-size: 0.9rem; margin-top: var(--spacing-md); opacity: 0.9; } /* Back to top button */ .back-to-top { position: fixed; bottom: 2rem; right: 2rem; background: var(--primary-blue); color: white; padding: 0.75rem; border-radius: 50%; text-decoration: none; box-shadow: var(--shadow); transition: var(--transition); opacity: 0; visibility: hidden; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; } .back-to-top.visible { opacity: 1; visibility: visible; } .back-to-top:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(0,0,0,0.2); } .back-to-top:focus { outline: var(--focus-outline); outline-offset: 2px; } /* Responsive design */ @media (max-width: 768px) { .header-content { flex-direction: column; text-align: center; } nav ul { flex-direction: column; align-items: stretch; } nav a { display: block; text-align: center; } section { padding: var(--spacing-md); } .crisis-number { font-size: 1.5rem; } } /* Print styles */ @media print { .skip-link, .theme-controls, .back-to-top { display: none; } body { background: white; color: black; } section { page-break-inside: avoid; box-shadow: none; } } /* Reduced motion preferences */ @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } /* === Custom overrides for improved usability === The following rules are appended at the end of the stylesheet so they override earlier declarations. They enlarge headings and country summaries, introduce a chevron instead of a plus sign, and define the layout and style for the continent selector. These changes respond to feedback requesting clearer interactive controls and larger type sizes throughout the page. */ /* Larger flags and text within each country summary */ .country-grid summary { font-size: 1.4rem; padding-left: 2rem; } /* Replace the default plus with a chevron arrow that rotates on open */ .country-grid summary::after { content: '\25B6'; /* ▶ RIGHT-POINTING TRIANGLE */ font-size: 1.5rem; transform: rotate(0deg); transition: transform 0.3s ease; position: absolute; left: 0; } .country-grid details[open] > summary::after { transform: rotate(90deg); } /* Strengthen the bounding boxes for country entries */ .country-grid details { border: 2px solid var(--calm-blue); border-radius: 8px; } .country-grid details[open] { background: var(--bg-white); border-color: var(--primary-blue); } /* Increase heading sizes for sections */ section h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); } section h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); } /* Continent selector displayed horizontally with equal-width buttons */ .continent-selector { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: var(--spacing-md); } @media (max-width: 768px) { .continent-selector { grid-template-columns: repeat(2, 1fr); } } /* Continent button styling: add bounding boxes and centred layout */ .continent-btn { border: 2px solid var(--border-light); background: var(--bg-light); border-radius: 8px; padding: var(--spacing-sm); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; cursor: pointer; transition: var(--transition); } .continent-btn:hover, .continent-btn:focus { background: var(--calm-blue); box-shadow: var(--shadow); } .continent-btn[aria-pressed="true"] { border-color: var(--primary-blue); background: var(--calm-blue); } /* Increase size of the continent images */ .continent-icon-img { width: 64px; height: 64px; object-fit: contain; } /* Focus visible for keyboard navigation */ :focus-visible { outline: var(--focus-outline); outline-offset: 2px; } /* Screen reader only content */ .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; } /* Larger, more accessible continent buttons */ .continent-btn { /* Provide generous touch targets and visual grouping */ min-height: 100px; min-width: 160px; font-size: 1.2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.35rem; border: 2px solid var(--calm-blue); background: var(--bg-light); color: var(--text-dark); border-radius: 10px; cursor: pointer; transition: var(--transition); } /* Active state styling for selected continent */ .continent-btn[aria-pressed="true"] { background: var(--primary-blue); color: var(--bg-white); } .continent-btn:hover, .continent-btn:focus { background: var(--calm-green); border-color: var(--calm-green); } .continent-icon { /* Make the continent icon large and distinguishable */ font-size: 3rem; } /* Silhouette images for continents. We set explicit dimensions and allow the images to fit within their boxes while preserving aspect ratio. */ .continent-icon-img { width: 60px; height: 60px; object-fit: contain; margin-bottom: 0.3rem; } /* Layout the five continent selectors in a single row on larger screens */ .continent-selector { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: var(--spacing-md); } /* Responsive behaviour: fall back to two columns on small screens */ @media (max-width: 768px) { .continent-selector { grid-template-columns: repeat(2, 1fr); } } /* Increase heading sizes for better hierarchy */ section h2 { font-size: 2.4rem; margin-top: var(--spacing-lg); } section h3 { font-size: 1.8rem; } /* Override default summary styling to enlarge flags/text and provide a custom chevron indicator. We deliberately repeat some properties here so that this rule takes precedence over earlier declarations. */ .country-grid summary { font-size: 1.5rem; cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: var(--spacing-sm); position: relative; padding-left: 2rem; } .country-grid summary::marker { content: ''; } .country-grid summary::before { /* Use a right-pointing triangle as an interactive chevron. The icon rotates when its parent <details> opens, signalling interactivity. */ content: '▶'; position: absolute; left: 0; font-size: 1.6rem; transform: rotate(0deg); transition: transform 0.3s ease; } .country-grid details[open] > summary::before { transform: rotate(90deg); } /* Search container styling */ .region-search { margin: var(--spacing-md) 0; } .region-search input { width: 100%; padding: 0.75rem; border: 2px solid var(--calm-blue); border-radius: 8px; font-size: 1rem; } /* Quick access styles */ .quick-access { margin-bottom: var(--spacing-md); } .quick-access .country { margin-bottom: var(--spacing-md); } /* Country list styles */ .country-grid details { margin-bottom: var(--spacing-md); border: 1px solid var(--calm-blue); border-radius: 8px; padding: var(--spacing-sm); background: var(--bg-light); } .country-grid details[open] { background: var(--bg-white); } .country-grid summary { cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: var(--spacing-sm); font-size: 1.1rem; position: relative; padding-left: 1.5rem; } .country-grid summary::marker { content: ''; } /* The expand/collapse indicator for countries will be defined later */ /* We remove the earlier arrow definition to avoid conflicts */ .country-grid .content { margin-top: var(--spacing-sm); } @media (prefers-contrast: high) { .continent-btn { border: 3px solid currentColor; } } @media (max-width: 768px) { .continent-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } } 
    /* Mobile hamburger menu styles */
    .menu-toggle {
      display: none;
      background: var(--calm-blue);
      color: var(--text-dark);
      padding: var(--spacing-sm) var(--spacing-md);
      border: 1px solid var(--border-light);
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      align-items: center;
    }
    .menu-toggle .menu-icon {
      margin-left: 0.5rem;
    }
    @media (max-width: 768px) {
      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
      }
      nav ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
      }
      nav.open ul {
        display: flex;
      }
    }
</style> </head> <body> <!-- Skip to main content link --> <a class="skip-link" href="#main"> Skip to main content </a> <!-- Header with branding and theme controls --> <header role="banner"> <div class="container"> <div class="header-content"> <h1> <span aria-label="Sun behind cloud" class="logo-icon" role="img"> 🌤️ </span> Free Mental Health Info </h1> <div aria-label="Theme selection" class="theme-controls" role="group"> <!-- Pass the clicked element via 'this' to avoid relying on a global event object --> <button aria-label="Light theme" aria-pressed="true" class="theme-btn" onclick="setTheme('light', this)"> Light </button> <button aria-label="Dark theme" aria-pressed="false" class="theme-btn" onclick="setTheme('dark', this)"> Dark </button> <button aria-label="High contrast theme" aria-pressed="false" class="theme-btn" onclick="setTheme('high-contrast', this)"> High Contrast </button> </div> </div> </div> <!-- Main navigation --> <nav aria-label="Main navigation" role="navigation"> <div class="container"> <button class="menu-toggle" aria-expanded="false" aria-controls="main-menu">Menu <span class="menu-icon" aria-hidden="true">☰</span></button><ul id="main-menu"> <li> <a aria-label="Crisis support and emergency help" href="#crisis"> Crisis Help </a> </li> <li> <a aria-label="Basic needs including food and shelter" href="#basic-needs"> Basic Needs </a> </li> <li> <a aria-label="Safety resources and crisis lines" href="#safety"> Safety </a> </li> <li> <a aria-label="Support groups and community resources" href="#community"> Community </a> </li> <li> <a aria-label="Self-help tools and resources" href="#self-help"> Self‑Help </a> </li> <li> <a aria-label="Personal growth and learning resources" href="#growth"> Growth </a> </li> <li> <a aria-label="Resources organized by geographic region" href="#regions"> By Region </a> </li> </ul> </div> </nav> </header> <!-- Main content area --> <main id="main" role="main" tabindex="-1"> <div class="container"> <!-- Crisis support banner --> <div class="crisis-banner" id="crisis" role="alert"> <h2> Need Immediate Help? </h2> <p> If you're in crisis or need immediate support: </p> <strong aria-label="Crisis hotline number" class="crisis-number"> Call <a href="tel:988"> 988 </a> </strong> <p> (U.S. Suicide &amp; Crisis Lifeline – Available 24/7) </p> <p> For international crisis lines, see <a href="#regions" style="color: white; text-decoration: underline;"> regional resources below </a> </p> </div> <!-- About section moved below basic needs --> <!-- Basic Needs section --> <section aria-labelledby="basic-needs-heading" id="basic-needs"> <h2 id="basic-needs-heading"> <svg aria-hidden="true" class="section-icon" viewbox="0 0 24 24"> <path d="M10,20V14H14V20H19V12H22L12,3L2,12H5V20H10Z"> </path> </svg> Basic Needs: Food, Shelter &amp; Healthcare </h2> <p> Meeting fundamental needs is essential for mental wellness. These resources help with food security, housing, and basic healthcare access: </p> <h3> Key Resources </h3> <ul class="resource-list"> <li> <a aria-label="Feeding America – Find local food banks" class="resource-link" href="https://www.feedingamerica.org/" rel="nofollow noopener" target="_blank"> Feeding America – Food Bank Locator </a> <p class="resource-description"> Find food banks and meal programs across the United States. Search by ZIP code for immediate assistance. </p> </li> <li> <a aria-label="SAMHSA homelessness and housing resources" class="resource-link" href="https://www.samhsa.gov/homelessness-programs-resources" rel="nofollow noopener" target="_blank"> SAMHSA Housing &amp; Homelessness Support </a> <p class="resource-description"> U.S. programs combining housing assistance with mental health services for those experiencing homelessness. </p> </li> <li> <a aria-label="World Health Organization mental health resources" class="resource-link" href="https://www.who.int/health-topics/mental-health" rel="nofollow noopener" target="_blank"> WHO Global Mental Health Resources </a> <p class="resource-description"> International mental health information, policy guidance, and country-specific resource directories. </p> </li> </ul> </section> <!-- About section --> <section aria-labelledby="about-heading" id="about"> <h2 id="about-heading"> <svg aria-hidden="true" class="section-icon" viewbox="0 0 24 24"> <path d="M13,9H11V7H13V9M13,17H11V11H13V17M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z"> </path> </svg> About This Resource </h2> <p> Welcome to a comprehensive collection of <strong> free mental health resources </strong> from around the world. This site is organized by human needs to help you quickly find the support you're looking for. </p> <p> <strong> Important: </strong> This site provides information only and does not replace professional medical advice. If you're experiencing a mental health emergency, please contact your local emergency services or a crisis hotline immediately. </p> <p> All resources are carefully selected for accessibility, quality, and availability at no cost to ensure everyone can access mental health support regardless of their financial situation. </p> </section> <!-- Safety section --> <section aria-labelledby="safety-heading" id="safety"> <h2 id="safety-heading"> <svg aria-hidden="true" class="section-icon" viewbox="0 0 24 24"> <path d="M12,1L3,5V11C3,16.55 6.84,21.74 12,23C17.16,21.74 21,16.55 21,11V5L12,1Z"> </path> </svg> Safety &amp; Crisis Support </h2> <p> Your safety is our priority. Access crisis intervention services, emergency hotlines, and immediate support resources: </p> <h3> Key Resources </h3> <ul class="resource-list"> <li> <a aria-label="Find a Helpline – Global crisis directory" class="resource-link" href="https://findahelpline.com" rel="nofollow noopener" target="_blank"> Find A Helpline – Global Crisis Directory </a> <p class="resource-description"> Comprehensive directory of suicide prevention and crisis hotlines serving over <a href="tel:100"> 100 </a> countries worldwide. </p> </li> <li> <a aria-label="Crisis Text Line – Text-based support" class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line – 24/7 Text Support </a> <p class="resource-description"> Free, confidential crisis support via text message. Available in US, UK, Canada, and Ireland. </p> </li> <li> <a aria-label="WHO crisis services and management" class="resource-link" href="https://www.who.int/teams/mental-health-and-substance-use/policy-law-rights/crisis-support" rel="nofollow noopener" target="_blank"> WHO Crisis Services &amp; Management </a> <p class="resource-description"> International guidelines and resources for crisis intervention and emergency mental health response. </p> </li> </ul> </section> <!-- Community section --> <section aria-labelledby="community-heading" id="community"> <h2 id="community-heading"> <svg aria-hidden="true" class="section-icon" viewbox="0 0 24 24"> <path d="M12,5.5A3.5,3.5 0 0,1 15.5,9A3.5,3.5 0 0,1 12,12.5A3.5,3.5 0 0,1 8.5,9A3.5,3.5 0 0,1 12,5.5M5,8C5.56,8 6.08,8.15 6.53,8.42C6.38,9.85 6.8,11.27 7.66,12.38C7.16,13.34 6.16,14 5,14A3,3 0 0,1 2,11A3,3 0 0,1 5,8M19,8A3,3 0 0,1 22,11A3,3 0 0,1 19,14C17.84,14 16.84,13.34 16.34,12.38C17.2,11.27 17.62,9.85 17.47,8.42C17.92,8.15 18.44,8 19,8M5.5,18.25C5.5,16.18 8.41,14.5 12,14.5C15.59,14.5 18.5,16.18 18.5,18.25V20H5.5V18.25M0,20V18.5C0,17.11 1.89,15.94 4.45,15.6C3.86,16.28 3.5,17.22 3.5,18.25V20H0M24,20H20.5V18.25C20.5,17.22 20.14,16.28 19.55,15.6C22.11,15.94 24,17.11 24,18.5V20Z"> </path> </svg> Support &amp; Community </h2> <p> Connection reduces isolation and builds resilience. Find peer support groups, online communities, and social resources: </p> <h3> Key Resources </h3> <ul class="resource-list"> <li> <a aria-label="NAMI peer-led support groups" class="resource-link" href="https://www.nami.org/Support-Education/Support-Groups" rel="nofollow noopener" target="_blank"> NAMI Support Groups – Peer‑Led Communities </a> <p class="resource-description"> Free, peer-led support groups across the U.S. for individuals and families affected by mental illness. </p> </li> <li> <a aria-label="Mental Health Forum – Online community" class="resource-link" href="https://www.mentalhealthforum.net/" rel="nofollow noopener" target="_blank"> Mental Health Forum – Global Online Community </a> <p class="resource-description"> Safe, moderated online forum with discussion boards for various mental health conditions and experiences. </p> </li> <li> <a aria-label="7 Cups – Free emotional support" class="resource-link" href="https://www.7cups.com/" rel="nofollow noopener" target="_blank"> 7 Cups – Anonymous Emotional Support </a> <p class="resource-description"> Free, anonymous emotional support from trained volunteer listeners available 24/7 via chat. </p> </li> </ul> </section> <!-- Self-Help section --> <section aria-labelledby="self-help-heading" id="self-help"> <h2 id="self-help-heading"> <svg aria-hidden="true" class="section-icon" viewbox="0 0 24 24"> <path d="M12,2A3,3 0 0,1 15,5V11A3,3 0 0,1 12,14A3,3 0 0,1 9,11V5A3,3 0 0,1 12,2M19,11C19,14.53 16.39,17.44 13,17.93V21H11V17.93C7.61,17.44 5,14.53 5,11H7A5,5 0 0,0 12,16A5,5 0 0,0 17,11H19Z"> </path> </svg> Self‑Help Tools &amp; Resources </h2> <p> Build coping skills and resilience with evidence‑based self‑help tools, educational materials, and wellness resources: </p> <h3> Key Resources </h3> <ul class="resource-list"> <li> <a aria-label="Mind UK – Mental health information" class="resource-link" href="https://www.mind.org.uk/information-support/types-of-mental-health-problems/" rel="nofollow noopener" target="_blank"> Mind UK – Mental Health Information Hub </a> <p class="resource-description"> Comprehensive guides on mental health conditions, treatments, and practical coping strategies. </p> </li> <li> <a aria-label="Headspace – Free meditation resources" class="resource-link" href="https://www.headspace.com/meditation/relaxation" rel="nofollow noopener" target="_blank"> Headspace – Free Meditation &amp; Mindfulness </a> <p class="resource-description"> Free articles, exercises, and guided meditations for managing anxiety, stress, and improving sleep. </p> </li> <li> <a aria-label="MoodGYM – Interactive CBT program" class="resource-link" href="https://moodgym.com.au/" rel="nofollow noopener" target="_blank"> MoodGYM – Interactive CBT Training </a> <p class="resource-description"> Free, interactive program teaching cognitive behavioral therapy techniques for depression and anxiety. </p> </li> </ul> </section> <!-- Growth section --> <section aria-labelledby="growth-heading" id="growth"> <h2 id="growth-heading"> <svg aria-hidden="true" class="section-icon" viewbox="0 0 24 24"> <path d="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z"> </path> </svg> Personal Growth &amp; Learning </h2> <p> Foster recovery and personal development through education, creativity, and meaningful activities: </p> <h3> Key Resources </h3> <ul class="resource-list"> <li> <a aria-label="Yale's Science of Well‑Being course" class="resource-link" href="https://www.coursera.org/learn/the-science-of-well-being" rel="nofollow noopener" target="_blank"> The Science of Well‑Being – Yale Free Course </a> <p class="resource-description"> Yale's most popular course on happiness and well‑being, available free on Coursera. </p> </li> <li> <a aria-label="VolunteerMatch – Find volunteer opportunities" class="resource-link" href="https://www.volunteermatch.org/" rel="nofollow noopener" target="_blank"> VolunteerMatch – Purpose Through Service </a> <p class="resource-description"> Connect with volunteer opportunities to build community, find purpose, and support causes you care about. </p> </li> <li> <a aria-label="Khan Academy – Free creative courses" class="resource-link" href="https://www.khanacademy.org/humanities/hass-storytelling" rel="nofollow noopener" target="_blank"> Khan Academy – Creative Expression Courses </a> <p class="resource-description"> Free courses in storytelling, creative writing, and art to support emotional expression and growth. </p> </li> </ul> </section> <section aria-labelledby="regions-heading" id="regions"> <h2 id="regions-heading"> <span aria-label="Globe" class="section-icon" role="img"> 🌐 </span> Resources by Region </h2> <p> Find mental health services and support specific to your location. Select your continent or search below: </p> <div aria-live="polite" class="quick-access" id="quick-access"> </div> <div class="region-search" id="region-search-container"> <label class="visually-hidden" for="region-search"> Search by country or language </label> <input autocomplete="off" id="region-search" list="region-suggestions" placeholder="Type your country or language..." type="search"/> <datalist id="region-suggestions"> <option value="Afghanistan"> </option> <option value="Albania"> </option> <option value="Algeria"> </option> <option value="Amharic"> </option> <option value="Andorra"> </option> <option value="Angola"> </option> <option value="Antigua and Barbuda"> </option> <option value="Arabic"> </option> <option value="Argentina"> </option> <option value="Armenia"> </option> <option value="Armenian"> </option> <option value="Australia"> </option> <option value="Austria"> </option> <option value="Azerbaijan"> </option> <option value="Bahrain"> </option> <option value="Bangla"> </option> <option value="Bangladesh"> </option> <option value="Barbados"> </option> <option value="Belarus"> </option> <option value="Belgium"> </option> <option value="Belize"> </option> <option value="Bhutan"> </option> <option value="Bolivia"> </option> <option value="Bosnia and Herzegovina"> </option> <option value="Botswana"> </option> <option value="Brunei"> </option> <option value="Bulgaria"> </option> <option value="Burmese"> </option> <option value="Cambodia"> </option> <option value="Cameroon"> </option> <option value="Canada"> </option> <option value="Cantonese"> </option> <option value="Cantonese/Chinese"> </option> <option value="Chile"> </option> <option value="China"> </option> <option value="Chinese"> </option> <option value="Colombia"> </option> <option value="Costa Rica"> </option> <option value="Croatia"> </option> <option value="Cuba"> </option> <option value="Cyprus"> </option> <option value="Czech"> </option> <option value="Czechia"> </option> <option value="Côte d’Ivoire"> </option> <option value="Danish"> </option> <option value="Dari"> </option> <option value="Democratic Republic of the Congo"> </option> <option value="Denmark"> </option> <option value="Dhivehi"> </option> <option value="Dominica"> </option> <option value="Dominican Republic"> </option> <option value="Dutch"> </option> <option value="Dzongkha"> </option> <option value="Ecuador"> </option> <option value="Egypt"> </option> <option value="El Salvador"> </option> <option value="English"> </option> <option value="Estonia"> </option> <option value="Ethiopia"> </option> <option value="Fiji"> </option> <option value="Filipino"> </option> <option value="Finland"> </option> <option value="Finnish"> </option> <option value="France"> </option> <option value="French"> </option> <option value="Georgia"> </option> <option value="Georgian"> </option> <option value="German"> </option> <option value="Germany"> </option> <option value="Ghana"> </option> <option value="Greece"> </option> <option value="Greek"> </option> <option value="Grenada"> </option> <option value="Guatemala"> </option> <option value="Guyana"> </option> <option value="Haiti"> </option> <option value="Hebrew"> </option> <option value="Hindi"> </option> <option value="Honduras"> </option> <option value="Hong Kong (China)"> </option> <option value="Hong Kong (SAR)"> </option> <option value="Hungarian"> </option> <option value="Hungary"> </option> <option value="Iceland"> </option> <option value="India"> </option> <option value="Indonesia"> </option> <option value="Indonesian"> </option> <option value="Iran"> </option> <option value="Iraq"> </option> <option value="Ireland"> </option> <option value="Israel"> </option> <option value="Italian"> </option> <option value="Italy"> </option> <option value="Jamaica"> </option> <option value="Japan"> </option> <option value="Japanese"> </option> <option value="Jordan"> </option> <option value="Kazakh"> </option> <option value="Kazakhstan"> </option> <option value="Kenya"> </option> <option value="Khmer"> </option> <option value="Kinyarwanda"> </option> <option value="Kiribati"> </option> <option value="Korean"> </option> <option value="Kurdish"> </option> <option value="Kuwait"> </option> <option value="Kyrgyz"> </option> <option value="Kyrgyzstan"> </option> <option value="Lao"> </option> <option value="Laos"> </option> <option value="Latvia"> </option> <option value="Lebanon"> </option> <option value="Libya"> </option> <option value="Liechtenstein"> </option> <option value="Lithuania"> </option> <option value="Luxembourg"> </option> <option value="Madagascar"> </option> <option value="Malay"> </option> <option value="Malayalam"> </option> <option value="Malaysia"> </option> <option value="Maldives"> </option> <option value="Malta"> </option> <option value="Mandarin"> </option> <option value="Marshall Islands"> </option> <option value="Men"> </option> <option value="Mexico"> </option> <option value="Micronesia"> </option> <option value="Moldova"> </option> <option value="Monaco"> </option> <option value="Mongolia"> </option> <option value="Mongolian"> </option> <option value="Montenegro"> </option> <option value="Morocco"> </option> <option value="Mozambique"> </option> <option value="Multiple"> </option> <option value="Myanmar"> </option> <option value="Namibia"> </option> <option value="Nauru"> </option> <option value="Ndebele"> </option> <option value="Nepal"> </option> <option value="Nepali"> </option> <option value="Netherlands"> </option> <option value="New Zealand"> </option> <option value="Nicaragua"> </option> <option value="Nigeria"> </option> <option value="North Korea"> </option> <option value="North Macedonia"> </option> <option value="Norway"> </option> <option value="Norwegian"> </option> <option value="Oman"> </option> <option value="Pakistan"> </option> <option value="Palau"> </option> <option value="Panama"> </option> <option value="Papua New Guinea"> </option> <option value="Paraguay"> </option> <option value="Pashto"> </option> <option value="Persian"> </option> <option value="Peru"> </option> <option value="Philippines"> </option> <option value="Poland"> </option> <option value="Polish"> </option> <option value="Portugal"> </option> <option value="Portuguese"> </option> <option value="Qatar"> </option> <option value="Romania"> </option> <option value="Romanian"> </option> <option value="Russia"> </option> <option value="Russian"> </option> <option value="Rwanda"> </option> <option value="Saint Kitts and Nevis"> </option> <option value="Saint Lucia"> </option> <option value="Saint Vincent and the Grenadines"> </option> <option value="Samoa"> </option> <option value="San Marino"> </option> <option value="Saudi Arabia"> </option> <option value="Senegal"> </option> <option value="Serbia"> </option> <option value="Setswana"> </option> <option value="Shona"> </option> <option value="Singapore"> </option> <option value="Sinhala"> </option> <option value="Slovakia"> </option> <option value="Slovenia"> </option> <option value="Solomon Islands"> </option> <option value="South Africa"> </option> <option value="South Korea"> </option> <option value="Spain"> </option> <option value="Spanish"> </option> <option value="Sri Lanka"> </option> <option value="Sudan"> </option> <option value="Suriname"> </option> <option value="Sweden"> </option> <option value="Swedish"> </option> <option value="Switzerland"> </option> <option value="Syria"> </option> <option value="Taiwan"> </option> <option value="Tajikistan"> </option> <option value="Tamil"> </option> <option value="Tanzania"> </option> <option value="Thai"> </option> <option value="Thailand"> </option> <option value="The Bahamas"> </option> <option value="Timor-Leste"> </option> <option value="Tonga"> </option> <option value="Trinidad and Tobago"> </option> <option value="Tunisia"> </option> <option value="Turkey"> </option> <option value="Turkish"> </option> <option value="Turkmenistan"> </option> <option value="Tuvalu"> </option> <option value="Uganda"> </option> <option value="Ukraine"> </option> <option value="Ukrainian"> </option> <option value="United Arab Emirates"> </option> <option value="United Kingdom"> </option> <option value="United States"> </option> <option value="Urdu"> </option> <option value="Uruguay"> </option> <option value="Uzbekistan"> </option> <option value="Vanuatu"> </option> <option value="Venezuela"> </option> <option value="Vietnam"> </option> <option value="Vietnamese"> </option> <option value="Welsh"> </option> <option value="Yemen"> </option> <option value="Zambia"> </option> <option value="Zimbabwe"> </option> <option value="adults"> </option> <option value="chat"> </option> <option value="depression"> </option> <option value="email"> </option> <option value="parents"> </option> <option value="webchat"> </option> </datalist> </div> <div aria-label="Select a continent" class="continent-selector" role="navigation"> <!-- Use distinct icons for each continent for better recognition --> <button aria-pressed="false" class="continent-btn" data-continent="africa"> <!-- Use locally stored silhouette images instead of generic emoji for clarity --> <img alt="Africa continent silhouette" class="continent-icon-img" src="images/africa_small.png"/> <span class="continent-label"> Africa </span> </button> <button aria-pressed="false" class="continent-btn" data-continent="americas"> <img alt="Americas continent silhouette" class="continent-icon-img" src="images/americas_small.png"/> <span class="continent-label"> Americas </span> </button> <button aria-pressed="false" class="continent-btn" data-continent="asia"> <img alt="Asia &amp; Pacific continent silhouette" class="continent-icon-img" src="images/asia_small.png"/> <span class="continent-label"> Asia &amp; Pacific </span> </button> <button aria-pressed="false" class="continent-btn" data-continent="europe"> <img alt="Europe continent silhouette" class="continent-icon-img" src="images/europe_small.png"/> <span class="continent-label"> Europe </span> </button> <button aria-pressed="false" class="continent-btn" data-continent="oceania"> <img alt="Oceania continent silhouette" class="continent-icon-img" src="images/oceania_small.png"/> <span class="continent-label"> Oceania </span> </button> </div> <div class="country-grid" id="country-list"> <details class="country" data-continent="africa" data-languages="arabic;french" data-name="algeria"> <summary> 🇩🇿 Algeria </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://blog.opencounseling.com/hotlines-dz/" rel="nofollow noopener" target="_blank"> National Commission for the Protection and Promotion of Childhood Hotline </a> <p class="resource-description"> Helpline | Target: Children, Families | Languages: Arabic, French | Contact: <a href="tel:1111"> 1111 </a> </p> <p class="resource-notes"> Provides psychological counselling and support by psychologists; free and confidential </p> </li> <li> <a class="resource-link" href="https://aapfdz.org/28-Cellule-de-Soutien-Psychologique" rel="nofollow noopener" target="_blank"> AAPF Psychological Support Cell </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, French | Contact: Green line <a href="tel:1005"> 1005 </a> (landlines) / <a href="tel:021782967"> 021782967 </a> (mobile) </p> <p class="resource-notes"> Psychological support with Algerian Red Crescent; operates 8am–5pm </p> </li> <li> <a class="resource-link" href="https://www.bros.global/referralalgeria" rel="nofollow noopener" target="_blank"> Emergency / Suicide Hotline (Algeria) </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, French | Contact: <a href="tel:00213983200058"> 0021 3983 2000 58 </a> / Emergency <a href="tel:34342"> 34342 or 34343 </a> </p> <p class="resource-notes"> Numbers for crisis support; available 24/7 but may not always work </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France 3114 Suicide Hotline (French) </a> <p class="resource-description"> Helpline (International Alternative) | Target: French-speaking callers | Languages: French | Contact: <a href="tel:333114"> +33 3114 </a> </p> <p class="resource-notes"> Free, confidential and available 24/7 for callers from any location; recommended for French-speaking countries lacking resources </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="portuguese" data-name="angola"> <summary> 🇦🇴 Angola </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://letsconnectcanada.ca/lifelinesproject/angola" rel="nofollow noopener" target="_blank"> Angola Emergency Hotline </a> <p class="resource-description"> Emergency hotline | Target: People experiencing emergencies or suicidal crisis | Languages: Portuguese | Contact: Tel: <a href="tel:113"> 113 </a> </p> <p class="resource-notes"> Offers 24-hour service to people throughout Angola who are in an emergency or at risk of suicide </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english;setswana" data-name="botswana"> <summary> 🇧🇼 Botswana </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/botswana/" rel="nofollow noopener" target="_blank"> Lifeline Botswana Crisis Line </a> <p class="resource-description"> Helpline | Target: General population | Languages: English, Setswana | Contact: <a href="tel:3911270"> 391-1270 </a> </p> <p class="resource-notes"> Available 24/7 for individuals in distress or experiencing suicidal thoughts </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/botswana/" rel="nofollow noopener" target="_blank"> Lifeline Botswana Youth Helpline </a> <p class="resource-description"> Helpline | Target: Youth and adolescents | Languages: English, Setswana | Contact: <a href="tel:3912345"> 391-2345 </a> </p> <p class="resource-notes"> Provides tailored support for young people with mental health challenges </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/botswana-childline-botswana-2/" rel="nofollow noopener" target="_blank"> Childline Botswana </a> <p class="resource-description"> Helpline | Target: Children | Languages: English | Contact: <a href="tel:11611"> 11611 </a> / <a href="tel:3900900"> 3900 900 </a> </p> <p class="resource-notes"> 24/7 phone counselling service for children in need of protection and support </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> SADAG Suicide Crisis Line (South Africa) </a> <p class="resource-description"> Helpline (Cross-border) | Target: General population | Languages: English | Contact: <a href="tel:27800567567"> +27 800 567 567 </a> </p> <p class="resource-notes"> Free 24/7 crisis support line from South Africa; accessible to neighboring countries </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="french" data-name="cameroon"> <summary> 🇨🇲 Cameroon </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/cameroon/" rel="nofollow noopener" target="_blank"> Cameroon Primary Crisis Hotline </a> <p class="resource-description"> Helpline | Target: General population | Languages: French | Contact: <a href="tel:237242136136"> +237 242 136 136 </a> </p> <p class="resource-notes"> 24/7 national crisis line providing mental health support </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/cameroon-lignes-vertes-cameroun/" rel="nofollow noopener" target="_blank"> Lignes Vertes Cameroun </a> <p class="resource-description"> Helpline | Target: Children &amp; general population | Languages: French | Contact: <a href="tel:116"> 116 </a> / <a href="tel:222232550"> 222 23 25 50 </a> </p> <p class="resource-notes"> Provides phone support; operating hours Monday–Friday 7:30–15:30 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/senegal/" rel="nofollow noopener" target="_blank"> Senegal Mental Health Support Line (French) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: French-speaking callers in Cameroon | Languages: French | Contact: <a href="tel:221338893800"> +221 33 889 38 00 </a> </p> <p class="resource-notes"> 24/7 national mental health support line from Senegal; recommended for French-speaking countries lacking resources </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France 3114 Suicide Hotline (French) </a> <p class="resource-description"> Helpline (International Alternative) | Target: French speakers | Languages: French | Contact: <a href="tel:333114"> +33 3114 </a> </p> <p class="resource-notes"> Free, confidential and available 24/7; accessible for French speakers worldwide </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="french" data-name="côte d’ivoire"> <summary> 🇨🇮 Côte d’Ivoire </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/cote-divoire/" rel="nofollow noopener" target="_blank"> Côte d’Ivoire Primary Crisis Hotline </a> <p class="resource-description"> Helpline | Target: General population | Languages: French | Contact: <a href="tel:143"> 143 </a> </p> <p class="resource-notes"> National crisis hotline providing immediate psychological assistance 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/cote-divoire/" rel="nofollow noopener" target="_blank"> Emergency Line (Côte d’Ivoire) </a> <p class="resource-description"> Helpline | Target: General population | Languages: French | Contact: <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> National emergency number; included as mental health crisis alternative when dedicated services are unavailable </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/senegal/" rel="nofollow noopener" target="_blank"> Senegal National Mental Health Support Line (French) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: French-speaking callers in Ivory Coast | Languages: French | Contact: <a href="tel:221338893800"> +221 33 889 38 00 </a> </p> <p class="resource-notes"> Provides free and confidential mental health support 24/7; can serve callers from neighbouring French‑speaking countries </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France 3114 Suicide Hotline (French) </a> <p class="resource-description"> Helpline (International Alternative) | Target: French speakers | Languages: French | Contact: <a href="tel:333114"> +33 3114 </a> </p> <p class="resource-notes"> Free, confidential service available 24/7; recommended alternative for French-speaking regions without local services </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="arabic;english;french;kinyarwanda" data-name="democratic republic of the congo"> <summary> 🇨🇩 Democratic Republic of the Congo </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> Tamona Mental Health Support (Sudan-derived number for cross-border use) </span> <p class="resource-description"> Helpline (Regional Alternative) | Target: General population, crisis situations | Languages: Arabic, English (regional) | Contact: <a href="tel:249909225265"> +249 90 922 5265 </a> </p> <p class="resource-notes"> Tamona initiative offers phone consultation sessions with mental health doctors for crisis support; included for nearby countries with scarce services </p> </li> <li> <span class="resource-link"> Ahfad Trauma Centre Support Line (Sudan) </span> <p class="resource-description"> Helpline (Regional Alternative) | Target: Individuals affected by trauma and disasters | Languages: Arabic, English | Contact: <a href="tel:249121510709"> +249 12 151 0709 </a> </p> <p class="resource-notes"> Specialised psychological counselling centre in Sudan; offers free support to individuals and communities; included as regional alternative </p> </li> <li> <a class="resource-link" href="https://epaper.newtimes.co.rw/infinity/article_popover_share.aspx" rel="nofollow noopener" target="_blank"> Rwanda Suicide Prevention Hotline (8015) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: General population in Rwanda and neighbouring French-speaking countries | Languages: Kinyarwanda, English, French | Contact: <a href="tel:8015"> 8015 </a> </p> <p class="resource-notes"> Free, confidential emotional support by trained psychologists 24/7; accessible to callers from neighbouring countries </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France 3114 Suicide Hotline (French) </a> <p class="resource-description"> Helpline (International Alternative) | Target: French speakers | Languages: French | Contact: <a href="tel:333114"> +33 3114 </a> </p> <p class="resource-notes"> Free 24/7 suicide prevention hotline; accessible internationally </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="arabic" data-name="egypt"> <summary> 🇪🇬 Egypt </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank"> General Secretariat of Mental Health and Addiction Treatment Hotline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing mental distress or suicidal thoughts | Languages: Arabic | Contact: Phone: <a href="tel:16328"> 16328 </a> </p> <p class="resource-notes"> "Free </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="amharic;english" data-name="ethiopia"> <summary> 🇪🇹 Ethiopia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/ethiopia/" rel="nofollow noopener" target="_blank"> National Mental Health Hotline (8335) </a> <p class="resource-description"> 24/7 crisis hotline | Target: Everyone needing mental health support | Languages: Amharic; English | Contact: Call <a href="tel:8335"> 8335 </a> </p> <p class="resource-notes"> "Operated by Ministry of Health &amp; Ethiopian Mental Health Society; free </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english" data-name="ghana"> <summary> 🇬🇭 Ghana </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/ghana/" rel="nofollow noopener" target="_blank"> Mental Health Authority Helpline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing mental distress or suicidal thoughts | Languages: English | Contact: Phone: <a href="tel:233244846701"> +233 244 846 701 </a> </p> <p class="resource-notes"> Provides confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/ghana/" rel="nofollow noopener" target="_blank"> Youth Mental Health Helpline (Ghana) </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: English | Contact: Phone: <a href="tel:233303932545"> +233 303 932 545 </a> </p> <p class="resource-notes"> Provides mental health support for youth and adolescents (hours not specified) </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english" data-name="kenya"> <summary> 🇰🇪 Kenya </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/kenya/" rel="nofollow noopener" target="_blank"> Kenya Red Cross Mental Health Hotline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing distress or suicidal thoughts | Languages: "English | Contact: Swahili" </p> <p class="resource-notes"> Dial <a href="tel:1190"> 1190 </a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/kenya/" rel="nofollow noopener" target="_blank"> Childline Kenya </a> <p class="resource-description"> Helpline | Target: Children and adolescents in distress | Languages: "English | Contact: Swahili" </p> <p class="resource-notes"> Phone: <a href="tel:0800221234"> 0800 221 234 </a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/kenya/" rel="nofollow noopener" target="_blank"> Bold Network Africa Mental Health Support </a> <p class="resource-description"> Helpline | Target: LGBTQIA+ individuals in Kenya | Languages: English | Contact: Phone: <a href="tel:254705227227"> +254 705 227 227 </a> </p> <p class="resource-notes"> Provides mental health support for LGBTQIA+ individuals; open 8 AM–8 PM daily </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="arabic;english" data-name="libya"> <summary> 🇱🇾 Libya </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="tel:472363743629633422583264685463" rel="noopener" target="_blank"> IRC Emergency Medical Team Hotline </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, English | Contact: <a href="tel:0910354839"> 0910354839 </a> </p> <p class="resource-notes"> 24/7 emergency medical line run by International Rescue Committee for life‑threatening medical emergencies in Libya </p> </li> <li> <a class="resource-link" href="tel:864274363725266785828466277646863685463" rel="noopener" target="_blank"> UNHCR General Consultation Appointment Line </a> <p class="resource-description"> Helpline | Target: Refugees and asylum seekers needing health assistance | Languages: Arabic, English | Contact: <a href="tel:0910347365"> 0910347365 </a> </p> <p class="resource-notes"> Offers appointment booking for non‑emergency health and mental health consultations; operates Sunday–Thursday 09: <a href="tel:0016"> 00‑16 </a> :30 </p> </li> <li> <a class="resource-link" href="tel:237847792465644225787767843575463" rel="noopener" target="_blank"> CESVI Psychological Support Helpline </a> <p class="resource-description"> Helpline | Target: Individuals seeking psychological support | Languages: Arabic, English | Contact: <a href="tel:0910027717"> 0910027717 </a> / <a href="tel:0922767166"> 0922767166 </a> </p> <p class="resource-notes"> Provides psychological support appointments via phone; open Sunday–Thursday 09:00–17:00 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank"> Egypt National Mental Health Hotline (Cross‑border) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: Arabic speakers in Libya | Languages: Arabic | Contact: <a href="tel:16328"> 16328 </a> </p> <p class="resource-notes"> Egypt’s General Secretariat of Mental Health hotline offers free psychological support 24/7; can serve callers from neighbouring Libya </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="french" data-name="madagascar"> <summary> 🇲🇬 Madagascar </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://childhelplineinternational.org/madagascar-ligne-verte-147-madagascar/" rel="nofollow noopener" target="_blank"> Ligne Verte 147 Madagascar </a> <p class="resource-description"> Helpline | Target: Children and youth | Languages: French | Contact: <a href="tel:147"> 147 </a> </p> <p class="resource-notes"> Child helpline for reporting mistreatment, violence, abuse and exploitation; free and available 24/7, accessible everywhere in Madagascar </p> </li> <li> <a class="resource-link" href="https://blog.opencounseling.com/hotlines-mg/" rel="nofollow noopener" target="_blank"> Gender Violence Helpline (Madagascar) </a> <p class="resource-description"> Helpline | Target: Survivors of gender‑based violence | Languages: French | Contact: <a href="tel:813"> 813 </a> / <a href="tel:2610340535013"> +261 0340535013 </a> </p> <p class="resource-notes"> Provides support for victims of gender violence; contact numbers <a href="tel:8132632610340535013"> 813 and 2610340535013 </a> </p> </li> <li> <a class="resource-link" href="https://blog.opencounseling.com/hotlines-mg/" rel="nofollow noopener" target="_blank"> Customs Violation &amp; Emergency Helplines (Madagascar) </a> <p class="resource-description"> Helplines (Emergency and support) | Target: General public | Languages: French | Contact: <a href="tel:360"> 360 </a> (customs violations); <a href="tel:910"> 910 </a> , <a href="tel:913"> 913 </a> , <a href="tel:914"> 914 (COVID-19 </a> /suspicious cases) </p> <p class="resource-notes"> Hotlines for customs violations and health emergencies; may offer indirect mental health guidance during crises </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France 3114 Suicide Hotline (French) </a> <p class="resource-description"> Helpline (International Alternative) | Target: French speakers | Languages: French | Contact: <a href="tel:333114"> +33 3114 </a> </p> <p class="resource-notes"> Free, confidential 24/7 suicide prevention hotline; included for French-speaking Malagasy who may require support </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="arabic;french" data-name="morocco"> <summary> 🇲🇦 Morocco </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/morocco/" rel="nofollow noopener" target="_blank"> Moroccan Society of Psychiatry – Mental Health Assistance </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, French | Contact: <a href="tel:212537771166"> +212 537 77 11 66 </a> </p> <p class="resource-notes"> Provides mental health assistance; identified as alternative support since Morocco has no dedicated national hotline </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/morocco/" rel="nofollow noopener" target="_blank"> CHU Ibn Rochd University Hospital Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, French | Contact: <a href="tel:212522252525"> +212 522 25 25 25 </a> </p> <p class="resource-notes"> Available Monday–Friday 8 AM–8 PM; provides psychological support and crisis intervention </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France 3114 Suicide Hotline (French) </a> <p class="resource-description"> Helpline (International Alternative) | Target: French speakers | Languages: French | Contact: <a href="tel:333114"> +33 3114 </a> </p> <p class="resource-notes"> Free, confidential suicide prevention line available 24/7; useful for French speakers in Morocco </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank"> Egypt National Mental Health Hotline (Arabic) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: Arabic-speaking callers in Morocco | Languages: Arabic | Contact: <a href="tel:16328"> 16328 </a> </p> <p class="resource-notes"> Egypt’s mental health hotline offers free 24/7 support and may serve Arabic speakers across North Africa </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english;portuguese" data-name="mozambique"> <summary> 🇲🇿 Mozambique </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.unicef.org/mozambique/en/preventing-and-responding-violence-against-children-mozambique" rel="nofollow noopener" target="_blank"> Linha Fala Criança – Child Helpline Mozambique </a> <p class="resource-description"> Helpline | Target: Children and youth | Languages: Portuguese | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> Child helpline providing free, confidential support via phone and online; available nationwide for reporting abuse and seeking psychosocial support </p> </li> <li> <a class="resource-link" href="https://www.unicef.org/mozambique/en/preventing-and-responding-violence-against-children-mozambique" rel="nofollow noopener" target="_blank"> UNICEF Child Helpline 116 (reporting channel) </a> <p class="resource-description"> Helpline | Target: Children, caregivers | Languages: Portuguese | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> UNICEF notes <a href="tel:116"> 116 </a> is the appropriate reporting channel for child protection issues including child marriage; ensures confidentiality and referral to services </p> </li> <li> <a class="resource-link" href="https://cvv.org.br/" rel="nofollow noopener" target="_blank"> Brazil CVV 188 (Portuguese) </a> <p class="resource-description"> Helpline (International Alternative) | Target: Portuguese speakers in Mozambique | Languages: Portuguese | Contact: <a href="tel:55188"> +55 188 </a> </p> <p class="resource-notes"> CVV provides free, confidential emotional support 24/7 via phone to anyone in Brazil and Portuguese-speaking countries </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> South Africa SADAG Suicide Crisis Line (English) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: English speakers in Mozambique | Languages: English | Contact: <a href="tel:27800567567"> +27 800 567 567 </a> </p> <p class="resource-notes"> Free 24/7 suicide crisis helpline; accessible to neighbouring Southern African countries </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english;local languages" data-name="namibia"> <summary> 🇳🇦 Namibia </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> LifeLine/ChildLine Namibia – Child Helpline </span> <p class="resource-description"> Helpline | Target: Children and youth | Languages: English, local languages | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> Toll-free helpline providing support for children; part of LifeLine/ChildLine Namibia </p> </li> <li> <span class="resource-link"> LifeLine/ChildLine Namibia – GBV Helpline </span> <p class="resource-description"> Helpline | Target: Survivors of gender-based violence | Languages: English, local languages | Contact: <a href="tel:106"> 106 </a> </p> <p class="resource-notes"> Free and confidential Gender-Based Violence helpline available nationwide; run by LifeLine/ChildLine Namibia </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> South Africa SADAG Crisis Line (English) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: English speakers in Namibia | Languages: English | Contact: <a href="tel:27800567567"> +27 800 567 567 </a> </p> <p class="resource-notes"> Free 24/7 suicide crisis helpline; accessible from neighbouring countries </p> </li> <li> <a class="resource-link" href="https://clzambia.org/lifeline-993/" rel="nofollow noopener" target="_blank"> LifeLine/ChildLine Namibia – Adult Helpline (Cross-border) </a> <p class="resource-description"> Helpline | Target: Adults needing counselling | Languages: English | Contact: Adults call <a href="tel:933"> 933 </a> (Zambia cross-border alternative) </p> <p class="resource-notes"> Lifeline Zambia provides free counselling via phone/text/web to adults; accessible from Namibia as a regional alternative </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english" data-name="nigeria"> <summary> 🇳🇬 Nigeria </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://mytherapist.ng/helplines" rel="nofollow noopener" target="_blank"> Safe Place Nigeria </a> <p class="resource-description"> Helpline | Target: General population in Nigeria | Languages: English | Contact: Call <a href="tel:08008002000"> 0800 800 2000 </a> </p> <p class="resource-notes"> "Toll-free </p> </li> <li> <a class="resource-link" href="https://mytherapist.ng/helplines" rel="nofollow noopener" target="_blank"> MANI Suicide &amp; Crisis Line </a> <p class="resource-description"> Helpline | Target: Individuals in Nigeria experiencing emotional distress | Languages: English | Contact: Call <a href="tel:08091116264"> 0809 111 6264 </a> or <a href="tel:08111680686"> 0811 168 0686 </a> </p> <p class="resource-notes"> "Peer-led emotional support and crisis help </p> </li> <li> <a class="resource-link" href="https://mytherapist.ng/helplines" rel="nofollow noopener" target="_blank"> SURPIN – Lagos University Teaching Hospital </a> <p class="resource-description"> Helpline | Target: Individuals needing suicide prevention support | Languages: English | Contact: "Call <a href="tel:09080217555"> 0908 021 7555 </a> </p> <p class="resource-notes"> <a href="tel:09034400009"> 0903 440 0009 </a> </p> </li> <li> <a class="resource-link" href="https://mytherapist.ng/helplines" rel="nofollow noopener" target="_blank"> Lagos Lifeline </a> <p class="resource-description"> Helpline | Target: Lagos residents needing mental health support | Languages: English | Contact: Call <a href="tel:07000006463"> 0700 000 6463 </a> </p> <p class="resource-notes"> "State-run mental-health emergency line </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="kinyarwanda" data-name="rwanda"> <summary> 🇷🇼 Rwanda </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://epaper.newtimes.co.rw/infinity/article_popover_share.aspx" rel="nofollow noopener" target="_blank"> 8015 Suicide Prevention Hotline </a> <p class="resource-description"> Helpline | Target: People experiencing emotional distress or suicidal crisis | Languages: "Kinyarwanda | Contact: English </p> <p class="resource-notes"> French" </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="french" data-name="senegal"> <summary> 🇸🇳 Senegal </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/senegal/" rel="nofollow noopener" target="_blank"> Centre de Guidance Infantile et Familiale – National Mental Health Support Line </a> <p class="resource-description"> Helpline | Target: General population | Languages: French | Contact: <a href="tel:221338893800"> +221 33 889 38 00 </a> </p> <p class="resource-notes"> Provides free, confidential mental health support and crisis intervention 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/senegal/" rel="nofollow noopener" target="_blank"> Mental Health Unit – Fann Hospital Helpline </a> <p class="resource-description"> Helpline | Target: General population | Languages: French | Contact: <a href="tel:221338255022"> +221 33 825 50 22 </a> </p> <p class="resource-notes"> Provides psychological counselling, mental health screenings and suicide prevention resources; open 8 AM–6 PM Monday–Friday </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/senegal/" rel="nofollow noopener" target="_blank"> GBV and Trauma Helpline – Association des Juristes Sénégalaises </a> <p class="resource-description"> Helpline | Target: Survivors of gender-based violence | Languages: French | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> Provides legal, psychological and shelter support 24/7 for survivors of GBV and domestic abuse </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/senegal/" rel="nofollow noopener" target="_blank"> SOS Children’s Villages Senegal – Youth Mental Health Support Line </a> <p class="resource-description"> Helpline | Target: Youth | Languages: French | Contact: <a href="tel:221338699393"> +221 33 869 93 93 </a> </p> <p class="resource-notes"> Offers emotional support and counselling services for young people 9 AM–5 PM Monday–Friday </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english;multiple south african languages" data-name="south africa"> <summary> 🇿🇦 South Africa </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> SADAG Suicide Crisis Helpline </a> <p class="resource-description"> Helpline | Target: Individuals in South Africa experiencing suicidal distress | Languages: English (and local languages) | Contact: Call <a href="tel:0800567567"> 0800 567 567 </a> </p> <p class="resource-notes"> 24-hour toll-free emergency support <a href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank">https://www.sadag.org/index.php</a> </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> Department of Social Development Substance Abuse Helpline </a> <p class="resource-description"> Helpline | Target: Individuals dealing with substance abuse | Languages: English (and local languages) | Contact: Call <a href="tel:0800121314"> 0800 12 13 14 </a> ; SMS <a href="tel:32312"> 32312 </a> </p> <p class="resource-notes"> 24-hour toll-free helpline <a href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank">https://www.sadag.org/index.php</a> </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> Cipla Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: General population seeking mental health support | Languages: English (and local languages) | Contact: Call <a href="tel:0800456789"> 0800 456 789 </a> ; SMS <a href="tel:31393"> 31393 </a> </p> <p class="resource-notes"> 24-hour toll-free helpline <a href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank">https://www.sadag.org/index.php</a> </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> Dr Reddy’s Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: Individuals seeking mental health support | Languages: English (and local languages) | Contact: Call <a href="tel:0800212223"> 0800 21 22 23 (8 </a> am–8 pm) </p> <p class="resource-notes"> Provides mental health assistance during specified hours <a href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank">https://www.sadag.org/index.php</a> </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> SADAG Suicide Crisis Helpline </a> <p class="resource-description"> Helpline | Target: Individuals facing suicidal thoughts | Languages: English; multiple South African languages | Contact: Call <a href="tel:0800567567"> 0800 567 567 </a> </p> <p class="resource-notes"> Toll-free crisis line operated by the South African Depression and Anxiety Group; available 24/7 for suicide prevention </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> Department of Social Development Substance Abuse Helpline </a> <p class="resource-description"> Helpline | Target: Individuals struggling with substance abuse or mental health issues | Languages: English; multiple South African languages | Contact: Call <a href="tel:0800121314"> 0800 12 13 14 </a> or SMS <a href="tel:32312"> 32312 </a> </p> <p class="resource-notes"> Provides counselling and referrals for substance abuse; available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> Cipla Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: Individuals seeking mental health information and support | Languages: English; multiple South African languages | Contact: Call <a href="tel:0800456789"> 0800 456 789 </a> or SMS <a href="tel:31393"> 31393 </a> </p> <p class="resource-notes"> Offers mental health counselling and referrals; toll-free </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="arabic;english" data-name="sudan"> <summary> 🇸🇩 Sudan </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> Tamona Initiative Support Line </span> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic | Contact: <a href="tel:249909225265"> +249 90 922 5265 </a> </p> <p class="resource-notes"> Voluntary initiative offering phone consultations and mental health support through doctors; aims to reduce psychological effects of crises in Sudan </p> </li> <li> <span class="resource-link"> Ahfad Trauma Centre </span> <p class="resource-description"> Helpline | Target: Individuals suffering trauma and disaster-related distress | Languages: Arabic | Contact: <a href="tel:249121510709"> +249 12 151 0709 </a> </p> <p class="resource-notes"> Provides specialised psychological counselling and psychosocial support services free of charge </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank"> Egypt National Mental Health Hotline (Cross-border) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: Arabic speakers in Sudan | Languages: Arabic | Contact: <a href="tel:16328"> 16328 </a> </p> <p class="resource-notes"> Provides free, confidential psychological support 24/7; recommended for neighbouring countries lacking dedicated hotlines </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/south-sudan/" rel="nofollow noopener" target="_blank"> South Sudan Mental Health Crisis Helpline </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: General population | Languages: English, Arabic | Contact: <a href="tel:211922500282"> +211 922 500 282 </a> </p> <p class="resource-notes"> Government-run helpline providing free mental health crisis support 24/7; accessible to callers in the region </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="mental health or gender‑based violence" data-name="tanzania"> <summary> 🇹🇿 Tanzania </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://lifeline-international.com/member/tanzania/" rel="nofollow noopener" target="_blank"> National Child Helpline (C‑Sema) </a> <p class="resource-description"> Helpline / Child protection and mental health support | Target: "Children and families needing guidance on child protection | Languages: mental health or gender‑based violence" | Contact: Swahili; English </p> <p class="resource-notes"> "Call <a href="tel:116"> 116 ( </a> Mainland) </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="arabic;french" data-name="tunisia"> <summary> 🇹🇳 Tunisia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/tunisia/" rel="nofollow noopener" target="_blank"> ATPS Suicide Prevention Helpline </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, French | Contact: <a href="tel:80103666"> 8010 3666 </a> </p> <p class="resource-notes"> Operated by Association Tunisienne de Prévention du Suicide; provides free, confidential crisis support and suicide prevention counselling 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/tunisia/" rel="nofollow noopener" target="_blank"> Razi Psychiatric Hospital – National Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, French | Contact: <a href="tel:21671576000"> +216 71 576 000 </a> </p> <p class="resource-notes"> Mental health counselling and psychiatric support available Monday–Friday 9 AM–5 PM </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/tunisia/" rel="nofollow noopener" target="_blank"> National GBV Helpline – Ministry of Women, Family and Children Affairs </a> <p class="resource-description"> Helpline | Target: Survivors of gender‑based violence | Languages: Arabic, French | Contact: <a href="tel:1899"> 1899 </a> </p> <p class="resource-notes"> Provides crisis counselling, legal aid and emergency shelter 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/tunisia/" rel="nofollow noopener" target="_blank"> UNICEF Tunisia Youth Mental Health Support Line </a> <p class="resource-description"> Helpline | Target: Youth and adolescents | Languages: Arabic, French | Contact: <a href="tel:21671571727"> +216 71 571 727 </a> </p> <p class="resource-notes"> Psychological support and suicide prevention for young people Monday–Friday 9 AM–6 PM </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="adults" data-name="uganda"> <summary> 🇺🇬 Uganda </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://findahelpline.com/organizations/mental-health-uganda-toll-free" rel="nofollow noopener" target="_blank"> Mental Health Uganda Toll-Free Helpline </a> <p class="resource-description"> Toll-free helpline | Target: "Everyone including youth | Languages: adults | Contact: caregivers" </p> <p class="resource-notes"> English; Luganda; Luo; Runyakitara </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english;english and seven zambian languages;local languages" data-name="zambia"> <summary> 🇿🇲 Zambia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://clzambia.org/lifeline-993/" rel="nofollow noopener" target="_blank"> Lifeline/Childline Zambia – Adult Helpline </a> <p class="resource-description"> Helpline | Target: Adults | Languages: English and seven Zambian languages | Contact: <a href="tel:933"> 933 </a> </p> <p class="resource-notes"> Provides free phone, text and web-based counselling 24/7; covers issues like mental health, substance abuse, violence and HIV/AIDS </p> </li> <li> <a class="resource-link" href="https://clzambia.org/lifeline-993/" rel="nofollow noopener" target="_blank"> Childline Zambia </a> <p class="resource-description"> Helpline | Target: Children and youth | Languages: English, local languages | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> Toll-free helpline providing counselling and referral services to children and young people; available via phone, text and online </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/zimbabwe/" rel="nofollow noopener" target="_blank"> Musasa Project GBV Crisis Helpline (Zimbabwe) </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: Survivors of GBV in Zambia | Languages: English | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> 24/7 crisis support line from neighbouring Zimbabwe; provides legal aid and counseling; accessible for Zambia due to shared language and region </p> </li> <li> <a class="resource-link" href="https://www.sadag.org/index.php" rel="nofollow noopener" target="_blank"> South Africa SADAG Crisis Line </a> <p class="resource-description"> Helpline (Regional Alternative) | Target: English speakers in Zambia | Languages: English | Contact: <a href="tel:27800567567"> +27 800 567 567 </a> </p> <p class="resource-notes"> Free 24/7 suicide crisis line; accessible from neighbouring countries </p> </li> </ul> </div> </details> <details class="country" data-continent="africa" data-languages="english;local languages;ndebele;shona" data-name="zimbabwe"> <summary> 🇿🇼 Zimbabwe </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/zimbabwe/" rel="nofollow noopener" target="_blank"> Friendship Bench – National Mental Health and Suicide Prevention Helpline </a> <p class="resource-description"> Helpline | Target: General population | Languages: English, Shona, Ndebele | Contact: <a href="tel:08084116"> 0808 4116 </a> </p> <p class="resource-notes"> Provides confidential crisis support and suicide prevention counselling Monday–Friday 8 AM–5 PM </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/zimbabwe/" rel="nofollow noopener" target="_blank"> Zimbabwe Ministry of Health Mental Health Support Line </a> <p class="resource-description"> Helpline | Target: General population | Languages: English, local languages | Contact: <a href="tel:263242708220"> +263 242 708 220 </a> </p> <p class="resource-notes"> Provides psychological counselling and psychiatric care Monday–Friday 8 AM–4 PM </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/zimbabwe/" rel="nofollow noopener" target="_blank"> Musasa Project GBV Crisis Helpline </a> <p class="resource-description"> Helpline | Target: Survivors of gender-based violence | Languages: English, Shona, Ndebele | Contact: <a href="tel:116"> 116 </a> </p> <p class="resource-notes"> Provides legal aid, crisis counselling and emergency shelter services 24/7 for survivors of GBV </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/zimbabwe/" rel="nofollow noopener" target="_blank"> Childline Zimbabwe – Youth Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: Children and youth | Languages: English, Shona, Ndebele | Contact: <a href="tel:263719205880"> +263 719 205 880 </a> </p> <p class="resource-notes"> 24/7 emotional support and crisis intervention services for children and young people </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="antigua and barbuda"> <summary> 🇦🇬 Antigua and Barbuda </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="argentina"> <summary> 🇦🇷 Argentina </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> National Mental Health Line (Línea de Salud Mental) </span> <p class="resource-description"> Helpline | Target: General population experiencing mental health issues or suicidal thoughts | Languages: Spanish | Contact: Call <a href="tel:08009990091"> 0800 999 0091 </a> </p> <p class="resource-notes"> "National 24/7 helpline providing free </p> </li> <li> <span class="resource-link"> Buenos Aires Mental Health Line </span> <p class="resource-description"> Helpline | Target: Residents of Buenos Aires province needing mental health support | Languages: Spanish | Contact: Call <a href="tel:08003331665"> 0800 333 1665 </a> </p> <p class="resource-notes"> 24/7 helpline offering support and referral for mental health issues </p> </li> <li> <span class="resource-link"> Centro de Asistencia al Suicida (CAS) </span> <p class="resource-description"> Helpline | Target: Individuals in crisis or with suicidal thoughts | Languages: Spanish | Contact: Call <a href="tel:135"> 135 ( </a> CABA/GBA) or <a href="tel:01152751135"> 011 5275 1135 or 0800 345 1435 </a> </p> <p class="resource-notes"> "Provides free </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="barbados"> <summary> 🇧🇧 Barbados </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="belize"> <summary> 🇧🇿 Belize </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> 24/7 free and confidential support for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline (Spanish-language) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists available 24/7 across Mexico <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="bolivia"> <summary> 🇧🇴 Bolivia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="anyone in canada;chat;english;first nations" data-name="canada"> <summary> 🇨🇦 Canada </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988.ca/" rel="nofollow noopener" target="_blank"> 9‑8‑8 Suicide Crisis Helpline </a> <p class="resource-description"> "Helpline | Target: text" | Languages: Anyone in Canada | Contact: "English </p> <p class="resource-notes"> French; culturally appropriate support" </p> </li> <li> <a class="resource-link" href="https://kidshelpphone.ca/" rel="nofollow noopener" target="_blank"> Kids Help Phone </a> <p class="resource-description"> "Helpline | Target: text | Languages: chat" | Contact: Youth aged <a href="tel:529"> 5‑29 </a> </p> <p class="resource-notes"> "English </p> </li> <li> <a class="resource-link" href="https://www.hopeforwellness.ca/" rel="nofollow noopener" target="_blank"> Hope for Wellness Help Line </a> <p class="resource-description"> "Helpline | Target: chat" | Languages: "First Nations | Contact: Inuit </p> <p class="resource-notes"> and Métis peoples" </p> </li> <li> <a class="resource-link" href="tel:463426737433684257246652747475463" rel="noopener" target="_blank"> Indian Residential School Crisis Line </a> <p class="resource-description"> Helpline | Target: Survivors of Indian Residential Schools | Languages: English | Contact: Call <a href="tel:18669254419"> 1‑866‑925‑4419 </a> </p> <p class="resource-notes"> 24/7 crisis support <a href="https://www.canada.ca/en/public-health/services/mental-health-services/mental-health-get-help.html" rel="nofollow noopener" target="_blank">https://www.canada.ca/en/public-health/services/mental-health-services/mental-health-get-help.html</a> </p> </li> <li> <a class="resource-link" href="tel:647746426368733733463443668796636263447572747475463" rel="noopener" target="_blank"> Missing and Murdered Indigenous Women and Girls Crisis Line </a> <p class="resource-description"> Helpline | Target: Families and survivors of violence | Languages: English (with translation services) | Contact: Call <a href="tel:18444136649"> 1‑844‑413‑6649 </a> </p> <p class="resource-notes"> 24/7 free support <a href="https://www.canada.ca/en/public-health/services/mental-health-services/mental-health-get-help.html" rel="nofollow noopener" target="_blank">https://www.canada.ca/en/public-health/services/mental-health-services/mental-health-get-help.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="chile"> <summary> 🇨🇱 Chile </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Salud Responde – National Suicide Prevention Hotline </a> <p class="resource-description"> Helpline | Target: General population experiencing mental health crisis | Languages: Spanish | Contact: Call <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> "Operated by the Ministry of Health; free </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Youth Mental Health Hotline </a> <p class="resource-description"> Helpline | Target: Children and adolescents in distress | Languages: Spanish | Contact: Call <a href="tel:800292800"> 800 292 800 </a> </p> <p class="resource-notes"> Provides support for young people; specific hours may vary (check locally) </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="parents;spanish" data-name="colombia"> <summary> 🇨🇴 Colombia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/north-america/colombia/" rel="nofollow noopener" target="_blank"> Crisis Hotline 106 </a> <p class="resource-description"> Helpline | Target: People experiencing mental health crisis | Languages: Spanish | Contact: Call <a href="tel:106"> 106 </a> </p> <p class="resource-notes"> Operated by Ministry of Health and local organizations; free and confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/north-america/colombia/" rel="nofollow noopener" target="_blank"> Youth Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: Spanish | Contact: Call <a href="tel:5715808111"> +57 1 580 8111 </a> </p> <p class="resource-notes"> Provides 24/7 support for youth in distress </p> </li> <li> <a class="resource-link" href="https://pilotpeer.com/emergency/" rel="nofollow noopener" target="_blank"> Instituto Colombiano de Bienestar Familiar (ICBF) Helpline </a> <p class="resource-description"> Helpline/Family support | Target: "Families | Languages: parents | Contact: children and adolescents dealing with emotional distress or abuse" </p> <p class="resource-notes"> Spanish </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="costa rica"> <summary> 🇨🇷 Costa Rica </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="cuba"> <summary> 🇨🇺 Cuba </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="dominica"> <summary> 🇩🇲 Dominica </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="dominican republic"> <summary> 🇩🇴 Dominican Republic </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="ecuador"> <summary> 🇪🇨 Ecuador </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="el salvador"> <summary> 🇸🇻 El Salvador </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="grenada"> <summary> 🇬🇩 Grenada </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="guatemala"> <summary> 🇬🇹 Guatemala </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="guyana"> <summary> 🇬🇾 Guyana </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;french;kinyarwanda" data-name="haiti"> <summary> 🇭🇹 Haiti </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France Suicide Prevention Hotline 3114 (cross-border) </a> <p class="resource-description"> Hotline | Target: French speakers needing crisis support | Languages: French | Contact: <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free national suicide prevention hotline accessible 24/7 across France; can be used by French-speaking individuals abroad https:// <a href="tel:3114"> 3114 </a> .fr/. </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/cote-divoire/" rel="nofollow noopener" target="_blank"> Ivory Coast Crisis Helpline 143 (cross-border) </a> <p class="resource-description"> Hotline | Target: French speakers in West Africa | Languages: French | Contact: <a href="tel:143"> 143 </a> </p> <p class="resource-notes"> National suicide prevention hotline in Côte d’Ivoire, available 24/7 <a href="https://progress.guide/atlas/africa/cote-divoire/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/africa/cote-divoire/</a> </p> </li> <li> <a class="resource-link" href="https://epaper.newtimes.co.rw/infinity/article_popover_share.aspx" rel="nofollow noopener" target="_blank"> Rwanda Crisis Hotline 8015 (cross-border) </a> <p class="resource-description"> Hotline | Target: French- and Kinyarwanda-speaking individuals | Languages: Kinyarwanda, English, French | Contact: <a href="tel:8015"> 8015 </a> </p> <p class="resource-notes"> Provides free, confidential emotional support 24/7 by psychologists in Rwanda <a href="https://epaper.newtimes.co.rw/infinity/article_popover_share.aspx" rel="nofollow noopener" target="_blank">https://epaper.newtimes.co.rw/infinity/article_popover_share.aspx</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="honduras"> <summary> 🇭🇳 Honduras </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="jamaica"> <summary> 🇯🇲 Jamaica </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="people across mexico needing psychological support and crisis intervention" data-name="mexico"> <summary> 🇲🇽 Mexico </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> "SAPTEL (Sistema Nacional de Apoyo </a> <p class="resource-description"> Consejo Psicológico e Intervención en Crisis por Teléfono)" | Target: Helpline | Languages: People across Mexico needing psychological support and crisis intervention | Contact: Spanish </p> <p class="resource-notes"> Call ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="nicaragua"> <summary> 🇳🇮 Nicaragua </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="panama"> <summary> 🇵🇦 Panama </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="paraguay"> <summary> 🇵🇾 Paraguay </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;nepali;sexual abuse or emotional distress;spanish" data-name="peru"> <summary> 🇵🇪 Peru </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Central 113 (Option 5 – Mental Health) </a> <p class="resource-description"> Helpline | Target: General population seeking mental health or medical information | Languages: Spanish | Contact: Call <a href="tel:113"> 113 ( </a> press option 5) </p> <p class="resource-notes"> Operated by Peru’s Ministry of Health; accessible 24/7 with health professionals; option #5 connects callers to mental health guidance; free of charge </p> </li> <li> <a class="resource-link" href="https://pilotpeer.com/emergency/" rel="nofollow noopener" target="_blank"> Línea 100 (Ministry of Women and Vulnerable Populations) </a> <p class="resource-description"> Helpline | Target: "Individuals experiencing domestic violence | Languages: sexual abuse or emotional distress" | Contact: Spanish </p> <p class="resource-notes"> Call <a href="tel:100"> 100 </a> </p> </li> <li> <a class="resource-link" href="https://pilotpeer.com/emergency/" rel="nofollow noopener" target="_blank"> La Voz Amiga </a> <p class="resource-description"> Peer-support helpline | Target: People needing anonymous emotional support | Languages: Spanish | Contact: Call <a href="tel:0800"> 0800 </a> ‑ <a href="tel:41212"> 4‑1212 or 436‑1212 </a> </p> <p class="resource-notes"> Anonymous telephone service staffed by volunteers offering support 24/7 </p> </li> <li> <a class="resource-link" href="https://kathmandupost.com/art-culture/2024/10/22/understanding-suicidal-thoughts" rel="nofollow noopener" target="_blank"> Patan Hospital Suicide Hotline </a> <p class="resource-description"> Hospital hotline | Target: People in suicidal crisis seeking professional help | Languages: Spanish; Nepali (medical staff) | Contact: Call <a href="tel:9813476123"> 9813476123 </a> </p> <p class="resource-notes"> Hospital-based suicide hotline (hours not specified); provides crisis intervention and referral to mental health services </p> </li> <li> <a class="resource-link" href="https://intellect.co/public-mental-health-helplines/" rel="nofollow noopener" target="_blank"> Mental Health Helpline Nepal (for cross-regional context; though this entry relates to Nepal – cross‑listed for awareness) </a> <p class="resource-description"> Helpline | Target: People in distress or at risk of suicide in Nepal | Languages: "English | Contact: Nepali" </p> <p class="resource-notes"> Call <a href="tel:16600133666"> 1660 013 3666 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="saint kitts and nevis"> <summary> 🇰🇳 Saint Kitts and Nevis </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="saint lucia"> <summary> 🇱🇨 Saint Lucia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="saint vincent and the grenadines"> <summary> 🇻🇨 Saint Vincent and the Grenadines </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="suriname"> <summary> 🇸🇷 Suriname </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="the bahamas"> <summary> 🇧🇸 The Bahamas </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="english;spanish" data-name="trinidad and tobago"> <summary> 🇹🇹 Trinidad and Tobago </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline (USA cross-border) </a> <p class="resource-description"> Hotline/Text/Chat | Target: English speakers | Languages: English | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> Provides free and confidential support 24/7 for people in suicidal crisis or emotional distress https:// <a href="tel:988"> 988 </a> lifeline.org/ </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text | Target: English speakers needing text-based support | Languages: English | Contact: Text HOME to <a href="tel:741741"> 741741 </a> </p> <p class="resource-notes"> Free, confidential 24/7 text support from trained volunteers <a href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank">https://www.crisistextline.org/</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: English and Spanish speakers needing mental health and substance abuse support | Languages: English, Spanish | Contact: <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> </p> <p class="resource-notes"> Confidential, free helpline offering treatment referral and information 24/7/ <a href="tel:365"> 365 </a> in English and Spanish <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="200+ languages;chat;children and adults affected by child abuse;email;english;people experiencing emotional distress from natural or human-made disasters;perinatal individuals and families;pregnant and postpartum individuals" data-name="united states"> <summary> 🇺🇸 United States </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://988lifeline.org/" rel="nofollow noopener" target="_blank"> 988 Suicide &amp; Crisis Lifeline </a> <p class="resource-description"> Helpline (call/text/chat) | Target: General population | Languages: English (with translation services) | Contact: Call or text <a href="tel:988"> 988 </a> ; chat via <a href="tel:988"> 988 </a> lifeline.org </p> <p class="resource-notes"> "Free </p> </li> <li> <a class="resource-link" href="https://www.crisistextline.org/" rel="nofollow noopener" target="_blank"> Crisis Text Line </a> <p class="resource-description"> Text chat | Target: General population and youth | Languages: "English | Contact: Spanish" </p> <p class="resource-notes"> Text HOME to <a href="tel:741741"> 741741 (English) or AYUDA to 741741 </a> (Spanish) </p> </li> <li> <a class="resource-link" href="https://www.thetrevorproject.org/get-help/" rel="nofollow noopener" target="_blank"> The Trevor Project (TrevorLifeline) </a> <p class="resource-description"> "Helpline | Target: text | Languages: chat" | Contact: LGBTQ+ youth </p> <p class="resource-notes"> English </p> </li> <li> <a class="resource-link" href="https://www.thehotline.org/" rel="nofollow noopener" target="_blank"> National Domestic Violence Hotline </a> <p class="resource-description"> "Helpline | Target: text | Languages: chat" | Contact: Individuals impacted by relationship abuse </p> <p class="resource-notes"> English ( <a href="tel:200"> 200 </a> + languages via interpreters) </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> SAMHSA National Helpline </a> <p class="resource-description"> Helpline | Target: Individuals and families facing mental health or substance use issues | Languages: "English | Contact: Spanish" </p> <p class="resource-notes"> Call <a href="tel:18006624357"> 1‑800‑662‑HELP (4357) </a> ; text your ZIP code to <a href="tel:435748"> 435748 (HELP4 </a> U) </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> Disaster Distress Helpline </a> <p class="resource-description"> "Helpline | Target: text" | Languages: People experiencing emotional distress from natural or human-made disasters | Contact: English (with ASL and interpreter services) </p> <p class="resource-notes"> Call or text <a href="tel:18009855990"> 1‑800‑985‑5990 </a> ; ASL users connect via videophone or ASL Now </p> </li> <li> <a class="resource-link" href="https://hotline.rainn.org/online" rel="nofollow noopener" target="_blank"> National Sexual Assault Hotline (RAINN) </a> <p class="resource-description"> "Helpline | Target: text | Languages: chat" | Contact: Survivors of sexual assault </p> <p class="resource-notes"> English </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> National Human Trafficking Hotline </a> <p class="resource-description"> Helpline | Target: Victims of human trafficking and concerned individuals | Languages: <a href="tel:200"> 200 </a> + languages | Contact: Call <a href="tel:18883737888"> 1‑888‑373‑7888 </a> </p> <p class="resource-notes"> Available 24/7 with trained advocates <a href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank">https://www.cdc.gov/mental-health/caring/index.html</a> </p> </li> <li> <a class="resource-link" href="https://www.cdc.gov/mental-health/caring/index.html" rel="nofollow noopener" target="_blank"> National Child Abuse Hotline </a> <p class="resource-description"> "Helpline | Target: text" | Languages: Children and adults affected by child abuse | Contact: English (interpretation available) </p> <p class="resource-notes"> Call or text <a href="tel:18004224453"> 1‑800‑4AChild (1‑800‑422‑4453) </a> </p> </li> <li> <a class="resource-link" href="https://www.veteranscrisisline.net/" rel="nofollow noopener" target="_blank"> Veterans Crisis Line </a> <p class="resource-description"> "Helpline | Target: text | Languages: chat" | Contact: "Veterans </p> <p class="resource-notes"> service members </p> </li> <li> <a class="resource-link" href="https://mchb.hrsa.gov/programs-impact/national-maternal-mental-health-hotline" rel="nofollow noopener" target="_blank"> Maternal Mental Health Hotline </a> <p class="resource-description"> "Helpline | Target: text" | Languages: Pregnant and postpartum individuals | Contact: "English </p> <p class="resource-notes"> Spanish </p> </li> <li> <a class="resource-link" href="https://postpartum.net/get-help/psi-helpline/" rel="nofollow noopener" target="_blank"> PSI HelpLine (Postpartum Support International) </a> <p class="resource-description"> "Helpline | Target: text (non‑crisis)" | Languages: Perinatal individuals and families | Contact: "English </p> <p class="resource-notes"> Spanish" </p> </li> <li> <a class="resource-link" href="https://www.nami.org/Support-Education/Support-Groups/" rel="nofollow noopener" target="_blank"> NAMI HelpLine </a> <p class="resource-description"> "Helpline | Target: text | Languages: email" | Contact: Individuals with mental health concerns and their families </p> <p class="resource-notes"> English </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="uruguay"> <summary> 🇺🇾 Uruguay </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="americas" data-languages="spanish" data-name="venezuela"> <summary> 🇻🇪 Venezuela </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank"> Mexico SAPTEL Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: ( <a href="tel:5552598121"> 55) 5259 8121 </a> </p> <p class="resource-notes"> Free mental health guidance and crisis intervention by trained psychologists 24/7 <a href="https://www.saptel.org.mx/que_es.html" rel="nofollow noopener" target="_blank">https://www.saptel.org.mx/que_es.html</a> </p> </li> <li> <a class="resource-link" href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank"> Peru Central 113 – Option 5 (Psychology) </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:113"> 113 (Option 5) </a> </p> <p class="resource-notes"> Peru’s Ministry of Health hotline offering free mental health assistance 24/7 via option 5 <a href="https://borgenproject.org/mental-health-in-peru/" rel="nofollow noopener" target="_blank">https://borgenproject.org/mental-health-in-peru/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank"> Chile 600 360 7777 Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Spanish speakers | Languages: Spanish | Contact: <a href="tel:6003607777"> 600 360 7777 </a> </p> <p class="resource-notes"> Ministry of Health crisis line providing mental health support and crisis intervention 24/7 <a href="https://progress.guide/chile/" rel="nofollow noopener" target="_blank">https://progress.guide/chile/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;dari;english;pashto;persian;regional languages;urdu" data-name="afghanistan"> <summary> 🇦🇫 Afghanistan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.umang.com.pk/" rel="nofollow noopener" target="_blank"> Umang Pakistan Mental Health Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: Urdu, English | Contact: Call or WhatsApp <a href="tel:923117786264"> +92 311 7786264 </a> </p> <p class="resource-notes"> 24/7 free confidential counselling; run by certified psychologists </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.emro.who.int/mnh/news/afghanistan-ensures-continuity-of-mental-health-and-psychosocial-support-services-during-the-covid-19-pandemic.html" rel="nofollow noopener" target="_blank"> Afghanistan Remote Psychosocial Support Lines </a> <p class="resource-description"> Hotline | Target: General population (Afghanistan) | Languages: Dari, Pashto | Contact: <a href="tel:93729070605"> +93729070605 </a> ; <a href="tel:93706586464"> +93706586464 </a> ; <a href="tel:93785637133"> +93785637133 </a> ; <a href="tel:93785159208"> +93785159208 </a> </p> <p class="resource-notes"> Remote psychosocial support lines staffed by counsellors, psychologists and psychiatrists providing counselling, psychosocial support and referrals; multiple numbers available for men and women <a href="https://www.emro.who.int/mnh/news/afghanistan-ensures-continuity-of-mental-health-and-psychosocial-support-services-during-the-covid-19-pandemic.html" rel="nofollow noopener" target="_blank">https://www.emro.who.int/mnh/news/afghanistan-ensures-continuity-of-mental-health-and-psychosocial-support-services-during-the-covid-19-pandemic.html</a> </p> </li> <li> <a class="resource-link" href="https://acf.gov/orr/programs/refugees/afghan-behavioral-health-support" rel="nofollow noopener" target="_blank"> U.S. Afghan Behavioral Health Support Helpline </a> <p class="resource-description"> Helpline | Target: Afghan refugees/resettled individuals (USA-based) | Languages: Dari, Pashto, English | Contact: <a href="tel:8006156514"> 800‑615‑6514 </a> </p> <p class="resource-notes"> 24/7 confidential counseling on domestic violence and sexual abuse; provides support for Afghan refugees <a href="https://acf.gov/orr/programs/refugees/afghan-behavioral-health-support" rel="nofollow noopener" target="_blank">https://acf.gov/orr/programs/refugees/afghan-behavioral-health-support</a> </p> </li> <li> <a class="resource-link" href="https://www.umang.com.pk/" rel="nofollow noopener" target="_blank"> Umang Pakistan (cross-border) </a> <p class="resource-description"> Hotline | Target: Afghan speakers, Dari/Pashto/Urdu speakers | Languages: Urdu, English, regional languages | Contact: <a href="tel:923174288665"> +92 317 4288665 </a> ; <a href="tel:04235765951"> 042 3576 5951 </a> ; <a href="tel:03117786264"> 0311 7786264 </a> </p> <p class="resource-notes"> Pakistan’s first 24/7 mental health helpline run by certified clinical psychologists offering free, confidential support and anonymity <a href="https://www.umang.com.pk/" rel="nofollow noopener" target="_blank">https://www.umang.com.pk/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="armenian;persian;russian;turkish" data-name="armenia"> <summary> 🇦🇲 Armenia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.bros.global/copy-of-argentina-1" rel="nofollow noopener" target="_blank"> Trust Social Work and Sociological Research Centre </a> <p class="resource-description"> Helpline | Target: People who are lonely, in distress or suicidal | Languages: Armenian | Contact: ( <a href="tel:2538194"> 2) 538194 </a> ; ( <a href="tel:2538197"> 2) 538197 </a> </p> <p class="resource-notes"> Provides 24‑hour face‑to‑face and phone counselling support for people in crisis <a href="https://www.bros.global/copy-of-argentina-1" rel="nofollow noopener" target="_blank">https://www.bros.global/copy-of-argentina-1</a> </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/armenia-far-child-protection-hotline-helpline/" rel="nofollow noopener" target="_blank"> FAR Child Protection Hotline &amp; Helpline </a> <p class="resource-description"> Helpline | Target: Children and families | Languages: Armenian | Contact: <a href="tel:080061111"> 0800 61 111 </a> </p> <p class="resource-notes"> Provides free, confidential support and referral services for children and families <a href="https://childhelplineinternational.org/armenia-far-child-protection-hotline-helpline/" rel="nofollow noopener" target="_blank">https://childhelplineinternational.org/armenia-far-child-protection-hotline-helpline/</a> </p> </li> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Child Helpline (cross‑border) </a> <p class="resource-description"> Helpline | Target: Children and youth speaking Russian | Languages: Russian | Contact: <a href="tel:88002000122"> 8 800 2000 122 (short number 124) </a> </p> <p class="resource-notes"> Free, anonymous and confidential hotline offering psychological support to children and youth, accessible nationwide and free from any phone <a href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank">https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="french;persian;russian;turkish" data-name="azerbaijan"> <summary> 🇦🇿 Azerbaijan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Turkey Emergency Health Services (112) </a> <p class="resource-description"> Emergency/helpline | Target: Turkish speakers in Azerbaijan | Languages: Turkish | Contact: <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> Turkey’s national emergency health service provides 24/7 crisis intervention and psychiatric support; accessible from neighboring Turkish-speaking regions when local services are absent <a href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/turkey/</a> </p> </li> <li> <a class="resource-link" href="https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch" rel="nofollow noopener" target="_blank"> Russia Crisis Hotline (123) </a> <p class="resource-description"> Helpline | Target: Russian speakers in Azerbaijan | Languages: Russian | Contact: <a href="tel:123"> 123 </a> (Emergency) / <a href="tel:051"> 051 </a> from landlines </p> <p class="resource-notes"> Moscow psychological emergency help line accessible regionally; calls from landlines are free and available round-the-clock <a href="https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch" rel="nofollow noopener" target="_blank">https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch</a> </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> France Suicide Prevention Hotline 3114 (cross‑border) </a> <p class="resource-description"> Hotline | Target: French speakers, general population in absence of local services | Languages: French | Contact: <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free national suicide prevention hotline accessible 24/7 across France; can be used by French-speaking individuals abroad https:// <a href="tel:3114"> 3114 </a> .fr/. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;persian;tamil" data-name="bahrain"> <summary> 🇧🇭 Bahrain </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> HOPE National Support Line </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English | Contact: Call <a href="tel:8004673"> 800 4673 </a> </p> <p class="resource-notes"> Free, available 24/7 for psychological support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank"> Aisha Yateem Family Counseling Center Hotline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing domestic and sexual violence | Languages: Arabic | Contact: <a href="tel:80001488"> 80001488 </a> </p> <p class="resource-notes"> Provides counselling and support for domestic and sexual violence; available 24/7 <a href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/bahrain/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank"> Child Helpline Bahrain </a> <p class="resource-description"> Helpline | Target: Children facing abuse or violence | Languages: Arabic | Contact: <a href="tel:998"> 998 </a> </p> <p class="resource-notes"> 24/7 toll‑free helpline for reporting violence against children <a href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/bahrain/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank"> Emergency Call Centre/Police Hotline </a> <p class="resource-description"> Emergency/helpline | Target: General population in crisis | Languages: Arabic | Contact: <a href="tel:999"> 999 </a> (Emergency Call Centre); <a href="tel:80008008"> 80008008 </a> (Police Hotline) </p> <p class="resource-notes"> Provides 24/7 emergency support and crisis intervention <a href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/bahrain/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="children and families experiencing violence or mental health crises;despair or suicidal thoughts;neglect or mental health issues" data-name="bangladesh"> <summary> 🇧🇩 Bangladesh </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi (Bangladesh Suicide Prevention Helpline) </a> <p class="resource-description"> Helpline | Target: "People feeling distress | Languages: despair or suicidal thoughts" | Contact: "Bangla </p> <p class="resource-notes"> English" </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/bangladesh-bangladesh-child-helpline-1098/" rel="nofollow noopener" target="_blank"> Child Helpline 1098 </a> <p class="resource-description"> Child helpline | Target: "Children and adolescents seeking help with abuse | Languages: neglect or mental health issues" | Contact: Bangla </p> <p class="resource-notes"> Call <a href="tel:1098"> 1098 </a> </p> </li> <li> <a class="resource-link" href="https://asiapacific.unwomen.org/en/focus-areas/end-violence-against-women/shadow-pandemic-evaw-and-covid-response/list-of-helplines" rel="nofollow noopener" target="_blank"> National Helpline 109 </a> <p class="resource-description"> Hotline for violence and mental health support | Target: "Women | Languages: children and families experiencing violence or mental health crises" | Contact: Bangla </p> <p class="resource-notes"> Call <a href="tel:109"> 109 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;dzongkha;english;hindi;sinhala;tamil" data-name="bhutan"> <summary> 🇧🇹 Bhutan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://findahelpline.com/organizations/1926-national-mental-health-helpline" rel="nofollow noopener" target="_blank"> Sri Lanka National Mental Health Helpline 1926 </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: Sinhala, Tamil, English | Contact: Call or SMS <a href="tel:1926"> 1926 </a> </p> <p class="resource-notes"> Free confidential support 24/7 via phone or SMS </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/bangladesh-bangladesh-child-helpline-1098/" rel="nofollow noopener" target="_blank"> Bangladesh Child Helpline 1098 </a> <p class="resource-description"> Child protection helpline | Target: Children and youth | Languages: Bangla | Contact: Call <a href="tel:1098"> 1098 </a> </p> <p class="resource-notes"> Confidential and privacy-protected; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/bhutan/" rel="nofollow noopener" target="_blank"> Mental Health Crisis Hotline (1010) </a> <p class="resource-description"> Hotline | Target: General population experiencing mental health crises | Languages: Dzongkha, English | Contact: <a href="tel:1010"> 1010 </a> </p> <p class="resource-notes"> National crisis hotline operated by Bhutan Youth Development Fund &amp; Ministry of Health; provides 24/7 support for mental health issues and suicide prevention <a href="https://progress.guide/atlas/asia/bhutan/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/bhutan/</a> </p> </li> <li> <a class="resource-link" href="https://thepema.gov.bt/the-pema-contact-us/" rel="nofollow noopener" target="_blank"> Bhutan Mental Health Helpline (1098) </a> <p class="resource-description"> Helpline | Target: General population needing mental health support | Languages: Dzongkha, English | Contact: <a href="tel:1098"> 1098 </a> </p> <p class="resource-notes"> National helpline for mental health support; run by PEMA; accessible by phone or email and offers counselling and referrals <a href="https://thepema.gov.bt/the-pema-contact-us/" rel="nofollow noopener" target="_blank">https://thepema.gov.bt/the-pema-contact-us/</a> </p> </li> <li> <a class="resource-link" href="https://www.unicef.org/bhutan/stories/protecting-your-mental-health-during-covid-19-pandemic" rel="nofollow noopener" target="_blank"> Student Mental Health Support Lines </a> <p class="resource-description"> Helpline (call/text) | Target: Students and young people | Languages: Dzongkha, English | Contact: <a href="tel:17123237"> 17123237 </a> ; <a href="tel:17123238"> 17123238 </a> ; <a href="tel:17123239"> 17123239 </a> ; <a href="tel:17123240"> 17123240 </a> ; <a href="tel:17123241"> 17123241 </a> </p> <p class="resource-notes"> Confidential helplines providing mental health support via call, text or messaging platforms; individuals can text for help, and trained responders will call back <a href="https://www.unicef.org/bhutan/stories/protecting-your-mental-health-during-covid-19-pandemic" rel="nofollow noopener" target="_blank">https://www.unicef.org/bhutan/stories/protecting-your-mental-health-during-covid-19-pandemic</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;chinese;english;hindi;malay;mandarin;thai" data-name="brunei"> <summary> 🇧🇳 Brunei </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://thescoop.co/2019/02/13/make-the-call-dial-145-to-seek-mental-health-help/" rel="nofollow noopener" target="_blank"> Talian Harapan 145 </a> <p class="resource-description"> Helpline | Target: Individuals contemplating suicide or in mental health crisis | Languages: Malay, English | Contact: <a href="tel:145"> 145 </a> </p> <p class="resource-notes"> National mental health helpline launched by Brunei’s Ministry of Health; free, confidential and operates 8 AM–11 PM, with plan to expand to 24/7 <a href="https://thescoop.co/" rel="nofollow noopener" target="_blank">https://thescoop.co/</a> <a href="tel:2019"> 2019 </a> /02/13/make-the-call-dial- <a href="tel:145"> 145 </a> -to-seek-mental-health-help/ </p> </li> <li> <a class="resource-link" href="https://www.befrienders.org.my/services" rel="nofollow noopener" target="_blank"> Befrienders Kuala Lumpur (cross‑border) </a> <p class="resource-description"> Helpline | Target: Malay- and English-speaking individuals seeking emotional support | Languages: English, Malay, Chinese | Contact: <a href="tel:60376272929"> +60 3 7627 2929 (24 </a> /7) </p> <p class="resource-notes"> Malaysian suicide helpline providing free, confidential listening 24/7; accessible to Brunei residents via telephone <a href="https://www.befrienders.org.my/services" rel="nofollow noopener" target="_blank">https://www.befrienders.org.my/services</a> </p> </li> <li> <a class="resource-link" href="https://www.sos.org.sg/contact-us/" rel="nofollow noopener" target="_blank"> Samaritans of Singapore (cross‑border) </a> <p class="resource-description"> Hotline / Text | Target: Individuals in crisis (English, Mandarin, Malay) | Languages: English, Mandarin, Malay | Contact: <a href="tel:1767"> 1767 (24 </a> ‑hour hotline); WhatsApp <a href="tel:91511767"> 9151 1767 </a> (CareText) </p> <p class="resource-notes"> Provides confidential emotional support 24/7 for people in crisis via phone or text <a href="https://www.sos.org.sg/contact-us/" rel="nofollow noopener" target="_blank">https://www.sos.org.sg/contact-us/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;english;hindi;khmer;thai" data-name="cambodia"> <summary> 🇰🇭 Cambodia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/cambodia/" rel="nofollow noopener" target="_blank"> TPO Cambodia Mental Health Hotline </a> <p class="resource-description"> Hotline | Target: General population | Languages: Khmer | Contact: <a href="tel:1293"> 1293 </a> </p> <p class="resource-notes"> Free and confidential mental health counselling and crisis support hotline operated by TPO; available 24/7 <a href="https://progress.guide/atlas/asia/cambodia/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/cambodia/</a> </p> </li> <li> <a class="resource-link" href="https://www.trc.gov.kh/en/resources/emergency-numbers/" rel="nofollow noopener" target="_blank"> Child Helpline Cambodia </a> <p class="resource-description"> Helpline | Target: Children and youth | Languages: Khmer | Contact: <a href="tel:1280"> 1280 </a> </p> <p class="resource-notes"> Child protection and counselling line for reporting violence; operates 24/7 and is free of charge <a href="https://www.trc.gov.kh/en/resources/emergency-numbers/" rel="nofollow noopener" target="_blank">https://www.trc.gov.kh/en/resources/emergency-numbers/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/cambodia/" rel="nofollow noopener" target="_blank"> Emergency Medical/Police Services </a> <p class="resource-description"> Emergency line | Target: General population needing urgent assistance | Languages: Khmer | Contact: <a href="tel:117"> 117 </a> (ambulance); <a href="tel:118"> 118 </a> (fire); <a href="tel:119"> 119 </a> (police) </p> <p class="resource-notes"> National emergency numbers for urgent medical, fire or police assistance; operate 24/7 <a href="https://progress.guide/atlas/asia/cambodia/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/cambodia/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english-speaking community in china" data-name="china"> <summary> 🇨🇳 China </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://lifelinechina.org/" rel="nofollow noopener" target="_blank"> Lifeline China </a> <p class="resource-description"> "Helpline | Target: chat" | Languages: English-speaking community in China | Contact: English </p> <p class="resource-notes"> Call <a href="tel:4008211215"> 400 821 1215 </a> ; chat via lifelinechina.org or WeChat LifelineConnect </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;greek;multiple eu languages;multiple languages" data-name="cyprus"> <summary> 🇨🇾 Cyprus </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/greece/" rel="nofollow noopener" target="_blank"> Klimaka Suicide Prevention Helpline 1018 </a> <p class="resource-description"> Suicide prevention helpline | Target: General population | Languages: Greek | Contact: Call <a href="tel:1018"> 1018 </a> </p> <p class="resource-notes"> Free, confidential support available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/greece/" rel="nofollow noopener" target="_blank"> National Child Helpline 1056 (Greece) </a> <p class="resource-description"> Child helpline | Target: Children and adolescents | Languages: Greek | Contact: Call <a href="tel:1056"> 1056 </a> </p> <p class="resource-notes"> Provides 24/7 mental health support for children </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/greece/" rel="nofollow noopener" target="_blank"> EU Emergency Number 112 </a> <p class="resource-description"> Emergency services | Target: Individuals requiring urgent assistance | Languages: Multiple languages | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> Free 24/7 emergency assistance anywhere in the EU </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/cyprus/" rel="nofollow noopener" target="_blank"> Cyprus Mental Health Services Crisis Hotline </a> <p class="resource-description"> Hotline | Target: Individuals experiencing mental health crisis or suicidal thoughts | Languages: Greek, English | Contact: <a href="tel:1401"> 1401 </a> </p> <p class="resource-notes"> 24/7 confidential crisis support provided by the Ministry of Health’s mental health services <a href="https://progress.guide/atlas/asia/cyprus/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/cyprus/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/cyprus/" rel="nofollow noopener" target="_blank"> Child &amp; Youth Helpline 116 111 </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: Greek, English | Contact: <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> Free, confidential 24/7 helpline offering support to children and youth <a href="https://progress.guide/atlas/asia/cyprus/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/cyprus/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/cyprus/" rel="nofollow noopener" target="_blank"> European Emergency Number 112 </a> <p class="resource-description"> Emergency line | Target: General population | Languages: Multiple EU languages | Contact: <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> EU-wide emergency number for police, ambulance and fire services; accessible 24/7 throughout Cyprus and the EU <a href="https://progress.guide/atlas/asia/cyprus/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/cyprus/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english and other languages;georgian;persian;russian;turkish;ukrainian" data-name="georgia"> <summary> 🇬🇪 Georgia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <span class="resource-link"> State Emergency Assistance Line ( <a href="tel:116006"> 116 006) </a> </span> <p class="resource-description"> Helpline | Target: Victims and witnesses of crime; general crisis support | Languages: Georgian, English and other languages | Contact: <a href="tel:116006"> 116 006 </a> </p> <p class="resource-notes"> Provides confidential assistance and information in eight languages, including support for victims of crime and urgent situations. </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/ukraine/" rel="nofollow noopener" target="_blank"> Lifeline Ukraine (cross‑border) </a> <p class="resource-description"> Hotline | Target: Ukrainian and Russian speakers in Georgia | Languages: Ukrainian, Russian | Contact: <a href="tel:7333"> 7333 </a> </p> <p class="resource-notes"> 24/7 confidential suicide prevention helpline focusing on veterans and war‑affected individuals <a href="https://progress.guide/atlas/europe/ukraine/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/europe/ukraine/</a> </p> </li> <li> <a class="resource-link" href="https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch" rel="nofollow noopener" target="_blank"> Russian Psychological Emergency Helpline (051) </a> <p class="resource-description"> Helpline | Target: Russian speakers in Georgia | Languages: Russian | Contact: <a href="tel:051"> 051 </a> (landline) / <a href="tel:7495051"> +7 495 051 </a> (mobile) </p> <p class="resource-notes"> Moscow psychological emergency help line provides round‑the‑clock support; calls from landlines are free <a href="https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch" rel="nofollow noopener" target="_blank">https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="cantonese/chinese;english" data-name="hong kong (china)"> <summary> 🇭🇰 Hong Kong (China) </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://sbhk.org.hk/" rel="nofollow noopener" target="_blank"> 24‑Hour Emotional Support Hotline – The Samaritan Befrienders Hong Kong </a> <p class="resource-description"> Helpline | Target: General population needing emotional support | Languages: Cantonese/Chinese | Contact: Phone: <a href="tel:23892222"> 2389 2222 </a> </p> <p class="resource-notes"> Provides 24‑hour emotional support; free and confidential </p> </li> <li> <a class="resource-link" href="https://sbhk.org.hk/" rel="nofollow noopener" target="_blank"> English Emotional Support Hotline – The Samaritan Befrienders Hong Kong </a> <p class="resource-description"> Helpline | Target: English speakers seeking emotional support | Languages: English | Contact: Phone: <a href="tel:23892223"> 2389 2223 </a> </p> <p class="resource-notes"> Provides emotional support; listed alongside the 24‑hour hotline </p> </li> <li> <a class="resource-link" href="https://sbhk.org.hk/" rel="nofollow noopener" target="_blank"> Here to Hear (Peer Hotline) – The Samaritan Befrienders Hong Kong </a> <p class="resource-description"> Peer-support hotline/WhatsApp | Target: Individuals seeking peer emotional support | Languages: Cantonese/Chinese | Contact: Phone: <a href="tel:23892227"> 2389 2227 </a> ; WhatsApp: <a href="tel:57797356"> 5779 7356 </a> </p> <p class="resource-notes"> Provides peer listening support; hours may vary </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="cantonese;english" data-name="hong kong (sar)"> <summary> 🇭🇰 Hong Kong (SAR) </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://sbhk.org.hk/" rel="nofollow noopener" target="_blank"> Samaritans Befrienders Hong Kong – 24‑hour Emotional Support Hotline </a> <p class="resource-description"> Helpline | Target: General public needing emotional support | Languages: Cantonese; English | Contact: Call <a href="tel:23892222"> 2389 2222 </a> </p> <p class="resource-notes"> Provides 24‑hour confidential emotional support to anyone in Hong Kong </p> </li> <li> <a class="resource-link" href="https://sbhk.org.hk/" rel="nofollow noopener" target="_blank"> Samaritans Befrienders Hong Kong – English Emotional Support Hotline </a> <p class="resource-description"> Helpline | Target: English-speaking individuals needing emotional support | Languages: English | Contact: Call <a href="tel:23892223"> 2389 2223 </a> </p> <p class="resource-notes"> Offers confidential emotional support; available 24/7 for English speakers </p> </li> <li> <a class="resource-link" href="https://sbhk.org.hk/" rel="nofollow noopener" target="_blank"> Here to Hear – Peer Hotline (Samaritans Befrienders) </a> <p class="resource-description"> Peer-support hotline | Target: Individuals seeking peer support | Languages: Cantonese; English | Contact: Call <a href="tel:23892227"> 2389 2227 </a> or WhatsApp <a href="tel:57797356"> 5779 7356 </a> </p> <p class="resource-notes"> Provides peer listening support; available during specified hours via phone or WhatsApp </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;multiple languages" data-name="india"> <summary> 🇮🇳 India </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation </a> <p class="resource-description"> Helpline (call/WhatsApp) | Target: General population in India | Languages: Multiple languages (English and regional languages) | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free mental health counselling available 24×7× <a href="tel:365"> 365 </a> <a href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank">https://www.vandrevalafoundation.com/free-counseling</a> </p> </li> <li> <a class="resource-link" href="https://parivarthan.org/counselling-helpline/" rel="nofollow noopener" target="_blank"> Parivarthan Counselling Helpline </a> <p class="resource-description"> Helpline | Target: General population (all ages) | Languages: "English | Contact: Hindi </p> <p class="resource-notes"> Kannada </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="indonesian" data-name="indonesia"> <summary> 🇮🇩 Indonesia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://en.antaranews.com/news/147088/presidential-staff-office-launches-sejiwa-psychological-aid-service" rel="nofollow noopener" target="_blank"> SEJIWA Psychological Assistance Service </a> <p class="resource-description"> Helpline (extension on emergency line) | Target: People in Indonesia needing psychological support | Languages: Indonesian | Contact: Call <a href="tel:119"> 119 </a> ext. 8 </p> <p class="resource-notes"> Government-run psychological assistance programme; accessible nationwide <a href="https://en.antaranews.com/news/" rel="nofollow noopener" target="_blank">https://en.antaranews.com/news/</a> <a href="tel:147088"> 147088 </a> /presidential-staff-office-launches-sejiwa-psychological-aid-service </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="crises or suicidal thoughts;persian" data-name="iran"> <summary> 🇮🇷 Iran </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> National Social Emergency Line (State Welfare Organization) </a> <p class="resource-description"> Helpline | Target: "General population experiencing emotional distress | Languages: crises or suicidal thoughts" | Contact: Persian (Farsi) </p> <p class="resource-notes"> Dial <a href="tel:123"> 123 </a> </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> State Welfare Organization Psychological Support Line </a> <p class="resource-description"> Helpline | Target: General population | Languages: Persian | Contact: Dial <a href="tel:1480"> 1480 </a> </p> <p class="resource-notes"> Free-of-charge phone counselling services available seven days a week from 8:00–24:00 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Ministry of Health 4030 hotline </a> <p class="resource-description"> Helpline | Target: General population seeking psychological and health advice | Languages: Persian | Contact: Dial <a href="tel:4030"> 4030 </a> </p> <p class="resource-notes"> Provides free-of-charge phone psychological and counselling services </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Ministry of Education Student Helpline </a> <p class="resource-description"> Helpline | Target: School students | Languages: Persian | Contact: Dial <a href="tel:1570"> 1570 </a> </p> <p class="resource-notes"> Specialised psychosocial counselling for students; available 7 days a week from 8:00–20:00 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Suicide Crisis Line (Iran) </a> <p class="resource-description"> Helpline | Target: People in suicidal crisis or emotional distress | Languages: Persian | Contact: Call <a href="tel:02154467000"> 021 54467000 </a> </p> <p class="resource-notes"> "Provides free </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;kurdish;malayalam;persian;tamil;turkish" data-name="iraq"> <summary> 🇮🇶 Iraq </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <span class="resource-link"> Iraq Crisis Helpline ( <a href="tel:122"> 122) </a> </span> <p class="resource-description"> Hotline | Target: Individuals in crisis or experiencing mental health issues | Languages: Arabic, Kurdish | Contact: <a href="tel:122"> 122 </a> </p> <p class="resource-notes"> 24/7 crisis helpline providing mental health and crisis intervention services across Iraq. </p> </li> <li> <span class="resource-link"> SEMA Foundation Displaced Persons Hotline </span> <p class="resource-description"> Helpline | Target: Displaced persons, refugees in Iraq | Languages: Arabic | Contact: <a href="tel:9647503096649"> +964 750 309 6649 </a> </p> <p class="resource-notes"> Provides crisis intervention and support for displaced persons and refugees, available 9 AM–6 PM. </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank"> Egypt National Mental Health Hotline (cross‑border) </a> <p class="resource-description"> Helpline | Target: Arabic speakers seeking mental health support | Languages: Arabic | Contact: <a href="tel:16328"> 16328 </a> </p> <p class="resource-notes"> Free, confidential helpline available 24/7 in Egypt offering mental health and psychiatric counselling; accessible for Arabic speakers in neighboring countries <a href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/africa/egypt/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hebrew;hindi;malayalam;persian;tamil;turkish" data-name="israel"> <summary> 🇮🇱 Israel </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://gethelpisrael.com/hotlines/" rel="nofollow noopener" target="_blank"> Suicide Hotline 1201 </a> <p class="resource-description"> Hotline | Target: Individuals experiencing suicidal thoughts | Languages: Hebrew, English | Contact: <a href="tel:1201"> 1201 </a> </p> <p class="resource-notes"> Crisis hotline providing free and confidential support for people contemplating suicide <a href="https://gethelpisrael.com/hotlines/" rel="nofollow noopener" target="_blank">https://gethelpisrael.com/hotlines/</a> </p> </li> <li> <a class="resource-link" href="https://gethelpisrael.com/hotlines/" rel="nofollow noopener" target="_blank"> Anxiety &amp; Trauma Victims Hotline </a> <p class="resource-description"> Hotline | Target: Individuals with anxiety or trauma, including victims of terror | Languages: Hebrew, English | Contact: <a href="tel:1800363363"> 1‑800‑363‑363 </a> </p> <p class="resource-notes"> Provides support for victims of anxiety and trauma; free and confidential <a href="https://gethelpisrael.com/hotlines/" rel="nofollow noopener" target="_blank">https://gethelpisrael.com/hotlines/</a> </p> </li> <li> <a class="resource-link" href="https://gethelpisrael.com/hotlines/" rel="nofollow noopener" target="_blank"> Mental &amp; Emotional Stress Hotline </a> <p class="resource-description"> Hotline | Target: Individuals experiencing mental or emotional stress | Languages: Hebrew | Contact: <a href="tel:023011160"> 02‑301‑1160 </a> </p> <p class="resource-notes"> Hotline offering psychological support for stress and mental health issues <a href="https://gethelpisrael.com/hotlines/" rel="nofollow noopener" target="_blank">https://gethelpisrael.com/hotlines/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;english speakers in japan;japanese" data-name="japan"> <summary> 🇯🇵 Japan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telljp.com/lifeline/" rel="nofollow noopener" target="_blank"> TELL Lifeline </a> <p class="resource-description"> "Helpline | Target: chat" | Languages: English speakers in Japan | Contact: English </p> <p class="resource-notes"> Toll‑free phone <a href="tel:08003008355"> 0800‑300‑8355 </a> ; alternate <a href="tel:0357740992"> 03‑5774‑0992 </a> ; chat via telljp.com/lifeline </p> </li> <li> <a class="resource-link" href="https://www.mentalhealth.com/emergency" rel="nofollow noopener" target="_blank"> Inochi no Denwa (Telephone of Life) </a> <p class="resource-description"> Helpline | Target: Japanese-speaking general population | Languages: Japanese | Contact: Call <a href="tel:0570"> 0570 </a> ‑ <a href="tel:783556"> 783‑556 </a> </p> <p class="resource-notes"> Provides emotional support; availability varies by region (commonly 10am–10pm) <a href="https://www.mentalhealth.com/emergency" rel="nofollow noopener" target="_blank">https://www.mentalhealth.com/emergency</a> </p> </li> <li> <a class="resource-link" href="https://www.bros.global/referraljapan" rel="nofollow noopener" target="_blank"> Japan Helpline </a> <p class="resource-description"> Helpline | Target: Residents and visitors seeking emergency assistance or information | Languages: English | Contact: Call <a href="tel:0570000911"> 0570 000 911 </a> </p> <p class="resource-notes"> 24-hour non‑profit nationwide emergency assistance service <a href="https://www.bros.global/referraljapan" rel="nofollow noopener" target="_blank">https://www.bros.global/referraljapan</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic" data-name="jordan"> <summary> 🇯🇴 Jordan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/jordan/" rel="nofollow noopener" target="_blank"> National Family Protection Hotline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing domestic violence or mental distress | Languages: Arabic | Contact: Phone: <a href="tel:110"> 110 </a> </p> <p class="resource-notes"> "Free </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/jordan/" rel="nofollow noopener" target="_blank"> Ministry of Health Mental Health and Psychosocial Support Line </a> <p class="resource-description"> Helpline | Target: Children and adolescents/young people | Languages: Arabic | Contact: Phone: <a href="tel:96265502911"> +962 6 550 2911 </a> </p> <p class="resource-notes"> Provides mental health support for children and adolescents; available 9 AM–6 PM daily </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="kazakh;persian;russian;turkish" data-name="kazakhstan"> <summary> 🇰🇿 Kazakhstan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/kazakhstan-telefon-150/" rel="nofollow noopener" target="_blank"> Telefon 150 (Child Helpline) </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: Kazakh, Russian | Contact: <a href="tel:150"> 150 </a> </p> <p class="resource-notes"> Provides confidential, anonymous support to children 24/7 via phone and WhatsApp <a href="https://childhelplineinternational.org/kazakhstan-telefon-" rel="nofollow noopener" target="_blank">https://childhelplineinternational.org/kazakhstan-telefon-</a> <a href="tel:150"> 150 </a> / </p> </li> <li> <a class="resource-link" href="https://www.unicef.org/kazakhstan/en/press-releases/unicef-kazakhstan-addressing-emerging-needs-psychological-support-during-covid-19" rel="nofollow noopener" target="_blank"> Ministry of Health Psychological Support Line </a> <p class="resource-description"> Helpline | Target: Parents, adolescents and general population | Languages: Kazakh, Russian | Contact: <a href="tel:1406"> 1406 </a> </p> <p class="resource-notes"> National hotline offering free psychological support; parents and adolescents can call for counselling <a href="https://www.unicef.org/kazakhstan/en/press-releases/unicef-kazakhstan-addressing-emerging-needs-psychological-support-during-covid-19" rel="nofollow noopener" target="_blank">https://www.unicef.org/kazakhstan/en/press-releases/unicef-kazakhstan-addressing-emerging-needs-psychological-support-during-covid-19</a> </p> </li> <li> <span class="resource-link"> <a href="tel:111"> 111 </a> Service Contact Centre </span> <p class="resource-description"> Helpline | Target: Families, children and women seeking counselling on rights and mental health issues | Languages: Kazakh, Russian | Contact: <a href="tel:111"> 111 </a> </p> <p class="resource-notes"> 24/7 confidential contact centre receiving enquiries on children’s rights and family issues. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;persian;tamil" data-name="kuwait"> <summary> 🇰🇼 Kuwait </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> HOPE National Support Line </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English | Contact: Call <a href="tel:8004673"> 800 4673 </a> </p> <p class="resource-notes"> Free, available 24/7 for psychological support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <span class="resource-link"> Psychological Medicine Hospital Helpline </span> <p class="resource-description"> Helpline | Target: Individuals experiencing mental health problems | Languages: Arabic, English | Contact: <a href="tel:96524622000"> +965 2462 2000 </a> </p> <p class="resource-notes"> Hospital-run helpline providing psychiatric assistance; operates 24/7 when local suicide hotline is absent. </p> </li> <li> <span class="resource-link"> Fawzia Sultan Rehabilitation Institute </span> <p class="resource-description"> Helpline | Target: Individuals seeking psychological counselling | Languages: Arabic, English | Contact: <a href="tel:96522059001"> +965 2205 9001 </a> </p> <p class="resource-notes"> Provides psychological counselling support 9 AM–5 PM Sunday–Thursday. </p> </li> <li> <span class="resource-link"> National Emergency Line <a href="tel:112"> 112 </a> </span> <p class="resource-description"> Emergency line | Target: General population | Languages: Arabic, English | Contact: <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> National emergency line for police, fire and medical assistance; can be used for immediate crises. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="kyrgyz;persian;russian;turkish" data-name="kyrgyzstan"> <summary> 🇰🇬 Kyrgyzstan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/kyrgyzstan/" rel="nofollow noopener" target="_blank"> National Mental Health Centre Hotline </a> <p class="resource-description"> Helpline | Target: General population | Languages: Kyrgyz, Russian | Contact: <a href="tel:996312881618"> +996 312 881 618 </a> </p> <p class="resource-notes"> Provides mental health support and counselling from 9 AM to 6 PM Monday–Friday <a href="https://progress.guide/atlas/asia/kyrgyzstan/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/kyrgyzstan/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/kyrgyzstan/" rel="nofollow noopener" target="_blank"> Psychological Support for Adolescents Hotline </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: Kyrgyz, Russian | Contact: <a href="tel:996312662866"> +996 312 662 866 </a> </p> <p class="resource-notes"> Youth helpline offering confidential support 10 AM–4 PM daily <a href="https://progress.guide/atlas/asia/kyrgyzstan/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/kyrgyzstan/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/kyrgyzstan/" rel="nofollow noopener" target="_blank"> LGBTQIA+ Support Line (Labrys) </a> <p class="resource-description"> Helpline | Target: LGBTQIA+ individuals | Languages: Kyrgyz, Russian | Contact: <a href="tel:996555555555"> +996 555 555 555 </a> </p> <p class="resource-notes"> Provides peer support and counselling by appointment or 11 AM–8 PM daily <a href="https://progress.guide/atlas/asia/kyrgyzstan/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/kyrgyzstan/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;english;hindi;lao;thai" data-name="laos"> <summary> 🇱🇦 Laos </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/laos/" rel="nofollow noopener" target="_blank"> National Mental Health Hospital, Vientiane </a> <p class="resource-description"> Hospital contact | Target: Individuals seeking mental health services | Languages: Lao | Contact: <a href="tel:85621453065"> +856 21 453 065 </a> </p> <p class="resource-notes"> Provides mental health services and referrals; contact for counselling and psychiatric support <a href="https://progress.guide/atlas/asia/laos/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/laos/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/laos/" rel="nofollow noopener" target="_blank"> Emergency Line 1195 </a> <p class="resource-description"> Emergency line | Target: General population | Languages: Lao | Contact: <a href="tel:1195"> 1195 </a> </p> <p class="resource-notes"> National emergency number for urgent medical or police assistance <a href="https://progress.guide/atlas/asia/laos/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/laos/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/laos/" rel="nofollow noopener" target="_blank"> Friends International Laos Helpline </a> <p class="resource-description"> Helpline | Target: Children and youth | Languages: Lao | Contact: <a href="tel:8562022213213"> +856 20 2221 3213 </a> </p> <p class="resource-notes"> Provides support for mental health, child protection and social services; typically operates 8 AM–6 PM <a href="https://progress.guide/atlas/asia/laos/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/laos/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;persian;tamil;turkish" data-name="lebanon"> <summary> 🇱🇧 Lebanon </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://www.moph.gov.lb/fr/Pages/0/75325/1564-the-lifeline" rel="nofollow noopener" target="_blank"> National Lifeline (1564) </a> <p class="resource-description"> Helpline | Target: Individuals in severe psychological distress or suicidal crisis | Languages: Arabic, English | Contact: <a href="tel:1564"> 1564 </a> </p> <p class="resource-notes"> Provides safe, confidential support and suicide prevention, staffed by trained mental health professionals; available 24/7 <a href="https://www.moph.gov.lb/fr/Pages/0/" rel="nofollow noopener" target="_blank">https://www.moph.gov.lb/fr/Pages/0/</a> <a href="tel:75325"> 75325 </a> / <a href="tel:1564"> 1564 </a> -the-lifeline. </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank"> Aisha Yateem Family Counseling Center (Bahrain cross‑border) </a> <p class="resource-description"> Helpline | Target: Individuals experiencing domestic or sexual violence | Languages: Arabic | Contact: <a href="tel:80001488"> 80001488 </a> </p> <p class="resource-notes"> 24/7 counselling service for survivors of domestic and sexual violence, accessible to Arabic speakers <a href="https://progress.guide/atlas/asia/bahrain/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/bahrain/</a> </p> </li> <li> <span class="resource-link"> Qatar Mental Health Helpline (cross‑border) </span> <p class="resource-description"> Helpline | Target: Arabic speakers seeking mental health support | Languages: Arabic, English | Contact: <a href="tel:16000"> 16000 </a> </p> <p class="resource-notes"> Hamad Medical Corporation’s mental health helpline offers free, confidential support 24/7. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;english;hindi;malay;mandarin;thai" data-name="malaysia"> <summary> 🇲🇾 Malaysia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://www.befrienders.org.my/services" rel="nofollow noopener" target="_blank"> Befrienders Kuala Lumpur </a> <p class="resource-description"> Hotline | Target: Individuals needing emotional support | Languages: English, Malay, Mandarin | Contact: <a href="tel:0376272929"> 03‑76272929 (24 </a> /7) </p> <p class="resource-notes"> Provides free, confidential emotional support around the clock <a href="https://www.befrienders.org.my/services" rel="nofollow noopener" target="_blank">https://www.befrienders.org.my/services</a> </p> </li> <li> <a class="resource-link" href="https://miasa.org.my" rel="nofollow noopener" target="_blank"> MIASA Mental Health Helpline </a> <p class="resource-description"> Helpline | Target: Individuals with mental illness or support needs | Languages: Malay, English | Contact: <a href="tel:0327880022"> 03‑2788 0022 </a> </p> <p class="resource-notes"> Mental Illness Awareness &amp; Support Association provides helpline and counselling; hours may vary (usually weekdays) – support available for those living with mental illness. </p> </li> <li> <span class="resource-link"> Talian Kasih <a href="tel:15999"> 15999 </a> </span> <p class="resource-description"> Hotline | Target: Women and children facing abuse or needing counseling | Languages: Malay | Contact: <a href="tel:15999"> 15999 </a> ; WhatsApp <a href="tel:0192615999"> 019‑261 5999 </a> </p> <p class="resource-notes"> 24/7 hotline operated by the Ministry of Women, Family and Community Development for domestic violence and social crises; provides counselling and referrals. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;dhivehi;english;hindi;sinhala;tamil" data-name="maldives"> <summary> 🇲🇻 Maldives </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://findahelpline.com/organizations/1926-national-mental-health-helpline" rel="nofollow noopener" target="_blank"> Sri Lanka National Mental Health Helpline 1926 </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: Sinhala, Tamil, English | Contact: Call or SMS <a href="tel:1926"> 1926 </a> </p> <p class="resource-notes"> Free confidential support 24/7 via phone or SMS </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/bangladesh-bangladesh-child-helpline-1098/" rel="nofollow noopener" target="_blank"> Bangladesh Child Helpline 1098 </a> <p class="resource-description"> Child protection helpline | Target: Children and youth | Languages: Bangla | Contact: Call <a href="tel:1098"> 1098 </a> </p> <p class="resource-notes"> Confidential and privacy-protected; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/maldives/" rel="nofollow noopener" target="_blank"> Mental Health Hotline 1425 </a> <p class="resource-description"> Hotline | Target: General population | Languages: Dhivehi, English | Contact: <a href="tel:1425"> 1425 </a> </p> <p class="resource-notes"> 24/7 mental health helpline offering counselling and support <a href="https://progress.guide/atlas/asia/maldives/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/maldives/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/maldives/" rel="nofollow noopener" target="_blank"> Thibaa Helpline </a> <p class="resource-description"> Helpline | Target: Individuals seeking psychological support | Languages: Dhivehi, English | Contact: <a href="tel:7221212"> 722 1212 </a> </p> <p class="resource-notes"> Provides psychological counselling 9 AM–10 PM daily <a href="https://progress.guide/atlas/asia/maldives/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/maldives/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/maldives/" rel="nofollow noopener" target="_blank"> Emergency Line 119 </a> <p class="resource-description"> Emergency line | Target: General population | Languages: Dhivehi, English | Contact: <a href="tel:119"> 119 </a> </p> <p class="resource-notes"> National emergency number for police and medical assistance <a href="https://progress.guide/atlas/asia/maldives/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/maldives/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;mandarin;mongolian;russian" data-name="mongolia"> <summary> 🇲🇳 Mongolia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://lifelinechina.org/" rel="nofollow noopener" target="_blank"> Lifeline China </a> <p class="resource-description"> Emotional support helpline and online chat | Target: English-speaking community in China | Languages: English | Contact: Call <a href="tel:4008211215"> 400 821 1215 </a> or chat via WeChat/website </p> <p class="resource-notes"> Free, confidential and anonymous support 10 AM–10 PM, <a href="tel:365"> 365 </a> days a year </p> </li> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.therapyroute.com/article/suicide-hotlines-and-crisis-lines-in-taiwan" rel="nofollow noopener" target="_blank"> Taiwan 1925 Peace of Mind Hotline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: Mandarin | Contact: Call <a href="tel:1925"> 1925 </a> </p> <p class="resource-notes"> 24-hour mental health support across Taiwan </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/mongolia/" rel="nofollow noopener" target="_blank"> Mental Health Hotline (1800 2000) </a> <p class="resource-description"> Hotline | Target: General population | Languages: Mongolian | Contact: <a href="tel:18002000"> 1800 2000 </a> </p> <p class="resource-notes"> National helpline offering free mental health support 24/7 <a href="https://progress.guide/atlas/asia/mongolia/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/mongolia/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/mongolia/" rel="nofollow noopener" target="_blank"> Ulaanbaatar Mental Health Centre </a> <p class="resource-description"> Helpline | Target: Individuals seeking counselling in Ulaanbaatar and surrounding regions | Languages: Mongolian | Contact: <a href="tel:97611322222"> +976 1132 2222 </a> </p> <p class="resource-notes"> Provides mental health support 8 AM–8 PM, Monday–Saturday <a href="https://progress.guide/atlas/asia/mongolia/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/mongolia/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/mongolia/" rel="nofollow noopener" target="_blank"> LGBTQIA+ Support Line </a> <p class="resource-description"> Helpline | Target: LGBTQIA+ individuals | Languages: Mongolian | Contact: <a href="tel:97677075070"> +976 7707 5070 </a> </p> <p class="resource-notes"> Provides peer support and counselling by appointment; run by LGBT Centre <a href="https://progress.guide/atlas/asia/mongolia/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/mongolia/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;burmese;english;hindi;thai" data-name="myanmar"> <summary> 🇲🇲 Myanmar </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <span class="resource-link"> Myanmar Red Cross Society Mental Health Hotline </span> <p class="resource-description"> Helpline | Target: General population | Languages: Burmese | Contact: <a href="tel:959765400200"> +95 9 765 400 200 </a> </p> <p class="resource-notes"> Free and confidential hotline available 24/7 providing crisis support and mental health services. </p> </li> <li> <span class="resource-link"> Mental Health Assistance Program (MHAP) Myanmar </span> <p class="resource-description"> Helpline | Target: General population | Languages: Burmese | Contact: <a href="tel:959250375961"> +95 9 250 375 961 </a> </p> <p class="resource-notes"> Provides phone counselling for mental health issues 9 AM–6 PM Monday–Saturday. </p> </li> <li> <span class="resource-link"> LGBTQIA+ Support Line </span> <p class="resource-description"> Helpline | Target: LGBTQIA+ community | Languages: Burmese | Contact: <a href="tel:959420189998"> +95 9 420 189 998 </a> </p> <p class="resource-notes"> Provides support and counselling for LGBTQIA+ individuals by appointment or limited hours. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;korean;multiple languages;russian" data-name="north korea"> <summary> 🇰🇵 North Korea </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://seoulcounseling.com/emergency-resources/" rel="nofollow noopener" target="_blank"> Korea Suicide Prevention Hotlines </a> <p class="resource-description"> Crisis hotlines | Target: Individuals in South Korea (also accessible to Korean speakers abroad) | Languages: Korean | Contact: Call <a href="tel:15771366"> 1577-1366 ( </a> Multicultural Family Helpline), <a href="tel:15889191"> 1588-9191 </a> (Lifeline Korea), or <a href="tel:1393"> 1393 </a> (Suicide Prevention Lifeline) </p> <p class="resource-notes"> Provide crisis counselling; hours vary by hotline </p> </li> <li> <a class="resource-link" href="https://lifelinechina.org/" rel="nofollow noopener" target="_blank"> Lifeline China </a> <p class="resource-description"> Emotional support helpline and online chat | Target: English-speaking community in China | Languages: English | Contact: Call <a href="tel:4008211215"> 400 821 1215 </a> or chat via WeChat/website </p> <p class="resource-notes"> Free, confidential and anonymous support 10 AM–10 PM, <a href="tel:365"> 365 </a> days a year </p> </li> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://seoulcounseling.com/emergency-resources/" rel="nofollow noopener" target="_blank"> South Korea Suicide Prevention Hotline 1393 </a> <p class="resource-description"> Hotline | Target: Korean speakers seeking crisis support | Languages: Korean | Contact: <a href="tel:1393"> 1393 </a> </p> <p class="resource-notes"> Provides 24/7 crisis intervention and suicide prevention counselling; accessible from South Korea and may serve North Korean defectors via cross-border communication <a href="https://seoulcounseling.com/emergency-resources/." rel="nofollow noopener" target="_blank">https://seoulcounseling.com/emergency-resources/.</a> </p> </li> <li> <a class="resource-link" href="https://seoulcounseling.com/emergency-resources/" rel="nofollow noopener" target="_blank"> Lifeline Korea (1588 9191) </a> <p class="resource-description"> Hotline | Target: Individuals in Korea seeking emotional support | Languages: Korean | Contact: <a href="tel:15889191"> 1588 9191 </a> </p> <p class="resource-notes"> Provides free, anonymous listening and counselling; recommended for Korean speakers across borders <a href="https://seoulcounseling.com/emergency-resources/." rel="nofollow noopener" target="_blank">https://seoulcounseling.com/emergency-resources/.</a> </p> </li> <li> <a class="resource-link" href="https://seoulcounseling.com/emergency-resources/" rel="nofollow noopener" target="_blank"> Multicultural Family Helpline 1577 1366 </a> <p class="resource-description"> Helpline | Target: Multicultural families needing support in Korea | Languages: Korean, multiple languages | Contact: <a href="tel:15771366"> 1577 1366 </a> </p> <p class="resource-notes"> Provides counselling and support for multicultural families in Korea; may assist North Korean defectors and other Korean speakers <a href="https://seoulcounseling.com/emergency-resources/." rel="nofollow noopener" target="_blank">https://seoulcounseling.com/emergency-resources/.</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;persian;tamil" data-name="oman"> <summary> 🇴🇲 Oman </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> HOPE National Support Line </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English | Contact: Call <a href="tel:8004673"> 800 4673 </a> </p> <p class="resource-notes"> Free, available 24/7 for psychological support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <span class="resource-link"> Ministry of Health Mental Health Department </span> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic | Contact: <a href="tel:96824603552"> +968 24 603 552 </a> </p> <p class="resource-notes"> Provides mental health support and referrals; recommended for individuals experiencing mental health concerns. </p> </li> <li> <span class="resource-link"> Royal Hospital Psychiatry Department Hotline </span> <p class="resource-description"> Hotline | Target: Individuals with psychiatric or mental health issues | Languages: Arabic | Contact: <a href="tel:96824607555"> +968 24 607 555 </a> </p> <p class="resource-notes"> Operates 8 AM–8 PM Monday–Friday providing mental health counselling. </p> </li> <li> <span class="resource-link"> Whispers of Serenity Clinic Helpline </span> <p class="resource-description"> Helpline | Target: Women and individuals seeking mental health support | Languages: English, Arabic | Contact: <a href="tel:96895233077"> +968 95 233 077 </a> </p> <p class="resource-notes"> Non-profit clinic providing psychological support and counselling by appointment. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="urdu" data-name="pakistan"> <summary> 🇵🇰 Pakistan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.umang.com.pk/" rel="nofollow noopener" target="_blank"> Umang Mental Health Hotline </a> <p class="resource-description"> Helpline | Target: General population seeking mental health support | Languages: "Urdu | Contact: English" </p> <p class="resource-notes"> Call <a href="tel:03117786264"> 0311 7786264 (77 </a> UMANG) </p> </li> <li> <a class="resource-link" href="https://chaynpakistan.org/in-an-emergency/" rel="nofollow noopener" target="_blank"> Madadgaar National Helpline </a> <p class="resource-description"> Helpline | Target: Women and children facing violence or abuse | Languages: Urdu | Contact: Call <a href="tel:1098"> 1098 </a> </p> <p class="resource-notes"> "Provides free and confidential support </p> </li> <li> <a class="resource-link" href="https://chaynpakistan.org/in-an-emergency/" rel="nofollow noopener" target="_blank"> Punjab Women’s Toll‑Free Helpline </a> <p class="resource-description"> Helpline | Target: Women and girls facing violence or mental distress in Punjab province | Languages: "Urdu | Contact: Punjabi" </p> <p class="resource-notes"> Call <a href="tel:1043"> 1043 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="filipino" data-name="philippines"> <summary> 🇵🇭 Philippines </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://mentalhealthph.org/help/" rel="nofollow noopener" target="_blank"> National Center for Mental Health (NCMH) Crisis Hotline </a> <p class="resource-description"> Helpline | Target: Individuals with mental health problems or in crisis | Languages: "Filipino | Contact: English" </p> <p class="resource-notes"> Call ( <a href="tel:021553"> 02) 1553 or (02) 7‑989‑8727 </a> ; mobile <a href="tel:09178998727"> 0917‑899‑8727 </a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/philippines/" rel="nofollow noopener" target="_blank"> National Center for Mental Health (NCMH) Crisis Hotline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing emotional distress or mental health crisis | Languages: "Filipino | Contact: English" </p> <p class="resource-notes"> Dial <a href="tel:1553"> 1553 </a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/philippines/" rel="nofollow noopener" target="_blank"> DOH Hopeline – Mental Health and Crisis Support </a> <p class="resource-description"> Helpline | Target: General population needing mental health and crisis support | Languages: "Filipino | Contact: English" </p> <p class="resource-notes"> Phone: <a href="tel:2919"> 2919 </a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/philippines/" rel="nofollow noopener" target="_blank"> LoveYourself – LGBTQ+ Mental Health Support Line </a> <p class="resource-description"> Helpline | Target: LGBTQIA+ individuals needing mental health support | Languages: "Filipino | Contact: English" </p> <p class="resource-notes"> Phone: <a href="tel:639178998727"> +63 917 899 8727 </a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/philippines/" rel="nofollow noopener" target="_blank"> UGAT Foundation – Youth Psychological Support Line </a> <p class="resource-description"> Helpline | Target: Adolescents and young adults | Languages: "Filipino | Contact: English" </p> <p class="resource-notes"> Phone: <a href="tel:6328937603"> +63 2 893 7603 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;other languages;persian;tamil" data-name="qatar"> <summary> 🇶🇦 Qatar </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> HOPE National Support Line </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English | Contact: Call <a href="tel:8004673"> 800 4673 </a> </p> <p class="resource-notes"> Free, available 24/7 for psychological support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <span class="resource-link"> National Mental Health Helpline <a href="tel:16000"> 16000 </a> </span> <p class="resource-description"> Helpline | Target: General population | Languages: Arabic, English | Contact: <a href="tel:16000"> 16000 </a> </p> <p class="resource-notes"> Free, confidential helpline provided by Hamad Medical Corporation; available 24/7 for mental health support. </p> </li> <li> <span class="resource-link"> Sidra Medicine Women &amp; Children’s Mental Health Service </span> <p class="resource-description"> Helpline | Target: Women and children | Languages: Arabic, English | Contact: <a href="tel:97444578333"> +974 4457 8333 </a> </p> <p class="resource-notes"> Provides specialised mental health services 8 AM–8 PM Sunday–Thursday. </p> </li> <li> <span class="resource-link"> Qatar Red Crescent – Migrant Workers Psychological Support Line </span> <p class="resource-description"> Helpline | Target: Migrant workers | Languages: Arabic, English, other languages | Contact: <a href="tel:8000000"> 800 0000 </a> </p> <p class="resource-notes"> Provides psychological support and counselling for migrant workers 9 AM–5 PM Sunday–Thursday. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic" data-name="saudi arabia"> <summary> 🇸🇦 Saudi Arabia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/saudi-arabia/" rel="nofollow noopener" target="_blank"> National Center for Mental Health Promotion – Suicide Prevention and Psychological Support Helpline </a> <p class="resource-description"> Helpline | Target: Individuals in emotional distress or suicidal thoughts | Languages: Arabic | Contact: Phone: <a href="tel:920033360"> 920033360 </a> </p> <p class="resource-notes"> "Provides free </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/saudi-arabia/" rel="nofollow noopener" target="_blank"> Saudi Ministry of Health – Mental Health and Crisis Helpline </a> <p class="resource-description"> Helpline | Target: General population seeking mental health assistance | Languages: Arabic | Contact: Phone: <a href="tel:937"> 937 </a> </p> <p class="resource-notes"> "Psychological assistance </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/saudi-arabia/" rel="nofollow noopener" target="_blank"> National Family Safety Program – Domestic Violence and Trauma Helpline </a> <p class="resource-description"> Helpline | Target: Survivors of domestic violence and gender‑based violence | Languages: Arabic | Contact: Phone: <a href="tel:1919"> 1919 </a> </p> <p class="resource-notes"> "Provides crisis intervention </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;english;hindi;malay;mandarin;thai" data-name="singapore"> <summary> 🇸🇬 Singapore </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://www.sos.org.sg/contact-us/" rel="nofollow noopener" target="_blank"> Samaritans of Singapore (SOS) 24‑hour Hotline </a> <p class="resource-description"> Hotline | Target: Individuals in crisis or suicidal | Languages: English, Mandarin, Malay | Contact: <a href="tel:1767"> 1767 </a> </p> <p class="resource-notes"> Provides immediate emotional support and suicide prevention services 24/7 <a href="https://www.sos.org.sg/contact-us/" rel="nofollow noopener" target="_blank">https://www.sos.org.sg/contact-us/</a> </p> </li> <li> <a class="resource-link" href="https://www.sos.org.sg/contact-us/" rel="nofollow noopener" target="_blank"> SOS CareText </a> <p class="resource-description"> Text (WhatsApp) support | Target: Individuals in crisis who prefer texting | Languages: English, Mandarin, Malay | Contact: WhatsApp <a href="tel:91511767"> 9151 1767 </a> </p> <p class="resource-notes"> 24/7 WhatsApp text service providing emotional support for crises <a href="https://www.sos.org.sg/contact-us/" rel="nofollow noopener" target="_blank">https://www.sos.org.sg/contact-us/</a> </p> </li> <li> <span class="resource-link"> Institute of Mental Health (IMH) Mental Health Helpline </span> <p class="resource-description"> Helpline | Target: General population | Languages: English, Mandarin, Malay | Contact: <a href="tel:63892222"> 6389 2222 </a> </p> <p class="resource-notes"> 24-hour hotline offering mental health and crisis support; part of Singapore’s IMH services (general knowledge). </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="13 languages;korean;limited english support" data-name="south korea"> <summary> 🇰🇷 South Korea </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> Suicide Prevention Lifeline Korea </span> <p class="resource-description"> Helpline | Target: Individuals experiencing suicidal thoughts or distress | Languages: Korean | Contact: Call <a href="tel:1393"> 1393 </a> </p> <p class="resource-notes"> Nationwide crisis support (Korean only) </p> </li> <li> <span class="resource-link"> Lifeline Korea (생명의 전화) </span> <p class="resource-description"> Helpline | Target: Individuals seeking emotional support in Korea | Languages: Korean | Contact: Call <a href="tel:1588"> 1588 </a> ‑ <a href="tel:9191"> 9191 </a> </p> <p class="resource-notes"> Helpline for emotional support (Korean only) </p> </li> <li> <span class="resource-link"> Multicultural Family Helpline </span> <p class="resource-description"> Helpline | Target: Multicultural families and foreigners in Korea | Languages: 13 languages | Contact: Call <a href="tel:1577"> 1577 </a> ‑ <a href="tel:1366"> 1366 </a> </p> <p class="resource-notes"> Provides counselling in multiple languages </p> </li> <li> <a class="resource-link" href="https://intellect.co/public-mental-health-helplines/" rel="nofollow noopener" target="_blank"> Mental Health Center Crisis Counseling </a> <p class="resource-description"> Helpline | Target: Individuals experiencing mental health crisis | Languages: Korean; limited English support | Contact: Call <a href="tel:15770199"> 1577 0199 </a> </p> <p class="resource-notes"> 24‑hour crisis counseling line providing support and referrals </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;sinhala" data-name="sri lanka"> <summary> 🇱🇰 Sri Lanka </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://intellect.co/public-mental-health-helplines/" rel="nofollow noopener" target="_blank"> Sumithrayo – Bandarawela </a> <p class="resource-description"> Helpline | Target: Individuals seeking emotional support | Languages: "Sinhala | Contact: Tamil </p> <p class="resource-notes"> English" </p> </li> <li> <a class="resource-link" href="https://findahelpline.com/organizations/1926-national-mental-health-helpline" rel="nofollow noopener" target="_blank"> National Mental Health Helpline – 1926 </a> <p class="resource-description"> Helpline | Target: Everyone in distress including those with suicidal thoughts | Languages: "English | Contact: Sinhala </p> <p class="resource-notes"> Tamil" </p> </li> <li> <a class="resource-link" href="https://lifeline-international.com/member/sri-lanka/" rel="nofollow noopener" target="_blank"> CCCline 1333 </a> <p class="resource-description"> Helpline | Target: Individuals seeking emotional support and counseling | Languages: "English | Contact: Sinhala </p> <p class="resource-notes"> Tamil" </p> </li> <li> <a class="resource-link" href="https://srilankasumithrayo.lk/" rel="nofollow noopener" target="_blank"> Sumithrayo </a> <p class="resource-description"> Peer-support helpline | Target: Individuals seeking anonymous emotional support | Languages: "English | Contact: Sinhala" </p> <p class="resource-notes"> Call <a href="tel:0707308308"> 0707 308 308 </a> or <a href="tel:0767520620"> 0767 520 620 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;persian;tamil;turkish" data-name="syria"> <summary> 🇸🇾 Syria </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <span class="resource-link"> Syrian Arab Red Crescent Mental Health Helpline </span> <p class="resource-description"> Helpline | Target: General population experiencing crisis | Languages: Arabic | Contact: <a href="tel:963944868444"> +963 944 868 444 </a> </p> <p class="resource-notes"> Offers free, confidential mental health support 24/7. </p> </li> <li> <span class="resource-link"> UNICEF Syria Mental Health Support Line </span> <p class="resource-description"> Helpline | Target: Children, youth and families | Languages: Arabic | Contact: <a href="tel:963116113366"> +963 11 611 3366 </a> </p> <p class="resource-notes"> Provides crisis intervention, emotional support and mental health resources 8 AM–6 PM Monday–Friday. </p> </li> <li> <span class="resource-link"> UNFPA Syria GBV Support Line </span> <p class="resource-description"> Helpline | Target: Survivors of gender-based violence | Languages: Arabic | Contact: <a href="tel:963944987000"> +963 944 987 000 </a> </p> <p class="resource-notes"> Provides psychological support, legal aid and emergency shelter 24/7. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="mandarin chinese" data-name="taiwan"> <summary> 🇹🇼 Taiwan </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> Taiwan Lifeline International </span> <p class="resource-description"> Helpline | Target: People depressed or at risk of suicide | Languages: Mandarin Chinese | Contact: Tel: <a href="tel:1995"> 1995 </a> </p> <p class="resource-notes"> Offers 24‑hour service to people in Taiwan who are depressed or at risk of suicide </p> </li> <li> <span class="resource-link"> Taiwan Suicide Prevention Center Hotline </span> <p class="resource-description"> Helpline | Target: Individuals in distress or at risk of suicide | Languages: Mandarin Chinese | Contact: Tel: <a href="tel:0800788995"> 0800 788 995 </a> </p> <p class="resource-notes"> Provides crisis support for people across Taiwan </p> </li> <li> <span class="resource-link"> <a href="tel:1925"> 1925 </a> Suicide Prevention Hotline (Peace of Mind Line) </span> <p class="resource-description"> Helpline | Target: People in distress or at risk of suicide | Languages: Mandarin Chinese | Contact: Tel: <a href="tel:1925"> 1925 </a> </p> <p class="resource-notes"> Provides crisis support to people across Taiwan; available 24/7 </p> </li> <li> <span class="resource-link"> <a href="tel:1925"> 1925 </a> Suicide Prevention Hotline (Lifeline Taiwan) </span> <p class="resource-description"> Helpline | Target: General population in distress or at risk of suicide | Languages: Mandarin Chinese | Contact: Call <a href="tel:1925"> 1925 </a> </p> <p class="resource-notes"> Provides 24‑hour support for people experiencing emotional distress or suicidal thoughts </p> </li> <li> <span class="resource-link"> Taiwan Suicide Prevention Center </span> <p class="resource-description"> Helpline | Target: Individuals needing suicide prevention counseling | Languages: Mandarin Chinese | Contact: Call <a href="tel:0800788995"> 0800 788 995 </a> </p> <p class="resource-notes"> Provides crisis counseling and information for people at risk of suicide </p> </li> <li> <span class="resource-link"> Lifeline International Taiwan </span> <p class="resource-description"> Helpline | Target: People depressed or at risk of suicide across Taiwan | Languages: Mandarin Chinese | Contact: Call <a href="tel:1995"> 1995 </a> </p> <p class="resource-notes"> 24‑hour service offering emotional support and suicide prevention </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;english;kazakh;multiple languages;persian;russian;urdu" data-name="tajikistan"> <summary> 🇹🇯 Tajikistan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.umang.com.pk/" rel="nofollow noopener" target="_blank"> Umang Pakistan Mental Health Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: Urdu, English | Contact: Call or WhatsApp <a href="tel:923117786264"> +92 311 7786264 </a> </p> <p class="resource-notes"> 24/7 free confidential counselling; run by certified psychologists </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran State Welfare Organization Phone Support Line 1480 </a> <p class="resource-description"> Helpline | Target: Persian/Tajik speakers | Languages: Persian (Farsi) | Contact: <a href="tel:1480"> 1480 </a> </p> <p class="resource-notes"> Provides free psychological counselling daily 8 AM–12 AM; open to Tajik speakers via cross-border call <a href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank">https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/</a> </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/kazakhstan-telefon-150/" rel="nofollow noopener" target="_blank"> Kazakhstan Telefon 150 </a> <p class="resource-description"> Helpline | Target: Children and families speaking Russian/Tajik | Languages: Russian, Kazakh | Contact: <a href="tel:150"> 150 </a> </p> <p class="resource-notes"> 24/7 confidential helpline for children and adolescents; accessible for Russian speakers in Tajikistan <a href="https://childhelplineinternational.org/kazakhstan-telefon-" rel="nofollow noopener" target="_blank">https://childhelplineinternational.org/kazakhstan-telefon-</a> <a href="tel:150"> 150 </a> / </p> </li> <li> <span class="resource-link"> Georgia State Emergency Assistance Line <a href="tel:116006"> 116 006 </a> </span> <p class="resource-description"> Helpline | Target: Victims and individuals requiring crisis support | Languages: Multiple languages | Contact: <a href="tel:116006"> 116 006 </a> </p> <p class="resource-notes"> Provides confidential assistance in eight languages, including Russian, and may serve Tajik citizens in absence of local services. </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="lonely or suicidal;thai" data-name="thailand"> <summary> 🇹🇭 Thailand </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> Samaritans of Thailand (Bangkok) </span> <p class="resource-description"> Helpline | Target: "People feeling depressed | Languages: lonely or suicidal" | Contact: Thai; English call-back service </p> <p class="resource-notes"> Bangkok: Thai line ( <a href="tel:027136793"> 02) 713 6793 (12 </a> :00–22:00 daily); English call-back service ( <a href="tel:027136791"> 02) 713 6791 (24 </a> ‑hour call-back) </p> </li> <li> <span class="resource-link"> Department of Mental Health Hotline </span> <p class="resource-description"> Helpline | Target: General population in Thailand | Languages: Thai | Contact: Call <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Nationwide mental health hotline (Thai) </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="bangla;english;hindi;portuguese;thai" data-name="timor-leste"> <summary> 🇹🇱 Timor-Leste </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://bangkokcommunityresources.isb.ac.th/mental-health/crisis-hotline" rel="nofollow noopener" target="_blank"> Samaritans of Thailand – Emotional Support </a> <p class="resource-description"> Crisis helpline | Target: Individuals in distress | Languages: Thai, English | Contact: Call <a href="tel:027136793"> 02 713 6793 ( </a> Thai), <a href="tel:027136791"> 02 713 6791 </a> (English call-back), Hotline <a href="tel:1323"> 1323 </a> </p> <p class="resource-notes"> Thai line available 12:00–22:00 daily; Department of Mental Health hotline <a href="tel:132328245225324"> 1323 available 24 </a> /7 </p> </li> <li> <a class="resource-link" href="https://www.dhakatribune.com/bangladesh/health/207809/coronavirus-kaan-pete-roi-expands-operating-hours" rel="nofollow noopener" target="_blank"> Kaan Pete Roi Emotional Support </a> <p class="resource-description"> Suicide prevention helpline | Target: General public | Languages: Bangla | Contact: Call <a href="tel:017795543912"> 01779 554391-2 </a> , <a href="tel:016887099656"> 01688 709965-6 </a> , <a href="tel:01985275286"> 01985 275286 </a> , <a href="tel:01852035634"> 01852 035634 </a> , <a href="tel:01517969150"> 01517 969150 </a> </p> <p class="resource-notes"> Free and confidential; open daily 3 PM–3 AM </p> </li> <li> <a class="resource-link" href="https://www.vandrevalafoundation.com/free-counseling" rel="nofollow noopener" target="_blank"> Vandrevala Foundation Helpline </a> <p class="resource-description"> Mental health helpline | Target: General population | Languages: English, Hindi | Contact: Call or WhatsApp <a href="tel:919999666555"> +91 9999 666 555 </a> </p> <p class="resource-notes"> Free counselling 24×7× <a href="tel:365"> 365 </a> via phone or WhatsApp </p> </li> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Australia Lifeline 13 11 14 (cross‑border) </a> <p class="resource-description"> Hotline | Target: English-speaking individuals needing crisis support | Languages: English | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> 24/7 crisis support and suicide prevention helpline accessible to individuals across the region <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://cvv.org.br/" rel="nofollow noopener" target="_blank"> Brazil CVV Helpline 188 (Portuguese) </a> <p class="resource-description"> Hotline | Target: Portuguese-speaking individuals | Languages: Portuguese | Contact: <a href="tel:188"> 188 </a> </p> <p class="resource-notes"> Brazil’s Centro de Valorização da Vida provides free emotional support 24/7 for Portuguese speakers <a href="https://cvv.org.br/" rel="nofollow noopener" target="_blank">https://cvv.org.br/</a> </p> </li> <li> <span class="resource-link"> New Zealand <a href="tel:1737"> 1737 </a> Helpline (English) </span> <p class="resource-description"> Hotline | Target: English speakers needing counselling | Languages: English | Contact: Free call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides 24/7 support from trained counsellors; available to Pacific island communities including Timor-Leste </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="kazakh;persian;russian;turkish" data-name="turkmenistan"> <summary> 🇹🇲 Turkmenistan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Ministry of Health Psychological Support Line 4030 </a> <p class="resource-description"> Helpline | Target: Persian-speaking individuals | Languages: Persian | Contact: <a href="tel:4030"> 4030 </a> </p> <p class="resource-notes"> Provides free psychological services via phone; can support Tajik/Turkmen individuals fluent in Persian <a href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank">https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/</a> </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/kazakhstan-telefon-150/" rel="nofollow noopener" target="_blank"> Kazakhstan National Crisis Hotline 150 </a> <p class="resource-description"> Hotline | Target: Russian and Kazakh speakers | Languages: Russian, Kazakh | Contact: <a href="tel:150"> 150 </a> </p> <p class="resource-notes"> 24/7 confidential support for children and families accessible across Central Asia <a href="https://childhelplineinternational.org/kazakhstan-telefon-" rel="nofollow noopener" target="_blank">https://childhelplineinternational.org/kazakhstan-telefon-</a> <a href="tel:150"> 150 </a> / </p> </li> <li> <a class="resource-link" href="https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch" rel="nofollow noopener" target="_blank"> Russia Psychological Emergency Helpline (051) </a> <p class="resource-description"> Helpline | Target: Russian speakers | Languages: Russian | Contact: <a href="tel:051"> 051 </a> / <a href="tel:7495051"> +7 495 051 </a> </p> <p class="resource-notes"> Round‑the‑clock emergency helpline for psychological assistance <a href="https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch" rel="nofollow noopener" target="_blank">https://msph.ru/uslugi/neotlozhnaya-psikhologicheskaya-pomoshch</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;children and elders experiencing domestic violence or abuse" data-name="united arab emirates"> <summary> 🇦🇪 United Arab Emirates </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline (Abu Dhabi) </a> <p class="resource-description"> Helpline | Target: General population requiring mental health support | Languages: "Arabic | Contact: English </p> <p class="resource-notes"> Hindi </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> National Mental Support Line (HOPE) </a> <p class="resource-description"> Helpline | Target: General population seeking psychological support | Languages: "Arabic | Contact: English" </p> <p class="resource-notes"> Phone: <a href="tel:8004673"> 800 4673 </a> </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Al Amal Psychiatric Hospital Helpline </a> <p class="resource-description"> Helpline | Target: Individuals with mental health issues | Languages: Arabic | Contact: Phone: <a href="tel:80011111"> 800-11111 </a> </p> <p class="resource-notes"> Provides mental health support; available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Domestic Violence Support Line (Social Support Centre) </a> <p class="resource-description"> Helpline | Target: "Women | Languages: children and elders experiencing domestic violence or abuse" | Contact: Arabic </p> <p class="resource-notes"> Phone: <a href="tel:8007283"> 800 7283 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="kazakh;persian;russian;turkish" data-name="uzbekistan"> <summary> 🇺🇿 Uzbekistan </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Children and Youth Helpline 8 800 2000 122 </a> <p class="resource-description"> Children and youth helpline | Target: Children, adolescents and families | Languages: Russian | Contact: Call <a href="tel:88002000122"> 8 800 2000 122 </a> or short number <a href="tel:124"> 124 </a> </p> <p class="resource-notes"> Free, anonymous, confidential counselling available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Emergency Health Services 112 </a> <p class="resource-description"> National emergency line | Target: Individuals needing urgent assistance or mental health crisis intervention | Languages: Turkish | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> 24/7 crisis intervention and psychiatric support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://childhelplineinternational.org/kazakhstan-telefon-150/" rel="nofollow noopener" target="_blank"> Kazakhstan Telefon 150 </a> <p class="resource-description"> Helpline | Target: Children and families speaking Russian or Uzbek | Languages: Russian, Kazakh | Contact: <a href="tel:150"> 150 </a> </p> <p class="resource-notes"> 24/7 confidential child helpline accessible across Central Asia <a href="https://childhelplineinternational.org/kazakhstan-telefon-" rel="nofollow noopener" target="_blank">https://childhelplineinternational.org/kazakhstan-telefon-</a> <a href="tel:150"> 150 </a> / </p> </li> <li> <a class="resource-link" href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank"> Russia Child Helpline 8 800 2000 122 </a> <p class="resource-description"> Helpline | Target: Children and youth speaking Russian | Languages: Russian | Contact: <a href="tel:88002000122"> 8 800 2000 122 </a> </p> <p class="resource-notes"> Free, anonymous and confidential helpline for children and youth, accessible via cross-border call <a href="https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/" rel="nofollow noopener" target="_blank">https://telefon-doveria.ru/besplatno-bezopasno-i-anonimno-pochemu-ne-stoit-boyat-sya-zvonka-na-detskij-telefon-doveriya/</a> </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran State Welfare Organization Helpline 1480 </a> <p class="resource-description"> Helpline | Target: Persian/Tajik-speaking individuals | Languages: Persian | Contact: <a href="tel:1480"> 1480 </a> </p> <p class="resource-notes"> Provides free psychological counselling and emotional support 8 AM–12 AM <a href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank">https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="english;vietnamese" data-name="vietnam"> <summary> 🇻🇳 Vietnam </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://intellect.co/public-mental-health-helplines/" rel="nofollow noopener" target="_blank"> MOHW Suicide Prevention Line </a> <p class="resource-description"> Helpline | Target: General population experiencing suicidal thoughts or emotional distress | Languages: Vietnamese | Contact: Call <a href="tel:1925"> 1925 </a> </p> <p class="resource-notes"> Provides suicide prevention counselling; part of Ministry of Health program in Taiwan (also applicable in Vietnamese context); listed to diversify language coverage </p> </li> <li> <a class="resource-link" href="https://intellect.co/public-mental-health-helplines/" rel="nofollow noopener" target="_blank"> Community Services Center Taipei After Hours Counseling Line </a> <p class="resource-description"> Helpline | Target: Expatriate community and English speakers in Taipei | Languages: English | Contact: Call <a href="tel:0932"> 0932 </a> ‑ <a href="tel:594578"> 594‑578 (5 </a> PM–12 AM) </p> <p class="resource-notes"> Provides after-hours counselling line for expatriates; includes mental health support and referral </p> </li> </ul> </div> </details> <details class="country" data-continent="asia" data-languages="arabic;english;french;hindi;malayalam;persian;tamil" data-name="yemen"> <summary> 🇾🇪 Yemen </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> Istijaba Mental Health Hotline </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English, Hindi, French, Malayalam, Tamil | Contact: Call <a href="tel:8001717"> 800 1717 </a> </p> <p class="resource-notes"> Free confidential service, available 24/7 </p> </li> <li> <a class="resource-link" href="https://www.expatica.com/ae/healthcare/healthcare-services/mental-health-uae-76790/" rel="nofollow noopener" target="_blank"> HOPE National Support Line </a> <p class="resource-description"> Mental health hotline | Target: General population | Languages: Arabic, English | Contact: Call <a href="tel:8004673"> 800 4673 </a> </p> <p class="resource-notes"> Free, available 24/7 for psychological support </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/iran/en/what-are-the-main-services-for-asylum-seekers-and-refugees-in-iran/psycho-social-support/" rel="nofollow noopener" target="_blank"> Iran Social Emergency Line 123 </a> <p class="resource-description"> Psychological hotline | Target: General population | Languages: Persian (Dari) | Contact: Call <a href="tel:123"> 123 </a> </p> <p class="resource-notes"> Free, confidential counselling; available 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/saudi-arabia/" rel="nofollow noopener" target="_blank"> Saudi National Center for Mental Health Promotion (920033360) </a> <p class="resource-description"> Helpline | Target: Arabic speakers | Languages: Arabic | Contact: <a href="tel:920033360"> 9200 333 60 </a> </p> <p class="resource-notes"> 24/7 mental health helpline offering counselling and crisis support for Arabic speakers across the region <a href="https://progress.guide/atlas/asia/saudi-arabia/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/asia/saudi-arabia/</a> </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank"> Egypt National Mental Health Hotline 16328 </a> <p class="resource-description"> Helpline | Target: Arabic speakers | Languages: Arabic | Contact: <a href="tel:16328"> 16328 </a> </p> <p class="resource-notes"> Free, confidential helpline available 24/7, providing mental health counselling in Arabic <a href="https://progress.guide/atlas/africa/egypt/" rel="nofollow noopener" target="_blank">https://progress.guide/atlas/africa/egypt/</a> </p> </li> <li> <span class="resource-link"> Qatar Mental Health Helpline <a href="tel:16000"> 16000 </a> </span> <p class="resource-description"> Helpline | Target: Arabic speakers needing mental health support | Languages: Arabic, English | Contact: <a href="tel:16000"> 16000 </a> </p> <p class="resource-notes"> Free 24/7 helpline providing mental health support via Hamad Medical Corporation. </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="albania"> <summary> 🇦🇱 Albania </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="andorra"> <summary> 🇦🇩 Andorra </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="austria"> <summary> 🇦🇹 Austria </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="belarus"> <summary> 🇧🇾 Belarus </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="belgium"> <summary> 🇧🇪 Belgium </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="bosnia and herzegovina"> <summary> 🇧🇦 Bosnia and Herzegovina </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="bulgaria"> <summary> 🇧🇬 Bulgaria </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="croatia"> <summary> 🇭🇷 Croatia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="czech;multiple languages" data-name="czechia"> <summary> 🇨🇿 Czechia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/czechia/" rel="nofollow noopener" target="_blank"> Czech Crisis Helpline 116 123 </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: Czech | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, anonymous, 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/czechia/" rel="nofollow noopener" target="_blank"> Linka bezpečí 116 111 (Czechia) </a> <p class="resource-description"> Child helpline | Target: Children and adolescents | Languages: Czech | Contact: Call <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> Confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/czechia/" rel="nofollow noopener" target="_blank"> EU Emergency Number 112 </a> <p class="resource-description"> Emergency services | Target: Individuals needing urgent assistance | Languages: Multiple languages | Contact: Call <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> Free emergency help across EU 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="danish" data-name="denmark"> <summary> 🇩🇰 Denmark </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://help.unhcr.org/denmark/where-to-find-help-in-denmark/helplines/" rel="nofollow noopener" target="_blank"> Livslinien (Lifeline) </a> <p class="resource-description"> Helpline/Chat | Target: People feeling mentally unwell or having suicidal thoughts | Languages: Danish | Contact: Call <a href="tel:70201201"> 70 201 201 </a> ; online chat at livslinien.dk </p> <p class="resource-notes"> Helpline available daily 11:00–05:00; chat open Mon–Thu 17:00–21:00 &amp; Sat–Sun 13:00–17:00 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/denmark/where-to-find-help-in-denmark/helplines/" rel="nofollow noopener" target="_blank"> Psykiatrifonden (Psychiatry Foundation) </a> <p class="resource-description"> Helpline/Chat | Target: Individuals seeking mental health information and support | Languages: Danish | Contact: Phone <a href="tel:39252525"> 39 25 25 25 </a> ; chat via psykiatrifonden.dk </p> <p class="resource-notes"> Helpline open daily 10:00–14:00; chat available Mon &amp; Wed 18:00–22:00 and Tue &amp; Thu 14:00–18:00 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/denmark/where-to-find-help-in-denmark/helplines/" rel="nofollow noopener" target="_blank"> Startlinjen (Starting Line) </a> <p class="resource-description"> Helpline | Target: People in vulnerable or critical life situations | Languages: Danish | Contact: Call <a href="tel:35362600"> 35 36 26 00 </a> </p> <p class="resource-notes"> Open every day 16:00–23:00 </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/denmark/where-to-find-help-in-denmark/helplines/" rel="nofollow noopener" target="_blank"> BørneTelefonen (Children’s Telephone) </a> <p class="resource-description"> Helpline/Chat | Target: Children and adolescents | Languages: Danish | Contact: Dial <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> Free and anonymous support for under 18s; phone open 24/7; chat available via bornetelefonen.dk </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="estonia"> <summary> 🇪🇪 Estonia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="finnish;multiple" data-name="finland"> <summary> 🇫🇮 Finland </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://help.unhcr.org/finland/where-to-find-help-in-finland/helplines/" rel="nofollow noopener" target="_blank"> National Crisis Help Line (Kriisipuhelin) </a> <p class="resource-description"> Helpline | Target: Individuals experiencing acute mental distress or violence | Languages: "Finnish | Contact: Swedish </p> <p class="resource-notes"> English" </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/finland/where-to-find-help-in-finland/helplines/" rel="nofollow noopener" target="_blank"> Lasten ja Nuorten Puhelin (Child and Youth Phone) </a> <p class="resource-description"> Helpline/Chat | Target: Children and adolescents under 18 | Languages: Finnish | Contact: Dial <a href="tel:116111"> 116 111 </a> ; chat at nuortennetti.fi </p> <p class="resource-notes"> "Open Mon–Fri 14:00–20:00 and Sat–Sun 17:00–20:00; provides free </p> </li> <li> <a class="resource-link" href="https://help.unhcr.org/finland/where-to-find-help-in-finland/helplines/" rel="nofollow noopener" target="_blank"> European Emergency Number (Finland) </a> <p class="resource-description"> Emergency Helpline | Target: Individuals needing urgent assistance | Languages: Multiple (EU languages) | Contact: Dial <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> Available 24/7 for emergency services including mental health crises </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="french" data-name="france"> <summary> 🇫🇷 France </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> <a href="tel:3114"> 3114 </a> – National Suicide Prevention Hotline </span> <p class="resource-description"> Helpline | Target: People in France in distress or with suicidal thoughts; friends/family of people in crisis | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Accessible 24/7 throughout France; free; answered by professionals trained in suicide prevention </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="email" data-name="germany"> <summary> 🇩🇪 Germany </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge </a> <p class="resource-description"> "Helpline | Target: chat | Languages: email" | Contact: General population in Germany </p> <p class="resource-notes"> German (some services in other languages) </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="fire or medical emergencies;greek" data-name="greece"> <summary> 🇬🇷 Greece </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/greece/" rel="nofollow noopener" target="_blank"> Klimaka Suicide Prevention Helpline </a> <p class="resource-description"> Helpline | Target: Individuals experiencing suicidal thoughts or emotional distress | Languages: Greek | Contact: Dial <a href="tel:1018"> 1018 </a> </p> <p class="resource-notes"> "Provides free </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/greece/" rel="nofollow noopener" target="_blank"> National Child Helpline (Smile of the Child) </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: Greek | Contact: Dial <a href="tel:1056"> 1056 </a> </p> <p class="resource-notes"> Provides mental health support for children and young people 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/greece/" rel="nofollow noopener" target="_blank"> European Union Emergency Number </a> <p class="resource-description"> Emergency Helpline | Target: "Individuals requiring urgent assistance for police | Languages: fire or medical emergencies" | Contact: Multiple (EU languages) </p> <p class="resource-notes"> Dial <a href="tel:112"> 112 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="hungarian" data-name="hungary"> <summary> 🇭🇺 Hungary </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/hungary/" rel="nofollow noopener" target="_blank"> Hungary Mental Health Support Line 116 123 </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: Hungarian | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/hungary/" rel="nofollow noopener" target="_blank"> Hungary Youth Line (Kék Vonal) 116 111 </a> <p class="resource-description"> Youth helpline | Target: Children and adolescents | Languages: Hungarian | Contact: Call <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> Free, confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/hungary/" rel="nofollow noopener" target="_blank"> Háttér LGBTQ+ Helpline </a> <p class="resource-description"> LGBTQ+ support line | Target: LGBTQ+ individuals | Languages: Hungarian | Contact: Call <a href="tel:3613293380"> +36 1 329 3380 </a> </p> <p class="resource-notes"> Open 18:00–23:00 daily </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="iceland"> <summary> 🇮🇸 Iceland </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="ireland"> <summary> 🇮🇪 Ireland </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="general population;individuals in suicidal crisis or those bereaved by suicide;italian;loneliness or crisis" data-name="italy"> <summary> 🇮🇹 Italy </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.bros.global/referralitaly" rel="nofollow noopener" target="_blank"> Samaritans Onlus (Italy Suicide Hotline) </a> <p class="resource-description"> Helpline | Target: General population in emotional crisis or suicidal thoughts | Languages: Italian | Contact: Toll-free <a href="tel:800860022"> 800 86 00 22 </a> (landline); Mobile: <a href="tel:0677208977"> 06 77208977 </a> </p> <p class="resource-notes"> Provides confidential emotional support; active daily from 13:00–22:00; calls from landlines are free; call cost may apply from mobile </p> </li> <li> <a class="resource-link" href="https://www.bros.global/referralitaly" rel="nofollow noopener" target="_blank"> Telefono Amico Italia </a> <p class="resource-description"> Helpline/Chat | Target: "People needing emotional support | Languages: loneliness or crisis; general population" | Contact: Italian </p> <p class="resource-notes"> Call <a href="tel:0223272327"> 02 2327 2327 (10 </a> :00–24:00); national number <a href="tel:199284284"> 199 284 284 </a> ; WhatsApp <a href="tel:393240117252"> +39 324 011 7252 </a> </p> </li> <li> <a class="resource-link" href="https://www.bros.global/referralitaly" rel="nofollow noopener" target="_blank"> "Servizio per la Prevenzione del Suicidio (Suicide Prevention Service </a> <p class="resource-description"> Sant’Andrea Hospital)" | Target: Helpline | Languages: Individuals in suicidal crisis or those bereaved by suicide | Contact: Italian </p> <p class="resource-notes"> Phone <a href="tel:0633777740"> 06 3377 7740 or 06 3377 5675 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="latvia"> <summary> 🇱🇻 Latvia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="liechtenstein"> <summary> 🇱🇮 Liechtenstein </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="lithuania"> <summary> 🇱🇹 Lithuania </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="luxembourg"> <summary> 🇱🇺 Luxembourg </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="malta"> <summary> 🇲🇹 Malta </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="moldova"> <summary> 🇲🇩 Moldova </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="monaco"> <summary> 🇲🇨 Monaco </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="montenegro"> <summary> 🇲🇪 Montenegro </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="also support in english via website;dutch" data-name="netherlands"> <summary> 🇳🇱 Netherlands </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.113.nl/english" rel="nofollow noopener" target="_blank"> 113 Zelfmoordpreventie </a> <p class="resource-description"> Helpline/Chat | Target: People experiencing suicidal thoughts or emotional distress | Languages: Dutch; also support in English via website | Contact: Call <a href="tel:08000113"> 0800-0113 ( </a> free) or <a href="tel:113"> 113 </a> (standard rate); online chat available </p> <p class="resource-notes"> Available 24/7; calls and chats are anonymous and confidential </p> </li> <li> <a class="resource-link" href="https://www.expatrepublic.com/crisis-help-in-the-netherlands/" rel="nofollow noopener" target="_blank"> MIND Korrelatie </a> <p class="resource-description"> Helpline/WhatsApp/Email | Target: Adults seeking psychological and mental health support | Languages: Dutch | Contact: Call <a href="tel:09001450"> 0900-1450 </a> ; WhatsApp <a href="tel:0613863803"> 06 13 86 38 03 </a> ; email via mindhulplijn.nl </p> <p class="resource-notes"> "Provides anonymous support via phone </p> </li> <li> <a class="resource-link" href="https://www.expatrepublic.com/crisis-help-in-the-netherlands/" rel="nofollow noopener" target="_blank"> De Luisterlijn </a> <p class="resource-description"> Helpline/Email | Target: Anyone needing a listening ear or emotional support | Languages: Dutch | Contact: Call <a href="tel:0880767000"> 088 0767 000 </a> ; email <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3b5e534e574b7b5f5e574e52484f5e4957525155155557">[email&#160;protected]</a> </p> <p class="resource-notes"> Confidential listening support 24/7 provided by trained volunteers </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="north macedonia"> <summary> 🇲🇰 North Macedonia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="norwegian" data-name="norway"> <summary> 🇳🇴 Norway </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.helsenorge.no/en/psykisk-helse/help-if-you-are-struggling-with-mental-health/" rel="nofollow noopener" target="_blank"> Mental Helse Helpline </a> <p class="resource-description"> Helpline | Target: People needing someone to talk to | Languages: Norwegian | Contact: Dial <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Provides anonymous support 24/7 for those struggling with mental health issues or suicidal thoughts </p> </li> <li> <a class="resource-link" href="https://www.helsenorge.no/en/psykisk-helse/help-if-you-are-struggling-with-mental-health/" rel="nofollow noopener" target="_blank"> Church SOS </a> <p class="resource-description"> Helpline | Target: Individuals seeking crisis support and pastoral care | Languages: Norwegian | Contact: Call <a href="tel:22400040"> 22 40 00 40 </a> </p> <p class="resource-notes"> Provides crisis support; if the situation is critical call <a href="tel:113"> 113 </a> ; website suggests support line but hours not specified </p> </li> <li> <a class="resource-link" href="https://www.helsenorge.no/en/psykisk-helse/help-if-you-are-struggling-with-mental-health/" rel="nofollow noopener" target="_blank"> Crisis Hotline for Children and Young People </a> <p class="resource-description"> Helpline | Target: Children and adolescents | Languages: Norwegian | Contact: Dial <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> Provides support for young people; call if you have concerns about a child or young person </p> </li> <li> <a class="resource-link" href="https://www.helsenorge.no/en/psykisk-helse/help-if-you-are-struggling-with-mental-health/" rel="nofollow noopener" target="_blank"> Kors på halsen (Red Cross) </a> <p class="resource-description"> Helpline | Target: Children and young people | Languages: Norwegian | Contact: Call <a href="tel:80033321"> 800 333 21 </a> </p> <p class="resource-notes"> Run by the Red Cross; offers a helpline for children and young people </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="polish" data-name="poland"> <summary> 🇵🇱 Poland </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/poland/" rel="nofollow noopener" target="_blank"> Poland National Crisis Helpline 116 123 </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: Polish | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/poland/" rel="nofollow noopener" target="_blank"> Polish Suicide Prevention Foundation Helpline 800 702 222 </a> <p class="resource-description"> Suicide prevention hotline | Target: Individuals in crisis | Languages: Polish | Contact: Call <a href="tel:800702222"> 800 702 222 </a> </p> <p class="resource-notes"> Free support (hours not specified) </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/poland/" rel="nofollow noopener" target="_blank"> Child Helpline 116 111 (Poland) </a> <p class="resource-description"> Youth helpline | Target: Children and adolescents | Languages: Polish | Contact: Call <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> Confidential support for children </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="french;german;portuguese" data-name="portugal"> <summary> 🇵🇹 Portugal </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://prevenirsuicidio.pt/contactos-e-servicos-disponiveis/" rel="nofollow noopener" target="_blank"> SOS Voz Amiga (Portugal) </a> <p class="resource-description"> Emotional support helpline | Target: General population | Languages: Portuguese | Contact: Call <a href="tel:213544545"> 213 544 545 </a> / <a href="tel:912802669"> 912 802 669 </a> / <a href="tel:963524660"> 963 524 660 </a> </p> <p class="resource-notes"> Confidential support; check hours </p> </li> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="romanian" data-name="romania"> <summary> 🇷🇴 Romania </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/romania/" rel="nofollow noopener" target="_blank"> Romanian Suicide Prevention Alliance Helpline 0800 801 200 </a> <p class="resource-description"> Suicide prevention helpline | Target: General population | Languages: Romanian | Contact: Call <a href="tel:0800801200"> 0800 801 200 </a> </p> <p class="resource-notes"> Free and confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/romania/" rel="nofollow noopener" target="_blank"> Telefonul Copilului 116 123 (Romania) </a> <p class="resource-description"> Child and adolescent helpline | Target: Children and adolescents | Languages: Romanian | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free youth counselling </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/romania/" rel="nofollow noopener" target="_blank"> Salvați Copiii Youth Helpline 0374 461 461 </a> <p class="resource-description"> Youth helpline | Target: Young people | Languages: Romanian | Contact: Call <a href="tel:0374461461"> 0374 461 461 </a> </p> <p class="resource-notes"> Available 9 AM–8 PM Mon–Fri </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="russia"> <summary> 🇷🇺 Russia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="san marino"> <summary> 🇸🇲 San Marino </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="serbia"> <summary> 🇷🇸 Serbia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="slovakia"> <summary> 🇸🇰 Slovakia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="slovenia"> <summary> 🇸🇮 Slovenia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="spanish" data-name="spain"> <summary> 🇪🇸 Spain </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lamoncloa.gob.es/lang/en/gobierno/news/paginas/2022/20220510_call-for-life.aspx" rel="nofollow noopener" target="_blank"> Línea 024 – Teléfono contra el Suicidio </a> <p class="resource-description"> Helpline | Target: General population in Spain experiencing suicidal thoughts or psychological crisis | Languages: Spanish | Contact: Call <a href="tel:024"> 024 </a> </p> <p class="resource-notes"> "National suicide prevention helpline; free </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="arabic;swedish" data-name="sweden"> <summary> 🇸🇪 Sweden </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> <a href="tel:1177"> 1177 </a> Healthcare Advice with Interpreter </span> <p class="resource-description"> Medical advice helpline | Target: People seeking medical or mental health advice | Languages: "Arabic | Contact: Somali </p> <p class="resource-notes"> Finnish </p> </li> <li> <span class="resource-link"> BRIS (Children’s Rights in Society) Helpline </span> <p class="resource-description"> Helpline | Target: Children needing help and protection | Languages: Swedish | Contact: Dial <a href="tel:116111"> 116 111 </a> </p> <p class="resource-notes"> European helpline providing confidential support for children </p> </li> <li> <span class="resource-link"> Swedish Church Hotline </span> <p class="resource-description"> Helpline/Chat | Target: Individuals seeking emotional and pastoral care | Languages: Swedish (support available in Finnish) | Contact: Call <a href="tel:020262500"> 020-26 25 00 </a> ; chat available Thursdays &amp; Sundays 18:00–20:00 </p> <p class="resource-notes"> Phone line open daily 21:00–23:00; offers emotional and pastoral support </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="english;french;german" data-name="switzerland"> <summary> 🇨🇭 Switzerland </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://3114.fr/" rel="nofollow noopener" target="_blank"> French National Suicide Prevention Hotline 3114 </a> <p class="resource-description"> National suicide prevention helpline | Target: General population | Languages: French | Contact: Call <a href="tel:3114"> 3114 </a> </p> <p class="resource-notes"> Free, accessible 24/7; answered by health professionals </p> </li> <li> <a class="resource-link" href="https://www.telefonseelsorge.de/" rel="nofollow noopener" target="_blank"> Telefonseelsorge (Germany) </a> <p class="resource-description"> Crisis helpline | Target: General population | Languages: German | Contact: Call <a href="tel:08001110111"> 0800 111 0 111 </a> / <a href="tel:08001110222"> 0800 111 0 222 </a> / <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, around the clock; anonymous </p> </li> <li> <a class="resource-link" href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank"> Samaritans Helpline 116 123 </a> <p class="resource-description"> Listening support helpline | Target: Anyone in distress | Languages: English | Contact: Call <a href="tel:116123"> 116 123 </a> </p> <p class="resource-notes"> Free, available 24/7 </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="turkish" data-name="turkey"> <summary> 🇹🇷 Turkey </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> National Suicide Prevention and Crisis Helpline (Emergency Health Services) </a> <p class="resource-description"> Helpline | Target: Individuals experiencing suicidal thoughts or crises | Languages: Turkish | Contact: Dial <a href="tel:112"> 112 </a> </p> <p class="resource-notes"> "Operates 24/7; provides immediate crisis intervention </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> Mental Health and Psychological Support Line (Ministry of Health) </a> <p class="resource-description"> Helpline | Target: General population needing mental health guidance and referrals | Languages: Turkish | Contact: Dial <a href="tel:182"> 182 </a> </p> <p class="resource-notes"> "Available 24/7; provides mental health guidance </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/asia/turkey/" rel="nofollow noopener" target="_blank"> ALO 183 Social Support and Domestic Violence Helpline </a> <p class="resource-description"> Helpline | Target: Survivors of domestic violence and individuals needing social support | Languages: Turkish | Contact: Dial <a href="tel:183"> 183 </a> </p> <p class="resource-notes"> "Operates 24/7; provides crisis intervention </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="russian;ukrainian" data-name="ukraine"> <summary> 🇺🇦 Ukraine </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/ukraine/" rel="nofollow noopener" target="_blank"> Lifeline Ukraine 7333 </a> <p class="resource-description"> Suicide prevention and veteran support helpline | Target: General population and veterans | Languages: Ukrainian, Russian | Contact: Call <a href="tel:7333"> 7333 </a> </p> <p class="resource-notes"> Free, confidential support 24/7 </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/ukraine/" rel="nofollow noopener" target="_blank"> Ministry of Health Mental Health Support Line 0 800 505 501 </a> <p class="resource-description"> Mental health support line | Target: General population | Languages: Ukrainian, Russian | Contact: Call <a href="tel:0800505501"> 0 800 505 501 </a> </p> <p class="resource-notes"> 24/7 mental health support </p> </li> <li> <a class="resource-link" href="https://progress.guide/atlas/europe/ukraine/" rel="nofollow noopener" target="_blank"> Gender-Based Violence Hotline 15 47 (Ukraine) </a> <p class="resource-description"> Gender-based violence helpline | Target: Survivors of gender-based violence | Languages: Ukrainian | Contact: Call <a href="tel:1547"> 15 47 </a> </p> <p class="resource-notes"> Crisis counselling; hours not specified </p> </li> </ul> </div> </details> <details class="country" data-continent="europe" data-languages="anyone affected by suicide or low mood;english;lgbtq+ individuals;welsh;welsh line available;young people under 35" data-name="united kingdom"> <summary> 🇬🇧 United Kingdom </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.samaritans.org/" rel="nofollow noopener" target="_blank"> Samaritans </a> <p class="resource-description"> Helpline | Target: Anyone needing to talk | Languages: English; Welsh line available | Contact: Call <a href="tel:116123"> 116 123 (24 </a> /7); Welsh language line <a href="tel:08081640123"> 0808 164 0123 (7 </a> pm–11 pm) </p> <p class="resource-notes"> "Free </p> </li> <li> <a class="resource-link" href="https://www.sane.org.uk/" rel="nofollow noopener" target="_blank"> SANEline </a> <p class="resource-description"> Helpline | Target: People experiencing mental health issues | Languages: English | Contact: Call <a href="tel:03003047000"> 0300 304 7000 </a> </p> <p class="resource-notes"> Available 4:30 pm–10 pm daily <a href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank">https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/</a> </p> </li> <li> <a class="resource-link" href="https://www.spuk.org.uk/" rel="nofollow noopener" target="_blank"> National Suicide Prevention Helpline UK </a> <p class="resource-description"> Helpline | Target: Anyone needing supportive listening | Languages: English | Contact: Call <a href="tel:08006895652"> 0800 689 5652 </a> </p> <p class="resource-notes"> 6 pm–midnight daily <a href="https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/" rel="nofollow noopener" target="_blank">https://www.mind.org.uk/information-support/guides-to-support-and-services/seeking-help-for-a-mental-health-problem/mental-health-helplines/</a> </p> </li> <li> <a class="resource-link" href="https://www.thecalmzone.net/" rel="nofollow noopener" target="_blank"> Campaign Against Living Miserably (CALM) </a> <p class="resource-description"> "Helpline | Target: webchat" | Languages: Anyone affected by suicide or low mood | Contact: English </p> <p class="resource-notes"> Call <a href="tel:0800585858"> 0800 58 58 58 </a> ; chat via thecalmzone.net </p> </li> <li> <a class="resource-link" href="https://giveusashout.org/" rel="nofollow noopener" target="_blank"> Shout </a> <p class="resource-description"> Text service | Target: Anyone in distress | Languages: English | Contact: Text SHOUT to <a href="tel:85258"> 85258 </a> </p> <p class="resource-notes"> "Free </p> </li> <li> <a class="resource-link" href="https://www.papyrus-uk.org/" rel="nofollow noopener" target="_blank"> Papyrus HOPELINEUK </a> <p class="resource-description"> "Helpline | Target: text" | Languages: Young people under 35 | Contact: English </p> <p class="resource-notes"> Call <a href="tel:08000684141"> 0800 068 4141 </a> ; text <a href="tel:07786209697"> 07786 209697 </a> </p> </li> <li> <a class="resource-link" href="https://switchboard.lgbt/" rel="nofollow noopener" target="_blank"> Switchboard </a> <p class="resource-description"> "Helpline | Target: webchat" | Languages: LGBTQ+ individuals | Contact: English </p> <p class="resource-notes"> Call <a href="tel:03003300630"> 0300 330 0630 </a> ; chat via switchboard.lgbt </p> </li> <li> <a class="resource-link" href="https://www.callhelpline.org.uk/" rel="nofollow noopener" target="_blank"> C.A.L.L. (Community Advice and Listening Line) </a> <p class="resource-description"> Helpline | Target: People in Wales | Languages: "Welsh | Contact: English" </p> <p class="resource-notes"> Call <a href="tel:0800132737"> 0800 132 737 </a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="chat;culturally safe support;english;men;people experiencing depression;people feeling suicidal or affected by suicide;webchat" data-name="australia"> <summary> 🇦🇺 Australia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Helpline | Target: Anyone in Australia | Languages: English (translation via TIS National) | Contact: Call <a href="tel:131114"> 13 11 14 </a> ; interpreter via <a href="tel:131450"> 131 450 (ask for Lifeline 13 11 14) </a> </p> <p class="resource-notes"> "Free </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> "Helpline | Target: text | Languages: webchat" | Contact: Young people aged 5–25 </p> <p class="resource-notes"> English (translation via TIS National) </p> </li> <li> <a class="resource-link" href="https://www.betterhealth.vic.gov.au/health/serviceprofiles/beyondblue-service" rel="nofollow noopener" target="_blank"> Beyond Blue </a> <p class="resource-description"> "Helpline | Target: webchat" | Languages: "People experiencing depression | Contact: anxiety </p> <p class="resource-notes"> or mental health challenges" </p> </li> <li> <a class="resource-link" href="https://www.healthdirect.gov.au/partners/mensline-australia" rel="nofollow noopener" target="_blank"> MensLine Australia </a> <p class="resource-description"> "Helpline | Target: online chat" | Languages: Men | Contact: English </p> <p class="resource-notes"> Call <a href="tel:1300789978"> 1300 78 99 78 </a> ; chat via mensline.org.au </p> </li> <li> <a class="resource-link" href="https://toolkit.lifeline.org.au/articles/support/1800respect" rel="nofollow noopener" target="_blank"> 1800RESPECT </a> <p class="resource-description"> "Helpline | Target: text | Languages: chat" | Contact: People impacted by domestic and family violence </p> <p class="resource-notes"> English (interpreters available via TIS) </p> </li> <li> <a class="resource-link" href="https://www.healthdirect.gov.au/partners/13yarn" rel="nofollow noopener" target="_blank"> 13YARN </a> <p class="resource-description"> Helpline | Target: Aboriginal and Torres Strait Islander peoples | Languages: English; culturally safe support | Contact: Call <a href="tel:139276"> 13 92 76 </a> </p> <p class="resource-notes"> Free 24/7 crisis support line led by Indigenous people <a href="https://www.healthdirect.gov.au/partners/13yarn" rel="nofollow noopener" target="_blank">https://www.healthdirect.gov.au/partners/13yarn</a> </p> </li> <li> <a class="resource-link" href="https://www.betterhealth.vic.gov.au/health/serviceprofiles/suicide-call-back-service" rel="nofollow noopener" target="_blank"> Suicide Call Back Service </a> <p class="resource-description"> "Helpline | Target: online counselling" | Languages: People feeling suicidal or affected by suicide | Contact: English (with translation and relay services) </p> <p class="resource-notes"> Call <a href="tel:1300659467"> 1300 659 467 </a> ; chat at suicidecallbackservice.org.au </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="fiji"> <summary> 🇫🇯 Fiji </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="kiribati"> <summary> 🇰🇮 Kiribati </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="marshall islands"> <summary> 🇲🇭 Marshall Islands </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="micronesia"> <summary> 🇫🇲 Micronesia </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="nauru"> <summary> 🇳🇷 Nauru </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="anyone in new zealand;anyone needing to talk;depression;email;english;people experiencing depression or anxiety" data-name="new zealand"> <summary> 🇳🇿 New Zealand </summary> <div class="content"> <ul class="resource-list"> <li> <span class="resource-link"> Need to Talk? / <a href="tel:1737"> 1737 </a> </span> <p class="resource-description"> "Helpline | Target: text" | Languages: Anyone needing to talk | Contact: English </p> <p class="resource-notes"> Free call or text <a href="tel:1737"> 1737 </a> </p> </li> <li> <span class="resource-link"> Depression Helpline </span> <p class="resource-description"> "Helpline | Target: text" | Languages: People experiencing depression or anxiety | Contact: English </p> <p class="resource-notes"> Call <a href="tel:0800111757"> 0800 111 757 </a> ; text <a href="tel:4202"> 4202 </a> </p> </li> <li> <span class="resource-link"> Suicide Crisis Helpline (TAUTOKO) </span> <p class="resource-description"> Helpline | Target: People thinking about suicide or worried about someone else | Languages: English | Contact: Call <a href="tel:0508828865"> 0508 828 865 (0508 </a> TAUTOKO) </p> <p class="resource-notes"> Free nationwide service </p> </li> <li> <a class="resource-link" href="https://www.lifeline.org.nz/services/lifeline-helpline" rel="nofollow noopener" target="_blank"> Lifeline Aotearoa </a> <p class="resource-description"> "Helpline | Target: text" | Languages: Anyone in New Zealand | Contact: English </p> <p class="resource-notes"> Call <a href="tel:0800543354"> 0800 543 354 </a> ; text <a href="tel:4357"> 4357 ( </a> HELP) </p> </li> <li> <span class="resource-link"> Samaritans New Zealand </span> <p class="resource-description"> Helpline | Target: "People experiencing loneliness | Languages: depression | Contact: despair or suicidal feelings" </p> <p class="resource-notes"> English </p> </li> <li> <a class="resource-link" href="https://www.youthline.co.nz" rel="nofollow noopener" target="_blank"> Youthline </a> <p class="resource-description"> "Helpline | Target: text | Languages: email | Contact: chat" </p> <p class="resource-notes"> Young people and youth supporters </p> </li> <li> <span class="resource-link"> Kidsline </span> <p class="resource-description"> Helpline | Target: Children under 18 | Languages: English | Contact: Call <a href="tel:0800543754"> 0800 543 754 </a> </p> <p class="resource-notes"> Talk to a Kidsline buddy 4 pm–9 pm weekdays </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="palau"> <summary> 🇵🇼 Palau </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="papua new guinea"> <summary> 🇵🇬 Papua New Guinea </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="samoa"> <summary> 🇼🇸 Samoa </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="solomon islands"> <summary> 🇸🇧 Solomon Islands </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="tonga"> <summary> 🇹🇴 Tonga </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="tuvalu"> <summary> 🇹🇻 Tuvalu </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> <details class="country" data-continent="oceania" data-languages="english" data-name="vanuatu"> <summary> 🇻🇺 Vanuatu </summary> <div class="content"> <ul class="resource-list"> <li> <a class="resource-link" href="https://www.lifeline.org.au/131114/" rel="nofollow noopener" target="_blank"> Lifeline Australia </a> <p class="resource-description"> Hotline | Target: English speakers in crisis | Languages: English (translation available via TIS National) | Contact: <a href="tel:131114"> 13 11 14 </a> </p> <p class="resource-notes"> Free, confidential 24/7 crisis support and suicide prevention helpline; translation services available <a href="https://www.lifeline.org.au/" rel="nofollow noopener" target="_blank">https://www.lifeline.org.au/</a> <a href="tel:131114"> 131114 </a> / </p> </li> <li> <a class="resource-link" href="https://www.1737.org.nz/" rel="nofollow noopener" target="_blank"> New Zealand 1737 Helpline </a> <p class="resource-description"> Hotline/Text | Target: English speakers needing mental health support | Languages: English | Contact: Call or text <a href="tel:1737"> 1737 </a> </p> <p class="resource-notes"> Provides free, confidential 24/7 mental health support from trained counsellors </p> </li> <li> <a class="resource-link" href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank"> Kids Helpline (Australia) </a> <p class="resource-description"> Helpline | Target: Children and young people (ages 5–25) | Languages: English | Contact: <a href="tel:1800551800"> 1800 55 1800 </a> </p> <p class="resource-notes"> Free, confidential counselling service for young people available 24/7 <a href="https://kidshelpline.com.au/about/about-khl" rel="nofollow noopener" target="_blank">https://kidshelpline.com.au/about/about-khl</a> </p> </li> </ul> </div> </details> </div> </section> </div> </main> <!-- Footer with meta information --> <footer role="contentinfo"> <div class="container"> <p> <strong> Remember: </strong> You are not alone. Help is available, and recovery is possible. </p> <div class="footer-meta"> <p> Last updated: August 23,  <a href="tel:2025"> 2025 </a> | <a href="#main"> Back to top </a> </p> <p> <strong> Accessibility Statement: </strong> This site follows WCAG 2.1 AA guidelines and uses universal design principles. If you encounter any barriers, please <a href="/cdn-cgi/l/email-protection#472624242234342e252e2b2e333e07213522222a222933262b2f22262b332f692e292128" rel="nofollow noopener" target="_blank"> contact us </a> . </p> <p> <strong> Privacy: </strong> This site does not collect personal information. All external links open in new windows. </p> <p> <strong> Disclaimer: </strong> This site provides information only and does not replace professional medical advice. </p> </div> </div> </footer> <!-- Back to top button --> <a aria-label="Back to top of page" class="back-to-top" href="#main" title="Back to top"> <!-- The arrow icon is decorative; hide from assistive tech --> <svg aria-hidden="true" fill="currentColor" height="24" viewbox="0 0 24 24" width="24"> <path d="M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z"> </path> </svg> </a> <!-- JavaScript for enhanced functionality --> <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script> // Theme switcher functionality // Accept both the desired theme and the clicked button element to avoid reliance on the global event object. function setTheme(theme, buttonEl) { document.body.setAttribute('data-theme', theme); localStorage.setItem('preferred-theme', theme); // Update aria-pressed states for theme buttons const buttons = document.querySelectorAll('.theme-btn'); buttons.forEach(btn => { btn.setAttribute('aria-pressed', 'false'); }); if (buttonEl) { buttonEl.setAttribute('aria-pressed', 'true'); } } // Load saved theme preference document.addEventListener('DOMContentLoaded', function() { const savedTheme = localStorage.getItem('preferred-theme'); if (savedTheme) { document.body.setAttribute('data-theme', savedTheme); // Activate the correct button const selectorMap = { 'light': 1, 'dark': 2, 'high-contrast': 3 }; const index = selectorMap[savedTheme]; if (index) { const activeBtn = document.querySelector('.theme-btn:nth-child(' + index + ')'); if (activeBtn) { document.querySelectorAll('.theme-btn').forEach(btn => btn.setAttribute('aria-pressed', 'false')); activeBtn.setAttribute('aria-pressed', 'true'); } } } }); // Back to top button visibility const backToTopBtn = document.querySelector('.back-to-top'); window.addEventListener('scroll', function() { if (window.pageYOffset > 300) { backToTopBtn.classList.add('visible'); } else { backToTopBtn.classList.remove('visible'); } }); // Smooth scroll for anchor links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { // Only handle internal links const targetId = this.getAttribute('href'); if (targetId && targetId.startsWith('#')) { e.preventDefault(); const target = document.querySelector(targetId); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); // Set focus for accessibility after scrolling target.focus(); } } }); }); // Toggle state update for details elements document.querySelectorAll('details').forEach(detail => { detail.addEventListener('toggle', function() { const summary = this.querySelector('summary'); summary.setAttribute('aria-expanded', this.open); }); }); // Respect user's motion preferences const prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)'); if (prefersReducedMotion.matches) { document.documentElement.style.scrollBehavior = 'auto'; } // Add keyboard navigation for theme buttons document.querySelectorAll('.theme-btn').forEach(btn => { btn.addEventListener('keydown', function(e) { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); btn.click(); } }); }); // ------- Region filtering and quick access ------- // document.addEventListener('DOMContentLoaded', function() { // Mapping of language prefixes to quick access countries const quickMapping = { 'en': ['United States','United Kingdom','Canada','Australia'], 'fr': ['France','Belgium','Canada'], 'es': ['Spain','Mexico','Argentina'], 'de': ['Germany','Austria','Switzerland'], 'pt': ['Portugal'], 'ru': ['Russia'], 'zh': ['China','Taiwan','Hong Kong (China)'], 'ja': ['Japan'], 'ar': ['Saudi Arabia','United Arab Emirates'], 'hi': ['India'], 'bn': ['Bangladesh'], 'ur': ['Pakistan'], 'fa': ['Iran'], 'tr': ['Turkey'], 'ko': ['South Korea'], 'it': ['Italy'], 'nl': ['Netherlands','Belgium'], 'sv': ['Sweden'], 'pl': ['Poland'], 'cs': ['Czechia'] }; const countryDetails = Array.from(document.querySelectorAll('#country-list details')); const quickContainer = document.getElementById('quick-access'); const continentButtons = document.querySelectorAll('.continent-btn'); const searchInput = document.getElementById('region-search'); function initQuickAccess() { const lang = navigator.language ? navigator.language.slice(0,2).toLowerCase() : ''; const quickCountries = quickMapping[lang] || []; if (quickCountries.length) { const heading = document.createElement('h3'); heading.textContent = 'Quick Access'; quickContainer.appendChild(heading); quickCountries.forEach(country => { const match = countryDetails.find(d => d.getAttribute('data-name') === country.toLowerCase()); if (match) { const clone = match.cloneNode(true); clone.open = false; quickContainer.appendChild(clone); } }); } } initQuickAccess(); // Continent button click handler continentButtons.forEach(btn => { btn.addEventListener('click', function() { const selected = this.getAttribute('data-continent'); // Update button states continentButtons.forEach(b => b.setAttribute('aria-pressed', 'false')); this.setAttribute('aria-pressed', 'true'); // Hide quick access when a continent is selected quickContainer.style.display = 'none'; // Reset search input searchInput.value = ''; // Show/hide countries by continent countryDetails.forEach(detail => { if (detail.getAttribute('data-continent') === selected) { detail.style.display = ''; } else { detail.style.display = 'none'; } }); }); }); // Search input handler searchInput.addEventListener('input', function() { const query = this.value.trim().toLowerCase(); if (query === '') { // If search box is cleared, reset continent selection and show quick access continentButtons.forEach(b => b.setAttribute('aria-pressed', 'false')); quickContainer.style.display = ''; countryDetails.forEach(detail => { detail.style.display = ''; }); } else { quickContainer.style.display = 'none'; continentButtons.forEach(b => b.setAttribute('aria-pressed', 'false')); countryDetails.forEach(detail => { const name = detail.getAttribute('data-name'); const langs = detail.getAttribute('data-languages') || ''; if ((name && name.includes(query)) || (langs && langs.includes(query))) { detail.style.display = ''; } else { detail.style.display = 'none'; } }); // If query matches a country exactly, open it and scroll into view const exactMatch = countryDetails.find(detail => detail.getAttribute('data-name') === query); if (exactMatch) { exactMatch.open = true; exactMatch.scrollIntoView({ behavior: 'smooth', block: 'start' }); } } }); }); 
    // Mobile hamburger menu toggle
    document.addEventListener('DOMContentLoaded', function() {
      const menuToggle = document.querySelector('.menu-toggle');
      const nav = document.querySelector('nav[aria-label="Main navigation"]');
      if (menuToggle && nav) {
        menuToggle.addEventListener('click', function() {
          const expanded = this.getAttribute('aria-expanded') === 'true';
          this.setAttribute('aria-expanded', (!expanded).toString());
          nav.classList.toggle('open');
        });
      }
    });
</script> </body> </html>