చిత్రం న్యూస్, ఆదిలాబాద్: ఆదిలాబాద్ జిల్లా కాంగ్రెస్ కమిటీలో డీసీసీ కార్యదర్శిగా నియమితులైన నార్నూర్ వాసి బానోత్ ప్రణిత సూరజ్కు లంబాడా జేఏసీ జిల్లా నాయకులు ఆత్మరాం బానోత్ సన్మానం చేశారు. ఆదిలాబాద్ పట్టణంలోని వారి స్వగృహంలో మర్యాదపూర్వకంగా కలిసి పూల బొకే అందించి, శాలువాతో సత్కరించారు. ఈ సందర్భంగా ఆత్మరాం బానోత్ మాట్లాడుతూ.. భవిష్యత్తులో మరిన్ని ఉన్నత పదవులు పొందాలని ఆకాంక్షించారు. అన్ని వర్గాల ప్రజలకు ప్రభుత్వ పథకాలు అందేలా సేవలు అందించాలని సూచించారు. ఈ కార్యక్రమంలో మాధస్తు మహేందర్, కావేటి మోహన్, ఆడే రఘనాథ్, భగవాండ్లు, గజానంద్ తదితరులు శుభాకాంక్షలు తెలిపారు.
#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; } }
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';
}

