Chitram news
Newspaper Banner
Date of Publish : 02 April 2026, 1:04 pm Editor : Chitram news

ఘనంగా సర్ధార్ పాపన్న గౌడ్ వర్ధంతి 

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

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