myamericandoctor.com

We Put Our Patients First * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background-color: #f5f5f5; color: #333; } .container { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 50px 20px; max-width: 1200px; margin: 0 auto; } h1 { color: #0077A7 !important; font-size: 36px !important; font-weight: bold; margin-bottom: 30px; text-align: center; /* Ensure the heading is centered */ width: 100%; } .features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; width: 100%; justify-items: center; /* Center the items inside the grid */ margin-top: 20px; } .feature { background-color: white; border-radius: 10px; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); padding: 20px; text-align: center; transition: transform 0.3s ease; display: flex; flex-direction: column; align-items: center; max-width: 200px; width: 100%; } .feature img { width: 70px; height: auto; margin-bottom: 20px; } .feature p { color: #0077A7; font-size: 1.1em; font-weight: bold; } .feature:hover { transform: scale(1.05); } /* Media Queries for Responsiveness */ @media (max-width: 1024px) { .container { padding: 40px 20px; } h1 { font-size: 24px !important; } .features { grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */ gap: 20px; } .feature { max-width: 250px; padding: 15px; } } @media (max-width: 768px) { h1 { font-size: 20px !important; } .features { grid-template-columns: repeat(2, 1fr); /* 2 columns on small devices */ gap: 20px; } .feature { padding: 15px; } } @media (max-width: 480px) { .container { padding: 30px 10px; } h1 { font-size: 18px !important; margin: 20px 0; padding: 10px; border: 2px solid #0077A7; border-radius: 5px; background-color: #ffffff; width: 100%; text-align: center; } .features { grid-template-columns: 1fr; /* Single column on mobile */ gap: 20px; } .feature img { width: 50px; } .feature p { font-size: 1em; } }

We put our patients first

Consult with U.S. trained physicians

Consult with U.S. trained physicians

Guaranteed response within 72 hours

Guaranteed response within 72 hours

Affordable pricing of $149 per appointment

Affordable pricing of $149 per appointment

Experience collaborative care

Experience collaborative care

Meet Our Specialists

          35+ specialists across 20+ specialties to address your health concerns with expert care.

