1) Rename all CSS .owl to .pagelayer-owl 2) Rename owlCarousel to pagelayerowlCarousel in JS Posts Slider Created with Sketch. var b=Object.create;var i=Object.defineProperty;var w=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var L=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var l=(t,a)=>()=>{try{return a||t((a={exports:{}}).exports,a),a.exports;}catch(e){throw a=0,e;}};var k=(t,a,e,u)=>{if(a&&typeof a=="object"||typeof a=="function")for(let f of C(a))!v.call(t,f)&&f!==e&&i(t,f,{get:()=>a[f],enumerable:!(u=w(a,f))||u.enumerable});return t;};var s=(t,a,e)=>(e=t!=null?b(L(t)):{},k(a||!t||!t.__esModule?i(e,"default",{value:t,enumerable:!0}):e,t));var n=l((B,p)=>{p.exports=window.wp.i18n;});var g=l((D,c)=>{c.exports=window.wp.primitives;});var y=l((S,h)=>{h.exports=window.ReactJSXRuntime;});var o=s(n(),1);var r=s(g(),1),m=s(y(),1),d=(0,m.jsx)(r.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",children:(0,m.jsx)(r.Path,{d:"M3.99961 13C4.67043 13.3354 4.6703 13.3357 4.67017 13.3359L4.67298 13.3305C4.67621 13.3242 4.68184 13.3135 4.68988 13.2985C4.70595 13.2686 4.7316 13.2218 4.76695 13.1608C4.8377 13.0385 4.94692 12.8592 5.09541 12.6419C5.39312 12.2062 5.84436 11.624 6.45435 11.0431C7.67308 9.88241 9.49719 8.75 11.9996 8.75C14.502 8.75 16.3261 9.88241 17.5449 11.0431C18.1549 11.624 18.6061 12.2062 18.9038 12.6419C19.0523 12.8592 19.1615 13.0385 19.2323 13.1608C19.2676 13.2218 19.2933 13.2686 19.3093 13.2985C19.3174 13.3135 19.323 13.3242 19.3262 13.3305L19.3291 13.3359C19.3289 13.3357 19.3288 13.3354 19.9996 13C20.6704 12.6646 20.6703 12.6643 20.6701 12.664L20.6697 12.6632L20.6688 12.6614L20.6662 12.6563L20.6583 12.6408C20.6517 12.6282 20.6427 12.6108 20.631 12.5892C20.6078 12.5459 20.5744 12.4852 20.5306 12.4096C20.4432 12.2584 20.3141 12.0471 20.1423 11.7956C19.7994 11.2938 19.2819 10.626 18.5794 9.9569C17.1731 8.61759 14.9972 7.25 11.9996 7.25C9.00203 7.25 6.82614 8.61759 5.41987 9.9569C4.71736 10.626 4.19984 11.2938 3.85694 11.7956C3.68511 12.0471 3.55605 12.2584 3.4686 12.4096C3.42484 12.4852 3.39142 12.5459 3.36818 12.5892C3.35656 12.6108 3.34748 12.6282 3.34092 12.6408L3.33297 12.6563L3.33041 12.6614L3.32948 12.6632L3.32911 12.664C3.32894 12.6643 3.32879 12.6646 3.99961 13ZM11.9996 16C13.9326 16 15.4996 14.433 15.4996 12.5C15.4996 10.567 13.9326 9 11.9996 9C10.0666 9 8.49961 10.567 8.49961 12.5C8.49961 14.433 10.0666 16 11.9996 16Z"})});import{SelectField as R}from"@jetpack-premium-analytics/fields";var P={icon:d,attributes:[{id:"granularity",label:(0,o.__)("Group by","jetpack-premium-analytics-pkg"),type:"text",Edit:R,elements:[{label:(0,o.__)("By days","jetpack-premium-analytics-pkg"),value:"day"},{label:(0,o.__)("By weeks","jetpack-premium-analytics-pkg"),value:"week"},{label:(0,o.__)("By months","jetpack-premium-analytics-pkg"),value:"month"}],relevance:"high"}],example:{attributes:{granularity:"day"}}};export{P as default};(function ($) { 'use strict'; var CLIScriptBlocker = { set: function () { this.changeStatusEvent(); this.changeCategory(); this.disableEvents(); }, changeStatusEvent: function() { jQuery( '.wt-cli-plugin-status' ).on( 'change', function (e) { e.preventDefault(); CLIScriptBlocker.changeStatus( jQuery( this ) ); } ); }, disableEvents: function(){ jQuery( '.wt-cli-script-blocker-disabled' ).children().click( function(){return false;} ); jQuery( '.wt-cli-plugin-inactive' ).children().click( function(){return false;} ); }, changeStatus: function( element ) { var script_id = element.attr( 'data-script-id' ); var status = element.is( ':checked' ); var data = { 'action' : 'wt_cli_change_plugin_status', '_wpnonce' : wt_cli_script_blocker_obj.nonce, 'script_id' : script_id, 'status' : status }; jQuery.ajax( { url: wt_cli_script_blocker_obj.ajax_url, type: 'POST', data: data, dataType: 'json', success: function (response) { if (response.success === true) { cli_notify_msg.success( wt_cli_script_blocker_obj.messages.success ); } }, error: function () { cli_notify_msg.error( wt_cli_script_blocker_obj.messages.success ); } } ); }, changeCategory: function () { jQuery( '[name="cliscript_category"]' ).on( 'change', function (e) { e.preventDefault(); var element = jQuery( this ); var script_id = element.closest( 'tr' ).attr( 'data-script-id' ); var category = this.value; console.log( category ); var data = { 'action': 'cli_change_script_category', '_wpnonce': wt_cli_script_blocker_obj.nonce, 'script_id': script_id, 'category': category }; jQuery.ajax( { url: wt_cli_script_blocker_obj.ajax_url, type: 'POST', data: data, dataType: 'json', success: function (response) { if (response.success === true) { cli_notify_msg.success( wt_cli_script_blocker_obj.messages.success ); } else { cli_notify_msg.error( response.data ); } }, error: function () { cli_notify_msg.error( wt_cli_script_blocker_obj.messages.error ); } } ); } ); } } jQuery( document ).ready( function () { CLIScriptBlocker.set(); } ); })( jQuery ); About Us – Koyana ayurvedic

koyanaayurvedic.

koyanaayurvedic.

KOYANA AYURVEDIC PVT LTD

About Us

Welcome to Koyana Ayurvedic products, your trusted source for holistic wellness since 2003. As pioneers in the field of Ayurvedic manufacturing, we blend the time-honored wisdom of traditional formulations with modern expertise to bring you a diverse range of premium Ayurvedic products. With a steadfast commitment to authenticity and quality, our two-decade journey has been dedicated to fostering well-being in harmony with nature. Explore the richness of Ayurveda with Koyana, where every product is a testament to our legacy of excellence in promoting health and balance.

“Where modern science offers temporary relief, Ayurveda promises safe, long-lasting solutions that treat the root cause of health problems to experience happy lifestyle”

OUR KNOWLEDGE

Our knowledge of ayurveda goes back to the ancient time, when Mr. Subhash Baburao Sankpal (principal, primary school) inherited this valuable knowledge from his ancestors who used to medicinal plants on the Sahyadri ranges. He treated people in his nearby villages for various ailments with the help of medicinal plants in jungles. This is the main concept behind our company; hence we make sure that our products are quality-assured and pure in nature

OUR RESEARCH

Identifying nourishing and healing botanical extracts from classical, indigenous, and contemporary knowledge sources, we developed our innovative formulations with researchers in a GMP certified laboratory, we have been very determined that our wellness solutions are grounded in science and research keeping in mind quality, safety, and efficacy

Mr. Nikhil Bhosle

Founder & CEO

Mr. Laxman Bhosle

CO-Founder & dIRECTOR

Mr. Vaishali Sankpal

cO-Founder & COO

Mission

To become global leader in the field of healthcare

Founder’s Mission: The founders of Koyana Ayurvedic Products embarked on a mission deeply rooted in the principles of Ayurveda and a commitment to the well-being of individuals. Their mission was to harness the ancient wisdom of Ayurvedic formulations, particularly from the Koyana forest, and make these holistic remedies accessible to people worldwide. They aimed to create a brand that not only preserved the authenticity of traditional Ayurveda but also embraced modernity, ensuring that

Founder's Vision

a beacon of excellence in Ayurvedic manufacturing

The vision of the founders was to establish Koyana Ayurvedic as a beacon of excellence in Ayurvedic manufacturing. They aspired to create a brand synonymous with quality, innovation, and a harmonious blend of tradition and modernity. Their vision extended beyond just producing products – it encompassed fostering a holistic approach to wellness, where individuals could find balance not only in their physical health but also in their mental and emotional well-being. Through their vision, they sought to contribute to a healthier and more balanced world, where Ayurveda played a pivotal role in promoting overall wellness.