Phytocee

Phytocee ®

PHYTOCEE a research based natural solution aims to improve immunity of Intended Species as well as control the effects of stress caused by multiple stressors. Its polyherbal formulation contains phytoconstituents like Polyphenols, Withanolides and Triterpenoids.

PHYTOCEE is a phytogenic feed additive that works as a natural defence enhancer. It also promotes endurance, optimizes cell mediated immunity and helps in reducing the harmful effects of stress. This phytogenic feed additive is a heat stable animal feed additive and can be directly added to the feed.

Scientifically validated with OMICS technologies

Available in

  • 25 kg

Target Species

  • Broilers

    Broilers

  • Breeders

    Breeders

  • Layers

    Layers

  • Swine

    Swine

Leave us your details

Please select country to send your deatils.

Enquire Now

    // Track total time across pages let totalTime = 0; // Time in seconds let popupShown = false; // To make sure popup shows only once // Check if time is already stored in localStorage to persist across pages if (localStorage.getItem('timeSpent')) { totalTime = parseInt(localStorage.getItem('timeSpent')); } // Increment time every second setInterval(() => { if (!popupShown) { totalTime += 1; // Increment total time by 1 second localStorage.setItem('timeSpent', totalTime); // Store updated time // If total time reaches 15 seconds, trigger the popup if (totalTime >= 15 && !popupShown) { // Replace '123' with your actual Popup ID from Popup Maker PUM.open(6168); popupShown = true; // Ensure the popup is shown only once } } }, 1000); // Run every 1000ms (1 second)