Card Slider (Show 4 Cards at a Time) * { box-sizing: border-box; padding: 0; margin: 0; } body { font-family: Arial, sans-serif; } /* Slider Container */ .slider-container { width: 100%; max-width: 2400px; overflow: hidden; margin: 20px auto; padding-right: 60px; position: relative; } /* The Slider, which holds the cards */ .slider { display: flex; transition: transform 0.5s ease; width: calc(100% * 8/ 8); /* Adjust for 6 cards, showing 4 at a time */ } /* Each card inside the slider */ .card { flex: 0 0 25%; /* Each card takes up 25% of the container (4 cards fully visible at a time) */ padding: 20px; text-align: center; background-color: #f9f9f9; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); border-radius: 10px; margin: 10px; display: flex; flex-direction: column; justify-content: space-between; align-items: center; } /* Image Styling */ .card img { width: 100%; height: auto; border-radius: 10px; } /* Text and Button */ .card h3 { margin: 10px 0; font-size: 20px; } .card p { font-size: 14px; margin-bottom: 15px; } .card button { padding: 15px 15px; background-color: #007bff; color: white; border: none; cursor: pointer; border-radius: 5px; } .card button:hover { background-color: #0056b3; } /* Controls for previous and next buttons */ .controls { display: flex; justify-content: space-between; position: absolute; top: 50%; width: 100%; transform: translateY(-50%); } .prev, .next { cursor: pointer; background-color: rgba(0, 0, 0, 0.5); color: white; padding: 10px 20px; border: none; font-size: 18px; border-radius: 35px; position: absolute; } .prev { left: 10px; } .next { right: 10px; } .prev:hover, .next:hover { background-color: rgba(0, 0, 0, 0.8); } /* Responsive design */ @media (max-width: 768px) { .card { flex: 0 0 50%; /* Two cards per slide on smaller screens */ } .slider { width: calc(100% * 8/ 8); /* Adjust the width to show 2 cards */ } } @media (max-width: 480px) { .card { flex: 0 0 100%; /* One card per slide on very small screens */ } .slider { width: calc(100% * 8 / 8); /* Adjust the width to show 1 card */ } }
Image 1

Dr. Keerthi Narisetty MD

Specialty: Heart Failure and Transplant Cardiology

Image 2

Dr. Daniel Friedmann MD

Specialty: Dermatology

Image 3

Dr. Appalanaidu Sasapu MD

Specialty: Hematology and Oncology

Image 4

Dr. Priya Prakash MD

Specialty: Rheumatology

Image 5

Dr. Chitharanjan Duvoor MD

Specialty: General Medicine

Image 6

Dr. Krishna Siva Sai Kakkera MD

Specialty: Pulmonary and Critical Care Medicine

// JavaScript for sliding the cards let currentIndex = 0; const totalCards = 6; const cardsToShow = 4; const slider = document.querySelector('.slider'); function moveSlider(direction) { // Update the current index based on direction currentIndex += direction; // Ensure we don't slide past the total number of cards if (currentIndex totalCards - cardsToShow) { currentIndex = 0; } // Move the slider (offset is based on 25% width per card) const offset = -currentIndex * 100 / cardsToShow; slider.style.transform = `translateX(${offset}%)`; }
How it Works * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background-color: #f5f5f5; /* Light gray background */ color: #0077b5;; padding: 20px; } h1 { text-align: center; color: #0077B5; /* Updated to blue */ font-size: 2.5em; margin: 40px 0; } .step-container { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; } .step { display: flex; align-items: flex-start; /* Align items to the start */ justify-content: center; margin-bottom: 60px; width: 80%; background: #ffffff; /* White background for steps */ padding: 20px; border-radius: 8px; /* Rounded corners */ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */ } .step-image { width: 200px; /* Fixed width for images */ height: auto; margin-right: 20px; /* Space between image and text */ } .step-text { max-width: 300px; text-align: left; } .step-text h3 { font-size: 1.5em; /* Increased font size for step titles */ color: #0077b5; /* Title color */ margin-bottom: 10px; font-weight: bold; /* Bold title */ } .step-text p { font-size: 1em; color: #555; /* Darker gray for text */ line-height: 1.6em; } .arrow { margin: 20px 0; /* Margin around arrows */ display: flex; justify-content: center; align-items: center; } .arrow img { width: 70px; /* Increased width for arrows on desktop/laptop */ height: auto; filter: brightness(0) saturate(100%) invert(41%) sepia(15%) saturate(6620%) hue-rotate(165deg) brightness(91%) contrast(87%); } /* Centering everything for each step */ .step:nth-child(even) { flex-direction: row-reverse; /* Reverse direction for even steps */ } /* Media queries for responsive design */ @media (max-width: 768px) { .step { flex-direction: column; align-items: center; /* Center items in column layout */ } .step-image { margin: 0 0 10px 0; /* Margin adjustment */ width: 150px; } .step-text { text-align: center; /* Center text on smaller screens */ margin: 0; /* Remove margins */ } } @media (max-width: 480px) { h1 { font-size: 2em; } .step-image { width: 120px; /* Responsive image size */ } .arrow img { width: 40px; /* Smaller arrow size on mobile */ } }

How it Works

Step 1 Image

STEP 1

Schedule an Appointment

Book an appointment through our platform, and we'll respond within 24 hours to get started.

Arrow Down

STEP 2

Live Intake & Record Collection

A doctor contacts the patient to gather digital health records and requests additional documents if necessary.

Step 2 Image
Arrow Down
Step 3 Image

STEP 3

Virtual Consultation

A telemedicine virtual consult is scheduled with a U.S. trained physician.

Arrow Down

STEP 4

Receive Recommendations

The physician gives a follow-up recommendation and outlines the next steps.

Step 4 Image

Specialties we cover

Carousel with Cards /* Optional styling for card and images */ .carousel-item { padding: 20px; } .card { text-align: center; border: none; } .card img.top-image { border-radius: 50%; /* For a circular image */ width: 60px; height: 60px; object-fit: cover; } .card img.center-image { width: 100%; height: 150px; object-fit: cover; margin-bottom: 15px; } .card-title { font-size: 1.25rem; margin-top: 10px; color:#0077A7; } .card-text { font-size: 1rem; color: #555; } .card .btn { margin-top: 10px; } .button{ color: blue; }
Subscription Plans body { font-family: Arial, sans-serif; margin: 0; padding: 20px; box-sizing: border-box; } h1 { text-align: center; font-size: 24px; margin-bottom: 20px; } table { width: 100%; border-collapse: collapse; margin: 0 auto; } th, td { border: 1px solid #ddd; padding: 8px; text-align: center; } th { background-color: #f4f4f4; font-weight: bold; } tr:nth-child(even) { background-color: #f9f9f9; } .checkmark { color: blue; font-size: 18px; font-weight: bold; } .xmark { color: red; font-size: 18px; font-weight: bold; } /* Responsive design for smaller screens */ @media screen and (max-width: 768px) { table, thead, tbody, th, td, tr { display: block; } th, td { width: 100%; box-sizing: border-box; } tr { margin-bottom: 15px; } td { text-align: right; padding-left: 50%; position: relative; } td::before { content: attr(data-label); position: absolute; left: 10px; width: 45%; padding-right: 10px; text-align: left; font-weight: bold; } } @media screen and (max-width: 480px) { body { padding: 10px; } h1 { font-size: 18px; } td { padding-left: 40%; } td::before { width: 40%; } }

My American Doctor India Subscription Plans - 2024

Plans Non-Subscription Services Subscription Service Plans (Annual)
Chart Review * Tele-visit Bronze Silver Gold
Fees INR 6600 ($79) INR 12,300 ($149) INR 50,000 ($600) INR 1,10,000 ($1300) INR 2,10,000 ($2500)
Consultations Per Plan 1 1 5 10 20
Video Visit with US Specialist
Conference with Family Member/Doctor + Panel Consultations + Local Hospital Doctor
Guaranteed Appointment within 72 Hours 72 Hours 72 Hours 48 Hours 24 Hours
Annual Wellness Visit 1 Individual 2 Individuals 3 Individuals
Access to EMR System
Follow-up Appointments INR 6300 ($75) N/A N/A N/A
Panel Consultations
Review of Diagnostic Imaging Studies Once a Year Once a Year 3 Times a Year
Comprehensive Diet Plan 1 Individual 1 Individual Your Family
Review of Lab Tests Once a Year Once a Year Twice a Year
Cost Comparison Table body { font-family: Arial, sans-serif; text-align: center; background-color: #f8f8f8; } h1 { color: #0072A5; margin-bottom: 20px; } table { width: 80%; margin: 0 auto; border-collapse: collapse; border-radius: 10px; overflow: hidden; } th, td { padding: 15px; text-align: center; font-size: 1.1rem; } th { background-color: #0072A5; color: white; } td { border-bottom: 1px solid #e0e0e0; } tr:nth-child(even) td { background-color: #f2f9f5; } tr:nth-child(odd) td { background-color: #e6efff; } .category { font-weight: bold; } .highlight { font-size: 1.3rem; font-weight: bold; } /* Adjust for rounded corners */ table { border-collapse: separate; border-spacing: 0; } table tr:first-child th:first-child { border-top-left-radius: 10px; } table tr:first-child th:last-child { border-top-right-radius: 10px; } table tr:last-child td:first-child { border-bottom-left-radius: 10px; } table tr:last-child td:last-child { border-bottom-right-radius: 10px; }
Cost Comparison In-Person Expert Opinions Virtual Expert Opinions
Travel Costs ₹ 15,000 ₹ 0
Accommodation ₹ 8,000 ₹ 0
Food & Beverages ₹ 3,000 ₹ 0
Lost Wages 2+ Days Off Work 0
Time & Effort 4-5 Hours Gathering Info 1 hour
Turnaround 26 Days Within 72 Hours