Chitram news
Newspaper Banner
Date of Publish : 27 July 2025, 1:08 pm Editor : Chitram news

రాంటెక్ ఆలయాన్ని సందర్శించిన మాజీ మంత్రి జోగురామన్న

రాంటెక్ ఆలయంలో మాజీ మంత్రి జోగురామన్న

చిత్రం న్యూస్, ఆదిలాబాద్: మహారాష్ట్రలోని నాగ్‌పూర్ లో 12వ శతాబ్దానికి చెందిన అతి పురాతన రాంటెక్ ఆలయాన్ని మాజీ మంత్రి జోగురామన్న సందర్శించారు. ఆలయంలో ప్రత్యేక పూజలు నిర్వహించిన అనంతరం ఆలయ ప్రాముఖ్యతను అడిగి తెలుసుకున్నారు. వేద పండితుల ఆశీర్వచనాలను స్వీకరించారు. ప్రత్యేక పూజలను నిర్వహించారు. అక్కడ ఏర్పాటు చేసిన అన్నదాన కార్యక్రమంలో పాల్గొన్నారు. భక్తులకు భోజనం వడ్డించారు. అతి పురాతన ఆలయాన్ని దర్శించుకోవడం ఎంతో సంతోషంగా ఉందని ఈ సందర్భంగా మాజీ మంత్రి జోగురామన్న తెలిపారు. హిందూ ధర్మ ఆలయంగా రాం టెక్ నిర్మాణం ఎంతో ఆకర్షణీయంగా ఉందన్నారు. శ్రీ రాముడి ఆశీస్సులతో ప్రజలంతా సుభిక్షంగా జీవించాలని ఆకాంక్షించారు. కారింగుల ప్రణయ్ ఉన్నారు.

#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'; }