Care On Call – Trusted In-Home Care & Medical Support Across India
Care On Call
“24×7 Emergency Services”
Care On Call offers 24x7 Emergency Services to provide immediate care in case of a medical emergency. Our team of trained professionals is available round-the-clock to assist with urgent medical needs, ensuring that elderly individuals receive the prompt care they need, when they need it most.
Reliable & Trusted Ambulance Solutions by Care On Call. Our advanced ambulances serve as mobile hospitals equipped with life-saving equipment for safe medical transfers across India and abroad.
Our fleet includes mini-vans and full-size vans equipped for any medical emergency, catering to both urgent and non-emergency situations.
Care On Call offers rapid air transfers for critically ill patients with a focus on comfort and safety.
We provide safe and cost-effective rail transportation for critical cases, particularly for areas with limited medical facilities.
Full ICU support and urgent medical aid tailored to individual and organizational needs during emergencies.
Our 24x7 emergency services are designed to be fast, reliable, and compassionate. With our dedicated medical staff, state-of-the-art equipment, and quick response times, we ensure that our elderly clients receive the best possible care during critical times.
Priya Singh, New Delhi: "Care On Call's emergency team was a lifesaver when my father experienced a heart attack late at night. Their prompt response and expert care made all the difference."
Aman Kapoor, Mumbai: "We had an emergency situation at home, and Care On Call was just a phone call away. The medical attendant arrived quickly, and my grandmother received excellent care."
We strive to respond as quickly as possible, typically within 30 minutes to an hour, depending on the location. Our team is trained to handle a variety of medical emergencies with efficiency and care.
We handle a wide range of medical emergencies including falls, heart attacks, breathing difficulties, strokes, and more. Our team is equipped to provide first aid, stabilize the condition, and arrange for further medical care if needed.
You can call us anytime at +91-9078307219 to access our 24x7 emergency services. Our team will guide you through the process and ensure that help reaches you promptly.
If you or your loved one is experiencing a medical emergency, donโt wait. Call us at +91-9078307219 and weโll provide immediate help.
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Popup Example</title>
<style>
/* Styling for the “Email Us” button */
.btn-link {
background-color: #5c9dc8;
color: white;
padding: 15px 40px;
font-size: 1.2rem;
border-radius: 30px;
text-decoration: none;
display: inline-block;
transition: background-color 0.3s ease;
}
.btn-link:hover {
background-color: #417a9b;
}
/* Popup Overlay */
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none; /* Hidden by default */
justify-content: center;
align-items: center;
z-index: 9999;
}
/* Popup Content */
.popup-content {
background-color: white;
padding: 30px;
max-width: 500px;
width: 100%;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
position: relative;
}
/* Close Button */
.popup-content .close-btn {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 20px;
cursor: pointer;
}
/* Fade-in animation */
.popup-content.fade-in {
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.8);
}
to {
opacity: 1;
transform: scale(1);
}
}
</style>
</head>
<body>
<!– Contact Us Section –>
<section class=”contact-us”>
<h2>Contact Us ๐</h2>
<p>If you have any questions or need assistance, don’t hesitate to get in touch!</p>
<a href=”javascript:void(0)” class=”btn-link” onclick=”showPopup()”>
<i class=”fas fa-envelope”></i> Email Us
</a>
</section>
<!– Popup Overlay –>
<div class=”popup-overlay” id=”popupOverlay”>
<div class=”popup-content fade-in”>
<button class=”close-btn” onclick=”hidePopup()”>โ</button>
<h2>Email Us</h2>
<p>Please fill out the form below to send us an email.</p>
<!– Example form inside popup –>
<form action=”submit.php” method=”POST”>
<div class=”form-group”>
<label for=”name”>Your Name</label>
<input type=”text” id=”name” name=”name” required>
</div>
<div class=”form-group”>
<label for=”email”>Your Email</label>
<input type=”email” id=”email” name=”email” required>
</div>
<div class=”form-group”>
<label for=”message”>Message</label>
<textarea id=”message” name=”message” rows=”5″ required></textarea>
</div>
<button type=”submit” class=”btn-link”>Send Email</button>
</form>
</div>
</div>
<!– JavaScript for Popup Control –>
<script>
// Function to show the popup
function showPopup() {
document.getElementById(‘popupOverlay’).style.display = ‘flex’;
}
// Function to hide the popup
function hidePopup() {
document.getElementById(‘popupOverlay’).style.display = ‘none’;
}
</script>
</body>
</html>