மருத்துவத்திலிருந்து கல்வி வரை - AI மாற்றும் உலகம் - நீங்களும் தெரிந்து கொள்ளுங்கள்!

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

Update: 2025-08-14 07:00 GMT
Click the Play button to listen to article


AI Tools ஒரே Website-ல் - Interactive Infographic | NativeNews /* Critical CSS - Inline for performance */ :root { --nn-primary: #8aa4e7; --nn-accent: #f21218; --nn-dark: #1a1a2e; --nn-light: #f5f5f5; --nn-success: #22c55e; --nn-warning: #f59e0b; --nn-gradient: linear-gradient(135deg, var(--nn-primary) 0%, #6b87d6 100%); --nn-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); --nn-radius: 12px; --nn-transition: all 0.3s ease; } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Noto Sans Tamil', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: var(--nn-dark); background-color: var(--nn-light); font-size: 16px; } /* Container */ .nn-infographic { max-width: 1200px; margin: 0 auto; padding: 20px; background: white; border-radius: var(--nn-radius); box-shadow: var(--nn-shadow); } /* Header Section */ .nn-header { text-align: center; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 3px solid var(--nn-primary); } .nn-title { font-size: clamp(24px, 5vw, 42px); color: var(--nn-dark); font-weight: 700; margin-bottom: 10px; line-height: 1.3; } .nn-subtitle { font-size: clamp(18px, 3vw, 24px); color: #666; margin-bottom: 20px; } .nn-timestamp { font-size: 14px; color: #999; display: flex; align-items: center; justify-content: center; gap: 5px; } /* Table of Contents */ .nn-toc { background: var(--nn-gradient); color: white; padding: 20px; border-radius: var(--nn-radius); margin-bottom: 40px; } .nn-toc h2 { font-size: 20px; margin-bottom: 15px; text-align: left; } .nn-toc-list { list-style: none; counter-reset: toc-counter; } .nn-toc-list li { counter-increment: toc-counter; margin-bottom: 10px; padding-left: 30px; position: relative; text-align: left; } .nn-toc-list li::before { content: counter(toc-counter); position: absolute; left: 0; top: 0; background: white; color: var(--nn-primary); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 14px; } .nn-toc-list a { color: white; text-decoration: none; transition: var(--nn-transition); } .nn-toc-list a:hover { text-decoration: underline; opacity: 0.9; } /* Key Stats Grid */ .nn-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; } .nn-stat-card { background: var(--nn-light); border: 2px solid #e5e7eb; border-radius: var(--nn-radius); padding: 25px; text-align: center; transition: var(--nn-transition); position: relative; overflow: hidden; } .nn-stat-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); border-color: var(--nn-primary); } .nn-stat-icon { width: 60px; height: 60px; margin: 0 auto 15px; background: var(--nn-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; } .nn-stat-icon svg { width: 30px; height: 30px; fill: white; } .nn-stat-number { font-size: 36px; font-weight: 700; color: var(--nn-primary); margin-bottom: 5px; display: block; } .nn-stat-label { font-size: 16px; color: #666; text-align: left; } /* Cost Comparison Section */ .nn-comparison { background: linear-gradient(to right, #fee2e2 50%, #dcfce7 50%); border-radius: var(--nn-radius); padding: 30px; margin-bottom: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; position: relative; } .nn-comparison::after { content: "VS"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 24px; color: var(--nn-dark); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); z-index: 10; } .nn-before, .nn-after { text-align: center; padding: 20px; } .nn-before { background: white; border-radius: var(--nn-radius); border: 2px solid #ef4444; } .nn-after { background: white; border-radius: var(--nn-radius); border: 2px solid #22c55e; } .nn-comparison-title { font-size: 20px; font-weight: 600; margin-bottom: 20px; text-align: left; } .nn-before .nn-comparison-title { color: #ef4444; } .nn-after .nn-comparison-title { color: #22c55e; } .nn-tool-list { list-style: none; margin-bottom: 20px; text-align: left; } .nn-tool-list li { padding: 8px 0; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e5e7eb; } .nn-tool-list li:last-child { border-bottom: none; } .nn-total-cost { font-size: 32px; font-weight: 700; margin-top: 20px; } .nn-before .nn-total-cost { color: #ef4444; } .nn-after .nn-total-cost { color: #22c55e; } /* Platform Cards */ .nn-platforms { margin-bottom: 40px; } .nn-section-title { font-size: 28px; font-weight: 600; margin-bottom: 25px; color: var(--nn-dark); text-align: left; display: flex; align-items: center; gap: 10px; } .nn-section-title::before { content: ""; width: 5px; height: 30px; background: var(--nn-accent); border-radius: 3px; } .nn-platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; } .nn-platform-card { background: white; border: 2px solid #e5e7eb; border-radius: var(--nn-radius); padding: 25px; transition: var(--nn-transition); position: relative; } .nn-platform-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); border-color: var(--nn-primary); } .nn-platform-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; } .nn-platform-logo { width: 50px; height: 50px; background: var(--nn-gradient); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: bold; color: white; font-size: 20px; } .nn-platform-name { font-size: 22px; font-weight: 600; color: var(--nn-dark); } .nn-platform-features { list-style: none; margin-bottom: 20px; } .nn-platform-features li { padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; text-align: left; } .nn-platform-features li::before { content: "✓"; color: var(--nn-success); font-weight: bold; font-size: 18px; flex-shrink: 0; } .nn-platform-price { background: var(--nn-gradient); color: white; padding: 15px; border-radius: 8px; text-align: center; font-size: 18px; font-weight: 600; } /* Action Steps */ .nn-action-steps { background: var(--nn-light); border-radius: var(--nn-radius); padding: 30px; margin-bottom: 40px; } .nn-steps-list { list-style: none; counter-reset: step-counter; } .nn-steps-list li { counter-increment: step-counter; margin-bottom: 20px; padding-left: 50px; position: relative; min-height: 60px; display: flex; align-items: center; text-align: left; } .nn-steps-list li::before { content: counter(step-counter, decimal); position: absolute; left: 0; top: 50%; transform: translateY(-50%); background: var(--nn-accent); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 18px; } /* Share Section */ .nn-share { background: var(--nn-gradient); color: white; padding: 25px; border-radius: var(--nn-radius); text-align: center; margin-bottom: 40px; } .nn-share-title { font-size: 20px; margin-bottom: 15px; } .nn-share-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; } .nn-share-btn { background: white; color: var(--nn-primary); padding: 12px 24px; border-radius: 25px; text-decoration: none; font-weight: 600; transition: var(--nn-transition); display: flex; align-items: center; gap: 8px; } .nn-share-btn:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); } .nn-share-btn.whatsapp { background: #25d366; color: white; } /* Savings Calculator */ .nn-calculator { background: white; border: 3px solid var(--nn-primary); border-radius: var(--nn-radius); padding: 30px; margin-bottom: 40px; } .nn-calc-title { font-size: 24px; font-weight: 600; margin-bottom: 25px; text-align: center; color: var(--nn-primary); } .nn-calc-result { background: var(--nn-gradient); color: white; padding: 30px; border-radius: var(--nn-radius); text-align: center; margin-top: 20px; } .nn-calc-savings { font-size: 48px; font-weight: 700; margin-bottom: 10px; } .nn-calc-desc { font-size: 18px; } /* Call to Action */ .nn-cta { background: var(--nn-accent); color: white; padding: 40px; border-radius: var(--nn-radius); text-align: center; margin-top: 40px; } .nn-cta-title { font-size: 32px; font-weight: 700; margin-bottom: 20px; } .nn-cta-desc { font-size: 20px; margin-bottom: 30px; line-height: 1.5; } .nn-cta-button { background: white; color: var(--nn-accent); padding: 18px 40px; border-radius: 30px; text-decoration: none; font-size: 20px; font-weight: 700; display: inline-block; transition: var(--nn-transition); } .nn-cta-button:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); } /* Progress Bar Animation */ @keyframes fillProgress { from { width: 0; } to { width: var(--progress); } } .nn-progress { background: #e5e7eb; height: 30px; border-radius: 15px; overflow: hidden; margin: 10px 0; } .nn-progress-bar { background: var(--nn-gradient); height: 100%; border-radius: 15px; animation: fillProgress 1.5s ease-out forwards; display: flex; align-items: center; justify-content: flex-end; padding-right: 10px; color: white; font-weight: bold; } /* Responsive Design */ @media (max-width: 768px) { .nn-infographic { padding: 15px; } .nn-title { font-size: 24px; } .nn-subtitle { font-size: 18px; } .nn-stats-grid { grid-template-columns: 1fr; gap: 15px; } .nn-comparison { grid-template-columns: 1fr; background: white; padding: 20px; } .nn-comparison::after { display: none; } .nn-before { margin-bottom: 20px; } .nn-platform-grid { grid-template-columns: 1fr; } .nn-total-cost { font-size: 28px; } .nn-calc-savings { font-size: 36px; } .nn-cta { padding: 30px 20px; } .nn-cta-title { font-size: 24px; } .nn-cta-desc { font-size: 16px; } } /* Print Styles */ @media print { .nn-share, .nn-cta-button { display: none; } .nn-infographic { box-shadow: none; margin: 0; } body { background: white; } } /* Dark Mode Support */ @media (prefers-color-scheme: dark) { :root { --nn-light: #1a1a2e; --nn-dark: #f5f5f5; } body { background-color: #0f0f23; } .nn-infographic { background: #1a1a2e; color: #f5f5f5; } .nn-stat-card, .nn-platform-card { background: #25253d; border-color: #3a3a5a; } .nn-before, .nn-after { background: #25253d; } } /* Reduced Motion */ @media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } } /* Focus Styles for Accessibility */ a:focus, button:focus { outline: 3px solid var(--nn-accent); outline-offset: 2px; } /* Skip to Content Link */ .skip-link { position: absolute; top: -40px; left: 0; background: var(--nn-accent); color: white; padding: 8px; text-decoration: none; border-radius: 0 0 8px 0; } .skip-link:focus { top: 0; }

எல்லா AI Tools-உம் ஒரே Website-ல் - உங்க Pocket-ல் AI Universe! 🚀

10 AI subscription-க்கு காசு கொடுக்குற நாள் முடிஞ்சது!

₹8,000+

Average மாச செலவு AI tools-க்கு

15+

Different AI tools professionals use பண்றாங்க

70%

Cost reduction unified platforms மூலம்

3X

Productivity increase ஒரே platform-ல்

❌ முன்பு - Multiple Subscriptions

  • ChatGPT Plus $20/month
  • Claude Pro $20/month
  • Midjourney $10/month
  • Perplexity Pro $20/month
  • Grammarly ₹1000/month
100%

₹8,000+/month

✅ இப்போ - Unified Platform

  • All AI Models ✓ Included
  • Image Generation ✓ Included
  • Code Assistant ✓ Included
  • Research Tools ✓ Included
  • Writing Assistant ✓ Included
30%

₹2,500/month

🏆 Top All-in-One AI Platforms

Poe by Quora

  • GPT-4, Claude, Stable Diffusion access
  • Custom bots create பண்ணலாம்
  • Free tier available
  • Mobile app உண்டு
Free to ₹1,600/month

You.com

  • Search + AI chat combo
  • Real-time internet access
  • Code generation included
  • Privacy-focused
Free to ₹1,200/month

Perplexity Labs

  • Experimental models test
  • Research-க்கு perfect
  • Citation features
  • Academic use discount
Free to ₹1,600/month

💡 Benefits - உங்களுக்கு என்ன லாபம்?

💰 காசு மிச்சம்

Normal-ஆ ₹10,000+ செலவு பண்ற AI tools, இப்போ ₹2,000-3,000-க்குள்ள manage பண்ணலாம்!

⏱️ Time மிச்சம்

10 tabs, 10 passwords... அந்த கஷ்டம் இல்ல. One click-ல் switch between models!

🔄 Easy Comparison

Same prompt-ஐ different AI models-ல் try பண்ணி best output choose பண்ணலாம்!

🎓 Student Benefits

IIT Madras, Anna University, மற்றும் JKKN students projects-ல் better results achieve பண்றாங்க!

🚀 Action Plan - இன்னிக்கே Start பண்ணுங்க!

  1. Free trials முதல்ல try பண்ணுங்க - Risk இல்லாம test பண்ணலாம்
  2. உங்க needs calculate பண்ணுங்க - Chat, Image, Coding எது முக்கியம்?
  3. Compare features - எந்த platform உங்களுக்கு perfect match?
  4. Student discount check பண்ணுங்க - 50% வரை save பண்ணலாம்!
  5. Team plans பார்க்கவும் - Jicate Solutions போன்ற companies bulk discount வாங்குறாங்க

💸 உங்க Savings Calculate பண்ணுங்க!

₹5,500

மாசம் save பண்ணலாம் unified platform use பண்ணினா!

வருஷத்துக்கு = ₹66,000 savings! 💰

இந்த Article பயனுள்ளதா இருந்தா Share பண்ணுங்க! 📢

Ready to Save ₹7000/month? 🚀

உங்க AI productivity journey-ஐ இன்னிக்கே start பண்ணுங்க!
Free trials available - No risk!

Full Guide படிக்க இங்கே Click பண்ணுங்க!

Data Source: Industry Reports 2024 | NativeNews.in Research Team

© 2024 NativeNews.in - Tamil Nadu's Premier AI News Platform


Tags:    

Similar News