இல்லை என்று சொன்ன மருத்துவ வசதி, இப்போது AI மூலம் உங்கள் கைபேசியில்!

வாசிக்க நேரம் இல்லையா? செய்தியைக் கேளுங்கள்;

Update: 2025-07-22 10:30 GMT

the use of ai in healthcare

Click the Play button to listen to article


AI Doctor வந்துட்டாரு! Healthcare Revolution | NativeNews /* CSS Variables */ :root { --primary-blue: #8aa4e7; --accent-red: #f21218; --dark-blue: #5670a8; --success-green: #27ae60; --light-blue: #e3f2fd; --orange: #ff9800; --purple: #9c27b0; --text-primary: #1a1a1a; --text-secondary: #555; --bg-light: #f8f9fa; --bg-white: #ffffff; --shadow: 0 2px 10px rgba(0,0,0,0.1); --transition: all 0.3s ease; --gradient-health: linear-gradient(135deg, #42a5f5 0%, #66bb6a 100%); --gradient-tech: linear-gradient(135deg, #8aa4e7 0%, #5670a8 100%); } /* Dark Mode */ @media (prefers-color-scheme: dark) { :root { --text-primary: #f0f0f0; --text-secondary: #ccc; --bg-light: #1a1a1a; --bg-white: #2a2a2a; --light-blue: #1e3a5f; } } /* Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Hind Tamil', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(--text-primary); background-color: var(--bg-light); } /* Container */ .nn-infographic { max-width: 1200px; margin: 0 auto; padding: 20px; background-color: var(--bg-white); } /* Hero Section */ .hero-section { text-align: center; padding: 40px 20px; background: var(--gradient-health); color: white; border-radius: 15px; margin-bottom: 30px; position: relative; overflow: hidden; } .hero-section::before { content: '🏥'; position: absolute; font-size: 200px; opacity: 0.1; top: -50px; right: -30px; animation: pulse 3s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } } .hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 15px; font-weight: 700; position: relative; z-index: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); } .hero-subtitle { font-size: clamp(1.1rem, 2.5vw, 1.4rem); position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } /* TOC Section */ .toc-section { background: var(--light-blue); padding: 25px; margin: 30px 0; border-radius: 12px; border-left: 5px solid var(--primary-blue); } .toc-title { font-size: 1.5rem; color: var(--text-primary); margin-bottom: 20px; text-align: left; font-weight: 600; } .toc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; } .toc-item { background: var(--bg-white); padding: 15px; border-radius: 8px; display: flex; align-items: center; gap: 12px; transition: var(--transition); cursor: pointer; border: 2px solid transparent; } .toc-item:hover { transform: translateX(5px); border-color: var(--primary-blue); box-shadow: var(--shadow); } .toc-icon { width: 35px; height: 35px; background: var(--primary-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; } /* Key Stats */ .stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; } .stat-card { background: var(--bg-white); padding: 25px; border-radius: 12px; text-align: center; box-shadow: var(--shadow); position: relative; overflow: hidden; border-top: 4px solid; } .stat-card:nth-child(1) { border-top-color: var(--success-green); } .stat-card:nth-child(2) { border-top-color: var(--primary-blue); } .stat-card:nth-child(3) { border-top-color: var(--orange); } .stat-card:nth-child(4) { border-top-color: var(--purple); } .stat-icon { display: inline-block; width: 60px; height: 60px; margin-bottom: 15px; } .stat-number { font-size: 2.5rem; font-weight: 700; margin-bottom: 5px; background: var(--gradient-tech); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .stat-label { color: var(--text-secondary); font-size: 1rem; } /* Services Section */ .services-section { margin: 40px 0; } .section-header { font-size: 1.8rem; color: var(--text-primary); margin-bottom: 25px; text-align: left; display: flex; align-items: center; gap: 10px; padding-bottom: 10px; border-bottom: 3px solid var(--primary-blue); } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; } .service-card { background: var(--bg-white); border-radius: 12px; padding: 25px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; } .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--gradient-health); } .service-card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.15); } .service-icon { font-size: 2.5rem; margin-bottom: 15px; } .service-title { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; } .service-desc { color: var(--text-secondary); font-size: 0.95rem; } /* Cost Comparison */ .comparison-section { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); padding: 30px; border-radius: 15px; margin: 40px 0; } .comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 25px; } .comparison-card { background: var(--bg-white); padding: 25px; border-radius: 12px; text-align: center; position: relative; } .comparison-card.traditional { border: 3px solid var(--accent-red); } .comparison-card.ai-powered { border: 3px solid var(--success-green); } .comparison-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 20px; } .traditional .comparison-title { color: var(--accent-red); } .ai-powered .comparison-title { color: var(--success-green); } .cost-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; } .cost-item:last-child { border-bottom: none; } .cost-label { color: var(--text-secondary); } .cost-value { font-weight: 700; font-size: 1.1rem; } /* Progress Bars */ .progress-section { margin: 40px 0; } .progress-item { margin-bottom: 25px; } .progress-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; } .progress-title { font-weight: 600; color: var(--text-primary); } .progress-value { font-weight: 700; color: var(--primary-blue); } .progress-bar { width: 100%; height: 12px; background: #e0e0e0; border-radius: 6px; overflow: hidden; } .progress-fill { height: 100%; background: var(--gradient-health); border-radius: 6px; transition: width 2s ease-out; position: relative; } /* Initiatives Grid */ .initiatives-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 25px; } .initiative-card { background: var(--bg-white); padding: 20px; border-radius: 10px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-left: 4px solid var(--primary-blue); } .initiative-card:hover { transform: translateX(5px); } .initiative-icon { font-size: 2rem; margin-bottom: 10px; } /* CTA Section */ .cta-section { background: var(--gradient-tech); color: white; padding: 40px; border-radius: 15px; text-align: center; margin: 40px 0; position: relative; overflow: hidden; } .cta-section::after { content: '💊'; position: absolute; font-size: 150px; opacity: 0.1; bottom: -30px; left: -30px; animation: float 4s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } .cta-title { font-size: 2rem; margin-bottom: 20px; position: relative; z-index: 1; } .cta-list { list-style: none; max-width: 600px; margin: 0 auto 20px; text-align: left; } .cta-list li { padding: 10px 0; display: flex; align-items: center; gap: 10px; } .cta-list li::before { content: '✓'; font-size: 1.5rem; color: #90ee90; } /* Social Share */ .social-section { display: flex; gap: 15px; justify-content: center; margin: 30px 0; flex-wrap: wrap; } .share-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 8px; text-decoration: none; color: white; font-weight: 500; transition: var(--transition); } .share-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 20px rgba(0,0,0,0.2); } .whatsapp-btn { background: #25D366; } .facebook-btn { background: #1877F2; } .twitter-btn { background: #1DA1F2; } /* Links */ a { color: var(--primary-blue); text-decoration: none; font-weight: 600; } a:hover { text-decoration: underline; } /* SVG Icons */ .icon-hospital { fill: var(--accent-red); } .icon-phone { fill: var(--primary-blue); } .icon-money { fill: var(--success-green); } .icon-clock { fill: var(--orange); } /* Mobile Responsive */ @media (max-width: 768px) { .nn-infographic { padding: 15px; } .hero-section { padding: 30px 15px; } .hero-section::before { font-size: 120px; } .stats-container { grid-template-columns: 1fr; } .comparison-grid { grid-template-columns: 1fr; gap: 20px; } .services-grid { grid-template-columns: 1fr; } .cta-section { padding: 30px 20px; } .section-header { font-size: 1.5rem; } } /* Print Styles */ @media print { .social-section { display: none; } body { background: white; } .hero-section { background: none; color: var(--text-primary); border: 2px solid var(--primary-blue); } } /* Animations */ .fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.6s ease-out forwards; } @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } } /* Counter Animation */ @keyframes countUp { from { opacity: 0; transform: scale(0.5); } to { opacity: 1; transform: scale(1); } } .stat-number { animation: countUp 1s ease-out; } /* Reduced Motion */ @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } } /* Accessibility */ .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

AI Doctor வந்துட்டாரு! Hospital-க்கு போகாம App-லயே Treatment வாங்கலாம் – Healthcare Revolution நடக்குது! 🏥🤖💊

நம்ம அம்மா "தலைவலி"னா கூட Apollo hospital-க்கு அழைச்சுட்டு போவாங்க. இப்போ AI doctor phone-லயே இருந்து diagnosis சொல்லிடுவாரு!

2 Min
AI Diagnosis Time
₹0-50
AI Consultation
24/7
Available Always
99%
Scan Accuracy

🤖 AI Doctor என்ன லாம் பண்ண முடியும்? – WhatsApp Chat மாதிரி Easy!

🔍

Symptom Checker

Google-ல search பண்ற மாதிரி, symptoms சொன்னா disease suggest பண்ணும்

🩻

X-Ray/Scan Analysis

99% accuracy-ல tumors, fractures detect பண்ணும்

💊

Medicine Reminder

Paati diabetes tablet மறந்துடுவாங்களா? AI தான் remind பண்ணும்!

🧠

Mental Health Support

24/7 depression, anxiety support via chatbot

📊 AI Healthcare Adoption in Tamil Nadu

Government Hospitals 45%
Private Hospitals 78%
Rural Health Centers 32%
Patient Satisfaction 85%

💰 Traditional vs AI Healthcare Cost

Traditional Healthcare

Doctor Visit ₹500-1000
Tests ₹1500-3000
Specialist ₹1500+
Total
₹3500-5500

AI Healthcare

AI Consultation ₹0-50
AI Analysis ₹50-100
Second Opinion
₹200-500
Total ₹250-650

🏥 Tamil Nadu AI Health Initiatives

📱

E-Sanjeevani App

Rural telemedicine

🎗️

AI Cancer Screening

Early detection camps

🧠

Tamil Mental Health Bot

24/7 local support

🤰

Pregnancy Care AI

Nutrition & reminders

Apollo Hospitals, Fortis எல்லாம் AI integrate பண்ணிட்டாங்க. IIT Madras researchers, JKKN medical students research பண்ணிக்கிட்டே இருக்காங்க. Google Health India, Jicate Solutions மாதிரி companies-ம் AI doctor systems develop பண்றாங்க.

🎯 Future Ready ஆகுங்க, AI Doctor-ஐ Friend ஆக்குங்க!

  • Emergency-க்கு hospital, Daily health-க்கு AI
  • Second opinion-க்கு AI super useful
  • Time & money save பண்ண AI
  • Rural areas-க்கு blessing

உங்க paati-க்கு AI health app install பண்ணி குடுங்க.
Fear இல்லாம technology-ஐ embrace பண்ணுங்க.
The future of healthcare is in your pocket! 🏥📱💪

© 2025 NativeNews.in | AI-Powered Tamil News


Tags:    

Similar News