V CARDIO HEALTHCARE
Explore Our
World
Discover the people, products, partnerships and healthcare
journey behind V Cardio Healthcare.
More Than Healthcare.
A Growing Vision.
Take a closer look at V Cardio Healthcare —
our products, people, professional environment,
business activities and the relationships that
help us move forward.
QUALITY
Focused on delivering dependable healthcare solutions.
PARTNERSHIP
Building relationships based on trust and mutual growth.
INNOVATION
Continuously working towards a stronger healthcare future.
VISION
Creating meaningful opportunities across healthcare.
Be Part Of The
V Cardio Journey.
Interested in partnering with V Cardio Healthcare?
Let’s explore the opportunity together.
document.addEventListener("DOMContentLoaded", function(){
const filters = document.querySelectorAll(".vcg-filter"); const items = document.querySelectorAll(".vcg-item");
filters.forEach(function(filter){
filter.addEventListener("click", function(){
filters.forEach(function(btn){ btn.classList.remove("active"); });
this.classList.add("active");
const category = this.getAttribute("data-filter");
items.forEach(function(item){
if(category === "all" || item.getAttribute("data-category") === category){
item.classList.remove("vcg-hidden");
}else{
item.classList.add("vcg-hidden");
}
});
});
});
/* LIGHTBOX */
const lightbox = document.querySelector(".vcg-lightbox"); const lightboxImage = lightbox.querySelector("img"); const closeButton = document.querySelector(".vcg-close");
document.querySelectorAll(".vcg-view").forEach(function(button){
button.addEventListener("click", function(e){
e.stopPropagation();
const image = this.getAttribute("data-image");
lightboxImage.src = image;
lightbox.classList.add("active");
document.body.style.overflow = "hidden";
});
});
function closeLightbox(){
lightbox.classList.remove("active");
document.body.style.overflow = "";
setTimeout(function(){ lightboxImage.src = ""; },300);
}
closeButton.addEventListener("click", closeLightbox);
lightbox.addEventListener("click", function(e){
if(e.target === lightbox){ closeLightbox(); }
});
document.addEventListener("keydown", function(e){
if(e.key === "Escape"){ closeLightbox(); }
});
});
“`