<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Uncategorized &#8211; The Healing Gym</title>
	<atom:link href="https://thehealinggym.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>https://thehealinggym.com</link>
	<description>Expand your capacity for well-being</description>
	<lastBuildDate>Wed, 24 Sep 2025 20:03:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:240/h:240/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/2-removebg-preview-e1675919319176.png</url>
	<title>Uncategorized &#8211; The Healing Gym</title>
	<link>https://thehealinggym.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Breathing Timer to Calm your Nervous System</title>
		<link>https://thehealinggym.com/breathing-timer/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Wed, 24 Sep 2025 18:21:19 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10496</guid>

					<description><![CDATA[A short 2 minute breathing timer to calm your nervous system quickly.]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element"><h3 data-end="180" data-start="132">Calm Your Nervous System in Just 2 Minutes</h3><p data-end="502" data-start="182">Take a quick pause. In <strong data-end="225" data-start="205">just two minutes</strong>, this simple breathing exercise—inhale, hold, exhale—can calm your mind, lower stress, and reset your nervous system. Science shows that <strong data-end="435" data-start="363">slow, mindful breathing activates the parasympathetic nervous system</strong>, helping reduce cortisol, slow your heart rate, and boost focus.</p><p data-end="711" data-start="504"><strong data-end="527" data-start="504">Consistency is key:</strong> Bookmark this page and return to this practice a few times a day. Even short, daily pauses train your nervous system to stay calm under pressure and carry peace throughout your day.</p><p data-end="803" data-start="713">Press start, follow the gentle circle, and let calm wash over you—two minutes at a time.</p></div><div class="thrv_wrapper thrv_custom_html_shortcode">


  <title>2-Minute Breathing Timer for Quickly Calming Your Nervous System</title>
  <style>
    body { text-align: center; font-family: sans-serif; margin-top: 30px; background: #f0f4f8; transition: background 4s ease-in-out; }
    h1 { color: #7D5BA6; } 
    #circle {
      width: 150px; height: 150px;
      background-color: #a299c9; 
      border-radius: 50%;
      margin: 40px auto;
      transform: scale(1);
      transition: transform 1s ease-in-out, background-color 1s ease-in-out;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }
    #instruction { font-size: 24px; margin-top: 20px; color: #555; }
    #count { font-size: 48px; margin-top: 10px; color: #555; }
    #session-time { font-size: 20px; margin-top: 10px; color: #555; }
    #affirmation { font-size: 20px; margin-top: 20px; color: #555; font-style: italic; min-height: 28px; }
    button { padding: 10px 20px; font-size: 18px; margin-top: 20px; cursor: pointer; background: #c1e1c1; border: none; border-radius: 8px; }
    button:hover { background: #b0d6b0; }
  </style>



<h1>2-Minute Breathing Timer for Quickly Calming Your Nervous System</h1>
<div id="circle"></div>
<div id="instruction">Click Start</div>
<div id="count"></div>
<div id="session-time"></div>
<div id="affirmation"></div>
<button id="startBtn">Start 2-Min Session</button>

<audio id="chime-sound" src="https://www.soundjay.com/misc/sounds/bell-ringing-05.mp3" preload="auto"></audio>

<code class="tve_js_placeholder"><script>
document.getElementById("startBtn").addEventListener("click", startSession);

function startSession() {
    const circle = document.getElementById('circle');
    const instruction = document.getElementById('instruction');
    const countDisplay = document.getElementById('count');
    const sessionDisplay = document.getElementById('session-time');
    const affirmationDisplay = document.getElementById('affirmation');
    const chime = document.getElementById('chime-sound');
    const startBtn = document.getElementById('startBtn');

    startBtn.innerText = "2-Min Breathing in Progress";
    startBtn.disabled = true;

    const inhale = 4;
    const hold = 2;
    const exhale = 6;
    const postExhaleHold = 2;
    const sessionDuration = 2 * 60; // seconds

    const encouragingAffirmations = [
        "You are calm and centered.",
        "Breathe in peace, breathe out tension.",
        "Your body is relaxing.",
        "Let go of stress with every breath.",
        "You are safe and supported."
    ];
    const celebrationAffirmations = [
        "Wonderful! You’ve calmed your nervous system!",
        "Excellent! You did a great job!",
        "Feeling relaxed and peaceful, well done!",
        "You are calm, centered, and strong!",
        "Amazing! Your nervous system thanks you!"
    ];

    let elapsedTime = 0;
    let cycleStep = 0;
    let sessionCompleted = false;
    let lastAffirmationTime = 0;

    function playChime() {
        chime.currentTime = 0;
        chime.play().catch(() => {});
    }

    function displayRandomAffirmation() {
        const aff = encouragingAffirmations[Math.floor(Math.random() * encouragingAffirmations.length)];
        affirmationDisplay.innerText = aff;
    }

    function step() {
        if(sessionCompleted) return;

        let stepDuration = 0;
        if(cycleStep === 0) { // inhale
            instruction.innerText = "Inhale";
            circle.style.transition = `transform ${inhale}s ease-in-out, background-color ${inhale}s ease-in-out`;
            circle.style.transform = "scale(1.3)";
            circle.style.backgroundColor = "#c1c1e0";
            document.body.style.transition = `background ${inhale}s ease-in-out`;
            document.body.style.background = "#e0e8f5"; // lighten on inhale
            stepDuration = inhale;
            countBreaths(stepDuration);
        } else if(cycleStep === 1) { // hold
            instruction.innerText = "Hold";
            circle.style.transform = "scale(1.3)";
            stepDuration = hold;
            countBreaths(stepDuration);
        } else if(cycleStep === 2) { // exhale
            instruction.innerText = "Exhale";
            circle.style.transition = `transform ${exhale}s ease-in-out, background-color ${exhale}s ease-in-out`;
            circle.style.transform = "scale(0.7)";
            circle.style.backgroundColor = "#a6a6c9";
            document.body.style.transition = `background ${exhale}s ease-in-out`;
            document.body.style.background = "#d0d4e0"; // slightly darker on exhale
            stepDuration = exhale;
            countBreaths(stepDuration);
        } else if(cycleStep === 3) { // post-exhale hold
            instruction.innerText = "Hold";
            circle.style.transform = "scale(0.7)";
            stepDuration = postExhaleHold;
            countBreaths(stepDuration);
        }
    }

    function countBreaths(duration) {
        let startTime = performance.now();
        let localCounter = 1;

        function update() {
            let now = performance.now();
            let secondsPassed = (now - startTime) / 1000;
            countDisplay.innerText = Math.floor(localCounter + secondsPassed);

            // smooth session timer
            let remainingTime = Math.max(0, sessionDuration - elapsedTime - secondsPassed);
            sessionDisplay.innerText = `Time left: ${Math.ceil(remainingTime)}s`;

            // update affirmations every 20s
            if(Math.floor((elapsedTime + secondsPassed) / 20) > lastAffirmationTime) {
                lastAffirmationTime = Math.floor((elapsedTime + secondsPassed) / 20);
                displayRandomAffirmation();
            }

            if(secondsPassed < duration) {
                requestAnimationFrame(update);
            } else {
                elapsedTime += duration;
                nextStep();
            }
        }
        requestAnimationFrame(update);
    }

    function nextStep() {
        cycleStep = (cycleStep + 1) % 4;

        // Allow the last cycle to complete
        if(elapsedTime >= sessionDuration && cycleStep === 0 && !sessionCompleted) {
            sessionCompleted = true;
            instruction.innerText = "Well done!";
            countDisplay.innerText = "";
            circle.style.transform = "scale(1)";
            circle.style.backgroundColor = "#a299c9";
            document.body.style.background = "#f0f4f8"; // reset background
            affirmationDisplay.innerText = celebrationAffirmations[Math.floor(Math.random()*celebrationAffirmations.length)];
            playChime();
            startBtn.innerText = "Start 2-Min Session";
            startBtn.disabled = false;
            return;
        }

        step();
    }

    step();
}
</script></code>


</div><div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Child throwing Tantrums? Some Dos and Donts for Parents.</title>
		<link>https://thehealinggym.com/tantrums-parenting-tips/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 03 Dec 2024 00:59:54 +0000</pubDate>
				<category><![CDATA[Parenting]]></category>
		<category><![CDATA[Parenting Series]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Children]]></category>
		<category><![CDATA[tantrums in children]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10233</guid>

					<description><![CDATA[Is your child throwing a lot of tantrums?Are you confused about what to do and what not to do?Here are some tips for parents that might help! December is the season of holidays and for most parents it's also the time to sigh because they are expecting many tantrums from their child.&#160;And tantrum challenges can [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-19389fdcefc"><h3 class="" style="text-align: center;" data-css="tve-u-19389fe5994">Is your child throwing a lot of tantrums?</h3><h3 class="" style="text-align: center;" data-css="tve-u-19389fe5997">Are you confused about what to do and what not to do?</h3><h3 class="" style="text-align: center;" data-css="tve-u-19389fe5998">Here are some tips for parents that might help!</h3></div><div class="thrv_wrapper thrv_text_element">	<p><em>December is the season of holidays and for most parents it's also the time to sigh because they are expecting many tantrums from their child.<br></em></p><p><em>And tantrum challenges can be triggered by almost &nbsp;anything!&nbsp;</em></p><p><em>Here are some common reasons for your child throwing tantrums:<br></em></p><p><em>1) When parents deny them what they want:<br></em></p><ul class=""><li><em>When parents deny them screen time</em></li><li><em>When dad refuses to buy yet another chocolate</em></li><li><em>When mom asks them to get ready to go to sleep</em></li><li><em>When parents suddenly change plans about going out to the park.</em></li></ul><p><em>2) When they are hungry or tired</em></p><ul class=""><li><em>They are acting out because they are too tired or hungry to self regulate themselves</em></li><li><em>They are starting to get sick and that makes them too tired</em></li><li><em>They haven't slept well</em></li><li><em>They are in crowded or noisy places</em></li><li><em>They are given too much sugar and the effect of it is slightly wearing off</em></li><li><em>They are having other issues like teething,&nbsp; wearing uncomfortable clothing</em></li></ul><p><em>3) When there are other reasons:</em></p><ul class=""><li><em>The child is testing limits when told 'no' or given rules they dislike</em></li><li><em>They do not know how to articulate their feelings and are feeling frustrated</em></li><li><em>They want to be more independent and are struggling with doing those tasks</em></li><li><em>They just don't want to share their toys or wait their turn in a game</em></li><li><em>They are not being given enough attention</em></li></ul><p>Can you think of any other reasons?</p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1938a0d7532"><h3 class="" style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;">What should parents do when the child is throwing tantrums?</h3></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1938a0d9ec6"><p><i>In such a situation what should parents do? and what could parents do? Do they have any options at all? Yes they definitely do.</i></p><p><em>I believe that:&nbsp;</em></p><h4 style="text-align: center; color: rgb(85, 81, 211) !important; --tcb-applied-color: rgb(85, 81, 211) !important;" class=""><strong>The sign of great parenting is not the child’s behavior. The sign of truly great parenting is the parent’s behavior.</strong></h4><p><em>Parents everywhere get so worked up about how their child behaves in public, about how the child does not listen, how the child doesn’t tidy up after a play, or about the child being naughty.</em></p><p><em>Parents feel embarrassed when the child throws a tantrum and very often tend to get frustrated or angry as well.</em></p><p><em>Most parents forget they did the same things in their childhood.&nbsp;</em></p><h5 class=""><em>Parents forget.........</em></h5><ul class=""><li><em>They forget that throwing tantrums and having these emotional reactions is part of childhood.</em></li><li><em>Parents forget that children learn by how parents react to their tantrums. Children learn emotional self-regulation from watching their parents deal with their emotional tantrums.</em></li></ul><p><em>In fact, every tantrum that your child throws is a great teaching opportunity for emotion management.</em></p></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-19389f05a13"><h2 style="text-align: center; color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important;" class="">Tips for parents to handle tantrums</h2></div><div class="thrv_wrapper thrv_text_element"><h4 style="text-align: center;" class="">Here are some tips for parents, some dos and donts that might be useful when children throw tantrums.</h4><ul class=""><li><em>Most importantly, you, the parent, need to stay absolutely calm.</em><ul><li><em>Work on your own emotional regulation. Practice breathing exercises and clear your inner mind space.</em></li></ul></li><li><em>Avoid escalating the situation</em><ul><li><em>If you can't solve the situation, at least do not escalate it.</em></li><li><em>For example: If the child is throwing a tantrum in a supermarket,&nbsp; screaming at them will definitely escalate the situation.</em></li></ul></li><li><em><em>Avoid giving in to their demands because if you do that, you are giving them a message that throwing a tantrum works.</em></em></li><li><em><em>Instead, try and understand the possible reason why they are throwing the tantrum and address that.</em></em><ul><li><em><em>If they are hungry, feed them. If they are sick, take care of them.</em></em></li><li><em><em>If they are unhappy because they are not getting what they want, be firm and kind and reinforce the boundaries.</em></em></li></ul><ul><li><em>For example, when your child is throwing tantrums in a supermarket:&nbsp;try diverting their attention to something else, or talk to them as if they are older, and explain to them what’s reasonable and unreasonable and why.&nbsp;</em></li></ul></li></ul></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-1938a026ee8"><h2 data-css="tve-u-19389f1b54f" style="text-align: center;" class="">Parents, here are more tips for you!</h2><p><strong>More tips for parents:</strong></p><ul class=""><li>Acknowledge their feelings with empathy ('I see you are upset because you wanted to continue watching your show...)</li><li>Offer choices when appropriate so they feel in control.</li><li>Distract or redirect their attention to a different activity or object.</li><li>Set consistent boundaries so they know what to expect.</li><li>Teach them words to express emotions (do it when they feel more calm).</li></ul></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-19389f1f6f6">	<h2 data-css="tve-u-19389f1e319" style="" class="">You have the ability to influence them positively</h2><p><em>Dear parents,&nbsp;</em></p><p><em>You have the ability to influence them positively by training yourself in the right way of disciplining them and handling their tantrums with a calm approach.</em></p><p><em>As parents, when we behave as responsible adults, our children will behave as responsible children.&nbsp;</em></p><p><em><strong>Giving our children choices, being firm and kind with them,&nbsp; educating them lovingly and enabling them to make right choices are all signs of great parenting.</strong></em></p><p><em>When we are conscious and aware parents, we raise conscious and aware children.</em></p></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-19389f418b2"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-6355" alt="The sign of great parenting" data-id="6355" width="672" data-init-width="940" height="563" data-init-height="788" title="The sign of great parenting" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png" data-width="672" data-height="563" loading="lazy" style="aspect-ratio: auto 940 / 788;" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:940/h:788/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png 940w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:251/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:644/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/08/Parenting-3.png 768w" sizes="auto, (max-width: 672px) 100vw, 672px" /></span></div><div class="thrv_wrapper thrv_text_element">	<h2 style="" data-css="tve-u-19389f4bde4" class="">If you are needing clarity and help, try parent coaching with me!</h2><p>Parenting is a hard job and we did not have manuals come with every child. (I wish we did though:)</p><p>Having raised two daughters, life experience and the many trainings I took&nbsp;has given me a clarity about how to handle many of these parenting challenges.</p><p>If you find parenting hard and would like to try out some parent coaching, do&nbsp;<a data-saferedirecturl="https://www.google.com/url?q=https://thehealinggym.com/parent-coaching/&amp;source=gmail&amp;ust=1733271633995000&amp;usg=AOvVaw3Mv6oJgC76R8ZvJ9c54lmW" href="https://thehealinggym.com/parent-coaching/" target="_blank" class="" style="outline: none;">check out this link</a> and reach out to me.</p></div><div class="thrv_wrapper thrv_text_element"><h2 style="text-align: center;" data-css="tve-u-19389fb16da" class="">Reach out if you want support</h2></div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tcb-local-vars-root" style="" data-css="tve-u-19389f6dc79" data-ct-name="Call To Action 24" data-ct="callaction-57292" data-element-name="Call to Action"><div class="thrive-colors-palette-config" style="display: none !important"></div>
<div class="tve-content-box-background" data-css="tve-u-19389f6dc7a" style=""></div>
<div class="tve-cb tve_empty_dropzone" data-css="tve-u-19389f6dc7b" style=""><div class="thrv_wrapper thrv_text_element tcb-local-vars-root" style="" data-css="tve-u-19389f6dc7c" data-tag="h3"><h3 class="" style="text-align: center;"><strong>Schedule a complimentary consultation&nbsp;</strong></h3></div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad tcb-local-vars-root" data-css="tve-u-19389f6dc7e" style="">
	<div class="tve-content-box-background" style="" data-css="tve-u-19389f6dc7f"></div>
	<div class="tve-cb"></div>
</div><div class="thrv_wrapper thrv_text_element tve_empty_dropzone tcb-local-vars-root" style="" data-css="tve-u-19389f6dc80"><p><em>If you are needing help and support to parent your child well, do reach out and you can see if my methods and approach are aligned to your needs.</em></p><p><em>Reach out to me by:<br></em></p><p><em>Text or WhatsApp&nbsp;me @ +1-408-508-9419<br></em></p><p><em>or schedule a free complimentary consult at the link below!</em></p></div><div class="thrv_wrapper thrv_contentbox_shortcode thrv-content-box tve-elem-default-pad" style="" data-css="tve-u-19389f6dc82">
	<div class="tve-content-box-background"></div>
	<div class="tve-cb" data-css="tve-u-19389f6dc83"><div class="thrv_wrapper thrv_icon tcb-icon-display tve_evt_manager_listen tve_et_tve-viewport tve_ea_thrive_animation tve_anim_slide_top tcb-local-vars-root" data-css="tve-u-19389f6dc84" style="" data-float-d="1" data-tcb-events="__TCB_EVENT_[{&quot;t&quot;:&quot;tve-viewport&quot;,&quot;config&quot;:{&quot;anim&quot;:&quot;slide_top&quot;,&quot;loop&quot;:0},&quot;a&quot;:&quot;thrive_animation&quot;}]_TNEVE_BCT__"><svg class="tcb-icon" viewBox="0 0 448 512" data-id="icon-arrow-down-light" data-name="" style="">
            <path d="M443.5 248.5l-7.1-7.1c-4.7-4.7-12.3-4.7-17 0L241 419.9V44c0-6.6-5.4-12-12-12h-10c-6.6 0-12 5.4-12 12v375.9L28.5 241.4c-4.7-4.7-12.3-4.7-17 0l-7.1 7.1c-4.7 4.7-4.7 12.3 0 17l211 211.1c4.7 4.7 12.3 4.7 17 0l211-211.1c4.8-4.8 4.8-12.3.1-17z"></path>
        </svg></div><div class="thrv_wrapper thrv-button tcb-local-vars-root" data-css="tve-u-19389f6dc85" data-button-style="full_rounded" style="" data-button-size="s" data-tcb_hover_state_parent="" data-button-size-d="l">
<a href="https://thehealinggym.com/free-consultation/" class="tcb-button-link" data-css="tve-u-19389f6dc86" style="" target="_blank">
<span class="tcb-button-texts" style=""><span class="tcb-button-text thrv-inline-text" data-css="tve-u-19389f6dc87" data-tcb_hover_state_parent="" style=""><strong>book now</strong></span></span>
</a>
</div></div>
</div></div>
</div><div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Are you having trouble sleeping? Here are 4 reasons why you should prioritize sleep.</title>
		<link>https://thehealinggym.com/sleep-well/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 26 Nov 2024 01:57:10 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://thehealinggym.com/?p=10212</guid>

					<description><![CDATA[Are you having trouble sleeping?In the hustle and bustle of today’s fast-paced world, sleep often takes a backseat to&#160;busy schedules,&#160;screen time, and&#160;endless to-do lists.&#160;And all our to-do lists and busy schedules end up with us having trouble sleeping.Do you agree?Unfortunately, neglecting sleep can have profound effects on our mental, emotional, and physical well-being.&#160;&#160;This is why [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper thrv_text_element"><h2 class="" style="color: rgb(120, 20, 168) !important; --tcb-applied-color: rgb(120, 20, 168) !important; text-align: center;"><em>Are you having trouble sleeping?</em></h2><p><em>In the hustle and bustle of today’s fast-paced world, sleep often takes a backseat to&nbsp;</em></p><ul class=""><li><em>busy schedules,&nbsp;</em></li><li><em>screen time, and&nbsp;</em></li><li><em>endless to-do lists.&nbsp;</em></li></ul><p>And all our to-do lists and busy schedules end up with us having trouble sleeping.</p><h5><em>Do you agree?</em></h5></div><div class="thrv_wrapper thrv-columns"><div class="tcb-flex-row v-2 tcb--cols--2"><div class="tcb-flex-col"><div class="tcb-col"><div class="thrv_wrapper tve_image_caption" data-css="tve-u-1936629b53b" style=""><span class="tve_image_frame" style=""><img decoding="async" class="tve_image wp-image-250 tcb-moved-image" alt="" data-id="250" width="344" data-init-width="1728" height="458" data-init-height="2304" title="sleepless" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg" data-width="344" data-height="458" data-css="tve-u-1936629cf64" style="aspect-ratio: auto 1728 / 2304;" ml-d="0" mt-d="-9.172000000000025" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 1728w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:225/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 225w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 1152w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:810/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2023/02/sleepless.jpeg 1536w" sizes="auto, (max-width: 344px) 100vw, 344px" /></span></div></div></div><div class="tcb-flex-col"><div class="tcb-col"><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193662b8d81"><h5><br></h5><p><em>Unfortunately, neglecting sleep can have profound effects on our mental, emotional, and physical well-being.&nbsp;</em></p><p><em>This is why cultivating good sleep hygiene—a set of habits that promote quality sleep—is more crucial than ever.</em></p></div></div></div></div></div><div class="thrv_wrapper thrv_text_element"><h2 style="text-align: center;" data-css="tve-u-193661ce7b9" class="">4 reasons why you should prioritize sleep!</h2><p><em>Dear friend,&nbsp;</em></p><p><em>You are important and your health is very important.</em></p><p><em>Let me share 4 very powerful reasons why you should focus on developing a healthy sleep hygiene.</em></p><p><em>But&nbsp; firstly&nbsp;do you know what is sleep hygiene?</em></p></div><div class="thrv_wrapper thrv_text_element"><h3 style="text-align: center;" data-css="tve-u-193661c6df3" class=""><span data-css="tve-u-193660c8886" style="">Watch the video to understand:</span></h3><h3 data-css="tve-u-193660c887d" style="text-align: center; color: var(--tcb-skin-color-23) !important; --tcb-applied-color: var$(--tcb-skin-color-23) !important;" class="">What is sleep hygiene? Why is it important?</h3></div><div class="thrv_responsive_video thrv_wrapper tcb-lazy-load tcb-lazy-load-youtube" data-type="youtube" data-rel="0" data-modestbranding="1" data-aspect-ratio="16:9" data-aspect-ratio-default="0" data-float-position="top-left" data-float-width-d="300px" data-float-padding1-d="25px" data-float-padding2-d="25px" data-float-visibility="mobile" data-url="https://www.youtube.com/watch?v=phoJiU2LSd4">
	

	<div class="tve_responsive_video_container" style="padding-bottom: 56.25%;">
		<div class="video_overlay"></div>
	<iframe title="Responsive Video" class="tcb-responsive-video" data-code="phoJiU2LSd4" data-hash="undefined" data-provider="youtube" frameborder="0" allowfullscreen="" loading="lazy" data-src="https://www.youtube.com/embed/phoJiU2LSd4?rel=0&amp;modestbranding=1&amp;controls=1&amp;showinfo=1&amp;fs=1&amp;wmode=transparent&amp;enablejsapi=1"></iframe></div>
</div><div class="thrv_wrapper thrv_text_element">	<h2 data-hide="true" style="" data-css="tve-u-193661d1216" class="">4 reasons why you should prioritize sleep!</h2><p data-hide="true"><em>Here are 4 super reasons why sleep hygiene matters and why you should prioritize sleep.</em></p><p data-hide="true"><em><strong>1. Mental clarity and focus:&nbsp;</strong></em></p><ul class=""><li data-hide="true"><em>Poor sleep impacts cognitive function.&nbsp;</em></li></ul><ul class=""><li data-hide="true"><em>And you would have noticed how after a poor night's sleep, your concentration and focus goes down drastically?<strong><br></strong></em></li></ul><p data-hide="true"><em><strong>2. Emotional Resilience:&nbsp;</strong>&nbsp;</em></p><ul class=""><li data-hide="true"><em>Yelling, screaming, frequent upsets and in general stress seems to be much higher without adequate sleep.&nbsp;</em></li></ul><ul class=""><li data-hide="true"><em>We end up struggling with emotional regulation.</em></li></ul></div><div class="thrv_wrapper tve_image_caption" data-css="tve-u-19366143a2c"><span class="tve_image_frame"><img decoding="async" class="tve_image wp-image-10218" alt="Let go and overcome your challenges in sleep" data-id="10218" width="702" data-init-width="940" height="588" data-init-height="788" title="Anxiety Qs (42)" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:6a16dd5f0b321d7acaea0124ea7bacec/https://thehealinggym.com/Anxiety-Qs-42.png" data-width="702" data-height="588" style="aspect-ratio: auto 940 / 788;" loading="lazy" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:940/h:788/q:mauto/f:best/id:6a16dd5f0b321d7acaea0124ea7bacec/https://thehealinggym.com/Anxiety-Qs-42.png 940w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:251/q:mauto/f:best/id:6a16dd5f0b321d7acaea0124ea7bacec/https://thehealinggym.com/Anxiety-Qs-42.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:auto/h:auto/q:mauto/f:best/id:6a16dd5f0b321d7acaea0124ea7bacec/https://thehealinggym.com/Anxiety-Qs-42.png 702w" sizes="auto, (max-width: 702px) 100vw, 702px" /></span></div><div class="thrv_wrapper thrv_text_element">	<p data-hide="true"><em><strong>3. Physical health:</strong>&nbsp;</em></p><ul class=""><li data-hide="true"><em>Consistent restorative sleep supports immune function, heart health and hormonal balance.&nbsp;</em></li><li data-hide="true"><em>This means if you are sleeping well, there is more likelihood for your periods to be regular, thyroid levels to be normal and other chronic conditions to be minimal.</em></li></ul><p data-hide="true"><em><strong>4. Digital Overload and Sleep Disruption:&nbsp;</strong></em></p><ul class=""><li data-hide="true"><em>Exposure to blue light from screens before bed is the biggest factor today that disrupts melatonin, a crucial hormone for our sleep.&nbsp;</em></li><li data-hide="true"><em>Which means, disconnecting is essential for restful sleep.</em></li></ul></div><div class="thrv_wrapper thrv_text_element"><h2 class="">If you are having trouble sleeping......</h2></div><div class="thrv_wrapper thrv_text_element" style="" data-css="tve-u-193661b526c"><h3 class="" style="text-align: center;" data-css="tve-u-193661ba7ab">Don't hesitate to seek support.&nbsp;</h3><h3 class="" style="text-align: center;" data-css="tve-u-193661ba7ad">Remember you are valuable, your wellbeing is important!</h3></div><div class="thrv_wrapper thrv_text_element"><h2 style="text-align: center;" data-css="tve-u-193661ece94" class="">How can I help you?</h2><h5 style="text-align: center;" class=""><i>As an Anxiety Life coach and an Hypnotherapist, I know how important it is to sleep well.</i></h5><p><i>I have a whole bunch of toolkits that will help you in getting back to better quality of sleep.</i></p><p><i>These are some of the my focus areas when I work with clients with sleep issues:</i>&nbsp;</p><ol class=""><li><strong><i>Help you create a good sleep hygiene by ironing out unwanted distractions in and around sleep time;</i></strong></li><li><strong><i>Help you&nbsp;create&nbsp;a physical&nbsp;environment conducive to sleep around you;</i></strong></li><li><strong><i>Help you create a sleep mindset: moving from wanting to be in charge to letting go and relaxing;</i></strong></li><li><strong><i>Help you maneuver your mind from overthinking and worry state to the relaxed state of surrender.</i></strong></li></ol></div><div class="thrv_wrapper thrv_text_element"><table align="center" border="0" cellpadding="0" cellspacing="0" width="640" class=""><tbody><tr><td align="center"><table align="center" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td align="left" class=""><h2 style="text-align: center;" data-css="tve-u-19366207011">My methods</h2><p><i>Typically my sessions are&nbsp; anywhere&nbsp;from 3-6 sessions for&nbsp; supporting you in developing a consistent and restorative sleep routine.</i></p><h5 class=""><i>I use the following tools as part of my coaching:</i></h5><ul><li><i>Anxiety and sleep coaching practices;</i></li><li><i>Guided meditations designed to enable you drift into sleep easily;</i></li><li><i>Awareness exercises to help you notice the impact of irregular sleep in your life;</i></li><li><i>Short NLP (NeuroLinguistic Programming) exercises that empower you to consistently manage your overthinking mind.</i></li><li><i>Positive Affirmations that are embedded into the meditations and also given to you as an anchor;</i></li><li><i>Longer Hypnosis sessions to&nbsp; reprogram your subconscious mind and remove any deeper blocks that impede you in having a good sleep.</i></li></ul></td></tr></tbody></table></td></tr></tbody></table></div><div class="thrv_wrapper thrv_text_element"><h2 style="text-align: center;" data-css="tve-u-19366209564" class="">Reach out if you want support</h2><p><i>If you are needing help and support to have a good night's sleep, do reach out and you can see if my methods and approach are aligned to your needs.</i></p><p><i>Reach out to me by:</i></p><p><i>Text or WhatsApp&nbsp;me @ +1-408-508-9419</i></p><p><i>or schedule a free complimentary consult at the link below!</i></p></div><div class="thrv_wrapper thrv-button thrv-button-v2 tcb-local-vars-root" data-css="tve-u-193662c74e6">
	<div class="thrive-colors-palette-config" style="display: none !important"></div>
	<a href="#https://bit.ly/36ASmrT" class="tcb-button-link tcb-plain-text" target="_blank">
		<span class="tcb-button-texts"><span class="tcb-button-text thrv-inline-text">Schedule a free consultation with me</span></span>
	</a>
</div><div class="thrv_wrapper thrv_text_element">	<p>If you know someone who has sleep related issues, <a href="https://thehealinggym.com/sleep-well/" target="_blank" class="" style="outline: none;">share this article with them</a>!</p></div><div class="thrv_wrapper thrv_social_custom thrv_social tve_social_updated" data-counts="" data-min_shares="0" data-device-config="{&quot;desktop&quot;:{},&quot;tablet&quot;:{},&quot;mobile&quot;:{&quot;button_type&quot;:&quot;tve_social_ib&quot;,&quot;showCount&quot;:&quot;0&quot;}}">
<div class="tve_social_items tve_social_custom tve-prevent-content-edit tve_style_6 tve_social_itb">
	
		
		<div class="thrv_wrapper tve_s_item tve_s_fb_share tve_share_item" data-s="fb_share" data-href="https://thehealinggym.com/sleep-well/" data-label="Share">
			<a href="javascript:void(0)" class="tve_s_link">
				<span class="thrv_wrapper tve_s_icon">
					<svg class="tcb-icon" viewBox="0 0 264 512" data-id="icon-fb" data-name="">
            <path d="M76.7 512V283H0v-91h76.7v-71.7C76.7 42.4 124.3 0 193.8 0c33.3 0 61.9 2.5 70.2 3.6V85h-48.2c-37.8 0-45.1 18-45.1 44.3V192H256l-11.7 91h-73.6v229"></path>
        </svg>
				</span>
				<span class="tve_s_text tve-froala">Share</span>
				<span class="tve_s_count">0</span>
			</a>
		</div>
		
		<div class="thrv_wrapper tve_s_item tve_s_in_share tve_share_item" data-s="in_share" data-href="https://thehealinggym.com/sleep-well/" data-label="Share">
			<a href="javascript:void(0)" class="tve_s_link">
				<span class="thrv_wrapper tve_s_icon">
					<svg class="tcb-icon" viewBox="0 0 448 512" data-id="icon-in" data-name="">
            <path d="M100.3 480H7.4V180.9h92.9V480zM53.8 140.1C24.1 140.1 0 115.5 0 85.8 0 56.1 24.1 32 53.8 32c29.7 0 53.8 24.1 53.8 53.8 0 29.7-24.1 54.3-53.8 54.3zM448 480h-92.7V334.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V480h-92.8V180.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V480z"></path>
        </svg>
				</span>
				<span class="tve_s_text tve-froala">Share</span>
				<span class="tve_s_count">0</span>
			</a>
		</div>
		
		<div class="thrv_wrapper tve_s_item tve_s_pin_share tve_share_item" data-s="pin_share" data-href="https://thehealinggym.com/sleep-well/" data-label="Pin">
			<a href="javascript:void(0)" class="tve_s_link">
				<span class="thrv_wrapper tve_s_icon">
					<svg class="tcb-icon" viewBox="0 0 384 512" data-id="icon-pin" data-name="">
            <path d="M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z"></path>
        </svg>
				</span>
				<span class="tve_s_text tve-froala">Pin</span>
				<span class="tve_s_count">0</span>
			</a>
		</div>
		
	
</div>
</div><div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Power of Intention</title>
		<link>https://thehealinggym.com/the-power-of-intention/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Thu, 28 Oct 2021 07:58:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[Completeness]]></category>
		<category><![CDATA[Dr. Wayne Dyer]]></category>
		<category><![CDATA[energy of Love]]></category>
		<category><![CDATA[Fear]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[Forgiving]]></category>
		<category><![CDATA[Grateful]]></category>
		<category><![CDATA[inner self]]></category>
		<category><![CDATA[Judge]]></category>
		<category><![CDATA[Louise Hay]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[Self Acceptance]]></category>
		<category><![CDATA[Self Approve]]></category>
		<category><![CDATA[Self critism]]></category>
		<category><![CDATA[Self Discipline]]></category>
		<category><![CDATA[Self Motivate]]></category>
		<category><![CDATA[Stay focused]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[the power of intention]]></category>
		<category><![CDATA[whole]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6729</guid>

					<description><![CDATA[Do you need more support from the Universe? Do you want to attract the right kind of partner, colleague or friend? Do you wish for more people in your life who resonate with your vibrational wavelength? Wayne Dyer, in his book, ‘The Power of Intention’ says, ‘The right people will arrive to assist you in [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="thrv_wrapper tve_wp_shortcode">
<div class="tve_shortcode_raw" style="display: none"></div>
<div class="tve_shortcode_rendered">
<p>Do you need more support from the Universe? Do you want to attract the right kind of partner, colleague or friend? Do you wish for more people in your life who resonate with your vibrational wavelength?</p>
</p>
<p>Wayne Dyer, in his book, ‘The Power of Intention’ says, ‘The right people will arrive to assist you in every aspect of your life. The people who will support you in your career are there, the people who will help you create your perfect home show up, the people who will arrange the finances for whatever you desire are available.</p>
</p>
<p>You have to let go of any resistance to your ability to attract the right people, or you won’t recognize them when they show up in everyday life.’</p>
</p>
<p>For example: You can’t have a desire to attract a partner who is confident, generous, non judgmental and gentle and expect that desire to be manifested if you are thinking and acting in a non confident, selfish, judgmental way.</p>
</p>
<p>The easiest way to let go of resistance is to practice self-love. With regular practice, we increase the vibrational energy of love in our life, love flows into our thoughts, into our words and actions and that forces all resistance to flow out.</p>
</p>
<p>How does that happen?</p>
</p>
<p>* Self-Love raises our internal vibrations into a positive field of love, trust and acceptance. </p>
</p>
<p>*Self-love helps in changing our negative self-beliefs which is a powerful resistant force that hinders attraction. Self-Love makes us ready and willing to receive the people we need.</p>
</p>
<p>*Self-Love can move us from a state of powerlessness and hopelessness to greater power, hope and possibilities. </p>
</p>
<p>*Self-Love helps us send attractor vibrations out into the Universe and that’s exactly what we get back too. It helps us become that which we desire and we can attract and fulfil those desires by radiating that energy outward.</p>
</p>
<p>* Self-Love helps make that somersault into the inconceivable, where we have more faith and trust in the universal mind. This allows the right people to arrive in our life space, exactly on schedule.</p>
</p>
<p>We are love. We emanated from pure love. We are connected to this Source of love at all times. Practicing self-love helps us get aligned to this Divine energy and helps us lead meaningful, happy and intentional lives.</p>
</p>
<figure class="wp-block-image size-large is-resized"><img fetchpriority="high" decoding="async" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-27.png" alt="" class="wp-image-6730" width="503" height="503" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-27.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-27.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-27.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-27.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-27.png 1080w" sizes="(max-width: 503px) 100vw, 503px" /></figure>
</p>
</div>
</div>
<div class="tcb_flag" style="display: none"></div>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Self Respect</title>
		<link>https://thehealinggym.com/self-respect/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Wed, 27 Oct 2021 07:51:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[Completeness]]></category>
		<category><![CDATA[Dr. Wayne Dyer]]></category>
		<category><![CDATA[energy of Love]]></category>
		<category><![CDATA[Fear]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[Forgiving]]></category>
		<category><![CDATA[Grateful]]></category>
		<category><![CDATA[inner self]]></category>
		<category><![CDATA[Judge]]></category>
		<category><![CDATA[Louise Hay]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[Self Acceptance]]></category>
		<category><![CDATA[Self Approve]]></category>
		<category><![CDATA[Self critism]]></category>
		<category><![CDATA[Self Discipline]]></category>
		<category><![CDATA[Self Motivate]]></category>
		<category><![CDATA[Stay focused]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[whole]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6723</guid>

					<description><![CDATA[Maya Angelou says that we must undertake to love ourselves as if our life depends on it. And it does. Think of the person who struggles in taking a breath, can he speak, can he smile or help the world? No. Unless he is breathing and well, he will not be able to do any [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Maya Angelou says that we must undertake to love ourselves as if our life depends on it. And it does.</p>



<p>Think of the person who struggles in taking a breath, can he speak, can he smile or help the world? No. Unless he is breathing and well, he will not be able to do any of these.</p>



<p>Self-love is like the very breath that we take. Each breath of self-love invigorates and refreshes us enough to smile authentically, talk with kindness and conviction and do all that we can to make a difference to the world.</p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-26.png" alt="" class="wp-image-6724" width="566" height="566" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-26.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-26.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-26.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-26.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-26.png 1080w" sizes="(max-width: 566px) 100vw, 566px" /></figure>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Enlightened</title>
		<link>https://thehealinggym.com/enlightened/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Wed, 13 Oct 2021 07:34:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Completeness]]></category>
		<category><![CDATA[Dr. Wayne Dyer]]></category>
		<category><![CDATA[Elightened]]></category>
		<category><![CDATA[energy of Love]]></category>
		<category><![CDATA[Fear]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[Forgiving]]></category>
		<category><![CDATA[Go Within]]></category>
		<category><![CDATA[inner self]]></category>
		<category><![CDATA[Judge]]></category>
		<category><![CDATA[Louise Hay]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[Self Acceptance]]></category>
		<category><![CDATA[Self Approve]]></category>
		<category><![CDATA[Self critism]]></category>
		<category><![CDATA[Self Discipline]]></category>
		<category><![CDATA[Self Motivate]]></category>
		<category><![CDATA[Stay focused]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[whole]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6711</guid>

					<description><![CDATA[There are plenty of discussions about spirituality in many of the groups I am in. The world is looking for spirituality for answers to their own challenges as well as world problems. People understand spirituality in different ways. They may seek a mantra, meditations, techniques to delve into spirituality. People also turn to evolved masters, [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>There are plenty of discussions about spirituality in many of the groups I am in. The world is looking for spirituality for answers to their own challenges as well as world problems.</p>



<p>People understand spirituality in different ways. They may seek a mantra, meditations, techniques to delve into spirituality.</p>



<p>People also turn to evolved masters, teachers, ‘Gurus’ and alas sometimes even ‘pseudo gurus’.</p>



<p>There is much talk around concepts like ‘awareness’, ‘peace’, ‘fulfilment’, ‘enlightenment’, ‘consciousness’, ‘God’ and discussions happen at varying lengths and intensities.</p>



<p>Louise Hay gives a very simple way of understanding this profound concept. ‘Enlightenment’ is simply to go within and discover the truth about who we are.</p>



<p>Discovering and ‘realizing’ this truth will put us in touch with our true power, our source energy which will help us take care of ourselves and others in a loving and nurturing way.</p>



<p>Simple and profound at the same time. Spirituality is simply getting in touch with the true ‘Self’.</p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-23.png" alt="" class="wp-image-6712" width="539" height="539" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-23.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-23.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-23.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-23.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-23.png 1080w" sizes="(max-width: 539px) 100vw, 539px" /></figure>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Feel Good about Yourself</title>
		<link>https://thehealinggym.com/feel-good-about-yourself/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 12 Oct 2021 07:25:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Completeness]]></category>
		<category><![CDATA[Dr. Wayne Dyer]]></category>
		<category><![CDATA[energy of Love]]></category>
		<category><![CDATA[Fear]]></category>
		<category><![CDATA[feel good]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[Forgiving]]></category>
		<category><![CDATA[inner self]]></category>
		<category><![CDATA[Judge]]></category>
		<category><![CDATA[Louise Hay]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[Robert Hand]]></category>
		<category><![CDATA[Self Acceptance]]></category>
		<category><![CDATA[Self Approve]]></category>
		<category><![CDATA[Self critism]]></category>
		<category><![CDATA[Self Discipline]]></category>
		<category><![CDATA[Self Motivate]]></category>
		<category><![CDATA[Stay focused]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[whole]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6707</guid>

					<description><![CDATA[Many years back, we were vacationing in Mount Shasta and we went boating on the lake. The beauty of those blue waters with the backdrop of the celestial mountains was simply mesmerizing. I was so thrilled that I took my phone camera and began clicking away. My wise daughter asked me why I was clicking [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Many years back, we were vacationing in Mount Shasta and we went boating on the lake. The beauty of those blue waters with the backdrop of the celestial mountains was simply mesmerizing. I was so thrilled that I took my phone camera and began clicking away.</p>



<p>My wise daughter asked me why I was clicking pictures instead of just enjoying the scene. I replied, I wanted to save the memory. (The truth was also that I wanted to share the memory)</p>



<p>On her suggestion, I kept away my phone and was simply present with the majesty of the mountain and the waters. The effect was electric. No picture could have captured the beautiful feeling I felt then.</p>



<p>Many of us allow our choices to be dictated by, ‘What others think about me’.</p>



<p>We want ‘them’ to think good about us and so we feel the need to show off our talents, our achievements, our vacations, our children, our knowledge. </p>



<p>The social media industry prospers as we continue to give more and more importance to ‘what others think about me’.</p>



<p>But if we sit down for a bit, take a deep breath and allow ourselves to be honest, we know that when we really feel good, we do not need to capture that memory, we do not need to show off or articulate it even.</p>



<p>We are content simply feeling good.</p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-22.png" alt="" class="wp-image-6708" width="612" height="612" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-22.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-22.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-22.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-22.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-22.png 1080w" sizes="(max-width: 612px) 100vw, 612px" /></figure>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Loving Who I am</title>
		<link>https://thehealinggym.com/loving-who-i-am/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Sun, 03 Oct 2021 07:19:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Completeness]]></category>
		<category><![CDATA[Dr. Wayne Dyer]]></category>
		<category><![CDATA[energy of Love]]></category>
		<category><![CDATA[Fear]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[Forgiving]]></category>
		<category><![CDATA[inner self]]></category>
		<category><![CDATA[Judge]]></category>
		<category><![CDATA[Louise Hay]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[Self Acceptance]]></category>
		<category><![CDATA[Self Approve]]></category>
		<category><![CDATA[Self critism]]></category>
		<category><![CDATA[Self Discipline]]></category>
		<category><![CDATA[Self Motivate]]></category>
		<category><![CDATA[Stay focused]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<category><![CDATA[whole]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6702</guid>

					<description><![CDATA[We all have the ‘how I wish’ statements, don’t we? How I wish I could change my husband and make him appreciate me a little more. How I wish I could change my children and make them listen to me more. How I wish I could change the world and reduce the terrible negativities, unhappiness [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>We all have the ‘how I wish’ statements, don’t we?</p>



<p>How I wish I could change my husband and make him appreciate me a little more. </p>



<p>How I wish I could change my children and make them listen to me more.</p>



<p>How I wish I could change the world and reduce the terrible negativities, unhappiness and misery.</p>



<p>But the truth is, we cannot change anyone, the only person we really have power over, is ourselves. </p>



<p>The moment we realize this truth, we allow them to be the way they are and we love them and ourselves a little more.</p>



<p>When we love and accept others the way they are, they might become more receptive to what we say and we can, then, probably influence them in a loving way.</p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-21.png" alt="" class="wp-image-6703" width="578" height="578" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-21.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-21.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-21.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-21.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-21.png 1080w" sizes="(max-width: 578px) 100vw, 578px" /></figure>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Forgiveness</title>
		<link>https://thehealinggym.com/forgiveness/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Fri, 01 Oct 2021 07:05:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6693</guid>

					<description><![CDATA[When we forgive ourselves we set ourselves free. How does that happen? Well. Let’s look at what happens when we do not forgive ourselves. In such a situation, we are constantly feeling guilty, feeling miserable, possibly sad and feeling negative about life. You may say, but how can I ever forgive myself? Look at this [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>When we forgive ourselves we set ourselves free.</p>



<p>How does that happen?</p>



<p>Well. Let’s look at what happens when we do not forgive ourselves. In such a situation, we are constantly feeling guilty, feeling miserable, possibly sad and feeling negative about life.</p>



<p>You may say, but how can I ever forgive myself? Look at this terrible thing I said or did. </p>



<p>Forgiving myself does not condone my offense, it does not make the terrible thing I said or did ok. </p>



<p>Rather, when I forgive myself, I give myself permission to release the negative feelings that I am carrying now. Doing so will enable me to heal and move forward. </p>



<p>When I am healed, I am in a much better position to remedy the wrong I did in a way that is loving both to me as well as the other person.</p>



<p>And so, we say that forgiveness is a gift. It frees us from the past and allows us to live in the present moment.</p>



<figure class="wp-block-image size-large is-resized"><img decoding="async" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-19.png" alt="" class="wp-image-6694" width="514" height="514" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-19.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-19.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-19.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-19.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-19.png 1080w" sizes="(max-width: 514px) 100vw, 514px" /></figure>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Loving Myself</title>
		<link>https://thehealinggym.com/loving-myself/</link>
		
		<dc:creator><![CDATA[Lata Ramesh]]></dc:creator>
		<pubDate>Tue, 31 Aug 2021 05:56:00 +0000</pubDate>
				<category><![CDATA[Self-Love]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Desire]]></category>
		<category><![CDATA[Ego]]></category>
		<category><![CDATA[Forgetting]]></category>
		<category><![CDATA[Forgiving]]></category>
		<category><![CDATA[Louise Hay]]></category>
		<category><![CDATA[Love]]></category>
		<category><![CDATA[Love Yourself]]></category>
		<category><![CDATA[Receive]]></category>
		<category><![CDATA[Shakti]]></category>
		<category><![CDATA[The Healing Gym]]></category>
		<guid isPermaLink="false">http://thehealinggym.com/?p=6652</guid>

					<description><![CDATA[When we treat ourselves without love and respect, we give others permission to do the same. We attract into our lives, people who treat us in the same horrible way that we treat ourselves. On the other hand, when we begin lavishing ourselves with self-love, we begin attracting into our lives people who treat us [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>When we treat ourselves without love and respect, we give others permission to do the same. We attract into our lives, people who treat us in the same horrible way that we treat ourselves.</p>



<p> On the other hand, when we begin lavishing ourselves with self-love, we begin attracting into our lives people who treat us with love and respect, people who see our worth.</p>



<p>Let us try to visualize filling ourselves up with love from the inside out. As opposed to the outside in, which would be relying on other people to make us feel loved. When we fill ourselves up with so much love, it eventually starts to spill out into our relationships with other people. </p>



<p>The more we love ourselves, the more we have the ability to give love to others, and the more love we will attract and receive from others.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="1024" src="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-8.png" alt="" class="wp-image-6653" srcset="https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1024/h:1024/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-8.png 1024w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:300/h:300/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-8.png 300w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:150/h:150/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-8.png 150w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:768/h:768/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-8.png 768w, https://mlklhuphvb5a.i.optimole.com/cb:XtXq.36fea/w:1080/h:1080/q:mauto/f:best/https://thehealinggym.com/wp-content/uploads/2021/11/Self-Love-Q-8.png 1080w" sizes="(max-width: 1000px) 100vw, 1000px" /></figure>
<span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span><span class="tve-leads-two-step-trigger tl-2step-trigger-0"></span>]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
