Chitram news
Newspaper Banner
Date of Publish : 03 April 2026, 4:00 pm Editor : Chitram news

భక్తిశ్రద్ధలతో గుడ్ ఫ్రైడే ఆరాధనలు

చిత్రం న్యూస్, దండేపల్లి: దండేపల్లి మండలం వెంకటాపూర్ గ్రామంలోని CSI వెస్లీ చర్చి వెంకటాపూర్ తో పాటుగా ఇతర చర్చిలలో గుడ్ ఫ్రైడే సందర్భంగా గుడ్ ఫ్రైడే ఆరాధనలు ఘనంగా నిర్వహించారు. యేసు క్రీస్తు శిలువ త్యాగాన్ని స్మరించుకుంటూ ఉదయం నుంచే విశ్వాసులు చర్చిలకు చేరుకొని ప్రార్థనలు, కీర్తనలు చేశారు. శిలువ మార్గం ఆచరణతో పాటు ఉపవాస దీక్షలు పాటిస్తూ భక్తులు ఆధ్యాత్మికంగా నిమగ్నమయ్యారు.

ఈ ఆరాధనలో Rev. S. వరప్రసాద రావు దైవ సందేశం అందించారు. క్రీస్తు శిలువపై చేసిన త్యాగం మనుషుల పాపక్షమకు మార్గమని, ప్రేమ, క్షమ, త్యాగం జీవన విధానంగా తీసుకోవాలని ఆయన పేర్కొన్నారు. సమాజంలో శాంతి, సహనం, పరస్పర గౌరవం పెంపొందించాలని పిలుపునిచ్చారు. మధ్యాహ్నం ప్రత్యేక ప్రార్థనలో క్రీస్తు శిలువపై చివరి ఏడు మాటలపై బోధనలు నిర్వహించారు. విశ్వాసులు నిశ్శబ్దంగా ప్రార్థనలు చేస్తూ భక్తి భావాన్ని వ్యక్తం చేశారు.

#mobileMenu { display: none; position: fixed; top: 0; left: 0; height: 100%; width: 240px; background: #fff; box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2); z-index: 99999; padding: 20px; }

#mobileMenu a { display: block; padding: 12px 10px; color: #000; text-decoration: none; font-weight: bold; border-bottom: 1px solid #ddd; }

#mobileMenuClose { font-size: 20px; font-weight: bold; cursor: pointer; display: block; margin-bottom: 20px; }

@media (max-width: 768px) { #horizontalScrollMenu { font-size: 14px; } }

✖ Close
హోం

const header = document.getElementById('customStickyHeader'); const placeholder = document.createElement('div'); let isFixed = false;

window.addEventListener('scroll', function () { if (window.scrollY > 10 && !isFixed) { header.style.position = 'fixed'; header.style.top = '0'; header.style.left = '0'; header.style.right = '0'; header.style.zIndex = '9999'; header.style.boxShadow = '0 2px 5px rgba(0,0,0,0.2)'; placeholder.style.height = header.offsetHeight + 'px'; header.parentNode.insertBefore(placeholder, header); isFixed = true; } else if (window.scrollY <= 10 && isFixed) { header.style.position = 'relative'; header.style.boxShadow = 'none'; if (placeholder.parentNode) { placeholder.parentNode.removeChild(placeholder); } isFixed = false; } }); function toggleMenu() { const menu = document.getElementById('mobileMenu'); menu.style.display = menu.style.display === 'block' ? 'none' : 'block'; }