கடின சிகிச்சைமுறைகளும் இப்போது AI மூலமாக - தமிழ்நாட்டில் ஆரம்பிக்கிறது!

அறிவியல் சாதனையில் முன்னிலை வகிக்கும் ai doctors future!;

Update: 2025-07-11 07:00 GMT

ai doctors future

Click the Play button to listen to article


AI மருத்துவர்கள் வருகிறார்கள் - NativeNews.in /* Enhanced Color Scheme for Higher Engagement */ :root { --nn-primary: #ff6b6b; --nn-secondary: #4ecdc4; --nn-accent: #ffe66d; --nn-success: #06ffa5; --nn-dark: #2d3436; --nn-light: #ffffff; --nn-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Noto Sans Tamil', sans-serif; background: var(--nn-gradient); min-height: 100vh; color: var(--nn-dark); } /* Floating Animation Background */ .nn-infographic { position: relative; max-width: 1000px; margin: 0 auto; padding: 1rem; } .nn-infographic::before { content: ''; position: fixed; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%); animation: float 20s ease-in-out infinite; z-index: -1; } @keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 33% { transform: translate(30px, -30px) rotate(120deg); } 66% { transform: translate(-20px, 20px) rotate(240deg); } } /* Glassmorphism Header */ .nn-header { background: rgba(255, 255, 255, 0.25); backdrop-filter: blur(10px); border-radius: 30px; padding: 2rem; margin-bottom: 2rem; text-align: center; box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37); border: 1px solid rgba(255, 255, 255, 0.18); animation: slideDown 0.8s ease-out; } @keyframes slideDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: translateY(0); } } .nn-emoji-title { font-size: 3rem; margin-bottom: 1rem; animation: bounce 2s ease-in-out infinite; } @keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } } .nn-title { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; background: linear-gradient(45deg, var(--nn-primary), var(--nn-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; line-height: 1.2; } /* Animated Counter Cards */ .nn-stats-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; } .nn-stat-bubble { background: var(--nn-light); border-radius: 50%; width: 180px; height: 180px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .nn-stat-bubble:hover { transform: scale(1.1) rotate(5deg); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); } .nn-stat-bubble::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: var(--nn-gradient); opacity: 0; transition: opacity 0.3s ease; animation: rotate 3s linear infinite; } @keyframes rotate { 100% { transform: rotate(360deg); } } .nn-stat-bubble:hover::before { opacity: 0.3; } .nn-big-number { font-size: 3rem; font-weight: 900; color: var(--nn-primary); z-index: 1; } .nn-stat-text { font-size: 0.9rem; text-align: center; z-index: 1; padding: 0 1rem; } /* Interactive Quiz Section */ .nn-quiz { background: rgba(255, 255, 255, 0.9); border-radius: 20px; padding: 2rem; margin: 2rem 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .nn-quiz-title { font-size: 1.5rem; text-align: center; margin-bottom: 1.5rem; color: var(--nn-primary); } .nn-quiz-options { display: grid; gap: 1rem; } .nn-quiz-btn { background: var(--nn-secondary); color: white; border: none; padding: 1rem; border-radius: 15px; font-size: 1.1rem; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; } .nn-quiz-btn:hover { transform: translateX(10px); box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2); } /* Animated Timeline */ .nn-timeline { position: relative; padding: 2rem 0; } .nn-timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: var(--nn-gradient); transform: translateX(-50%); } .nn-timeline-item { position: relative; padding: 2rem; width: calc(50% - 2rem); background: rgba(255, 255, 255, 0.9); border-radius: 15px; margin-bottom: 2rem; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); animation: fadeInScale 0.8s ease-out backwards; } .nn-timeline-item:nth-child(odd) { margin-left: auto; animation-delay: 0.2s; } .nn-timeline-item:nth-child(even) { animation-delay: 0.4s; } @keyframes fadeInScale { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } } /* Mega Share Button */ .nn-mega-share { background: var(--nn-success); color: var(--nn-dark); padding: 1.5rem 3rem; border-radius: 50px; font-size: 1.3rem; font-weight: 700; border: none; cursor: pointer; margin: 2rem auto; display: block; box-shadow: 0 10px 30px rgba(6, 255, 165, 0.4); transition: all 0.3s ease; animation: pulse 2s ease-in-out infinite; } @keyframes pulse { 0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(6, 255, 165, 0.4); } 50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(6, 255, 165, 0.6); } } .nn-mega-share:hover { transform: scale(1.1); background: #00ff88; } /* Fun Facts Carousel */ .nn-facts { background: var(--nn-accent); border-radius: 20px; padding: 2rem; margin: 2rem 0; text-align: center; position: relative; overflow: hidden; } .nn-fact-item { font-size: 1.2rem; font-weight: 600; color: var(--nn-dark); animation: slideText 10s linear infinite; } @keyframes slideText { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } } /* Mobile Responsive */ @media (max-width: 768px) { .nn-timeline-line { left: 20px; } .nn-timeline-item { width: calc(100% - 3rem); margin-left: 3rem !important; } .nn-stat-bubble { width: 150px; height: 150px; } .nn-big-number { font-size: 2.5rem; } } /* Accessibility */ .nn-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } /* Dark Mode Support */ @media (prefers-color-scheme: dark) { body { background: #1a1a2e; } .nn-header, .nn-quiz, .nn-timeline-item { background: rgba(30, 30, 45, 0.9); color: white; } }
🤖💉🏥

AI Doctor உங்க பக்கத்துல தான் இருக்கார்!

24x7 Super Specialist - உங்க Mobile-லயே! 📱✨

85%
AI துல்லியம்
2
நிமிட X-ray
24x7
எப்போதும்
1000+
AI Centers

🤔 நீங்க Ready-யா AI Healthcare-க்கு?

🏥 இப்போ (2024)

Chennai, Coimbatore-ல் AI pilot projects

🚀 2025

அனைத்து District Hospitals-லும் AI

🌟 2026

கிராமங்களில் AI Health Kiosks

🎯 2027

100% AI Healthcare Coverage!

💡 Fun Fact: AI ஒரு நாளைக்கு 1000+ X-rays படிக்கும்! | 🎯 கிராமத்துல இருந்தும் Apollo Doctor consult பண்ணலாம்! | 🚑 Emergency-ல AI 30 seconds-ல decision எடுக்கும்!

🔥 NativeNews.in - Tamil Nadu's AI News Leader 🔥


Tags:    

Similar News